Update contrib.
2 ** The "printf" code that follows dates from the 1980's. It is in
3 ** the public domain. The original comments are included here for
4 ** completeness. They are very out-of-date but might be useful as
5 ** an historical reference. Most of the "enhancements" have been backed
6 ** out so that the functionality is now the same as standard printf().
8 ** $Id: printf.c,v 1.93 2008/07/28 19:34:53 drh Exp $
10 **************************************************************************
12 ** The following modules is an enhanced replacement for the "printf" subroutines
13 ** found in the standard C library. The following enhancements are
16 ** + Additional functions. The standard set of "printf" functions
17 ** includes printf, fprintf, sprintf, vprintf, vfprintf, and
18 ** vsprintf. This module adds the following:
20 ** * snprintf -- Works like sprintf, but has an extra argument
21 ** which is the size of the buffer written to.
23 ** * mprintf -- Similar to sprintf. Writes output to memory
24 ** obtained from malloc.
26 ** * xprintf -- Calls a function to dispose of output.
28 ** * nprintf -- No output, but returns the number of characters
29 ** that would have been output by printf.
31 ** * A v- version (ex: vsnprintf) of every function is also
34 ** + A few extensions to the formatting notation are supported:
36 ** * The "=" flag (similar to "-") causes the output to be
37 ** be centered in the appropriately sized field.
39 ** * The %b field outputs an integer in binary notation.
41 ** * The %c field now accepts a precision. The character output
42 ** is repeated by the number of times the precision specifies.
44 ** * The %' field works like %c, but takes as its character the
45 ** next character of the format string, instead of the next
46 ** argument. For example, printf("%.78'-") prints 78 minus
47 ** signs, the same as printf("%.78c",'-').
49 ** + When compiled using GCC on a SPARC, this version of printf is
50 ** faster than the library printf for SUN OS 4.1.
52 ** + All functions are fully reentrant.
55 #include "sqliteInt.h"
58 ** Conversion types fall into various categories as defined by the
59 ** following enumeration.
61 #define etRADIX 1 /* Integer types. %d, %x, %o, and so forth */
62 #define etFLOAT 2 /* Floating point. %f */
63 #define etEXP 3 /* Exponentional notation. %e and %E */
64 #define etGENERIC 4 /* Floating or exponential, depending on exponent. %g */
65 #define etSIZE 5 /* Return number of characters processed so far. %n */
66 #define etSTRING 6 /* Strings. %s */
67 #define etDYNSTRING 7 /* Dynamically allocated strings. %z */
68 #define etPERCENT 8 /* Percent symbol. %% */
69 #define etCHARX 9 /* Characters. %c */
70 /* The rest are extensions, not normally found in printf() */
71 #define etSQLESCAPE 10 /* Strings with '\'' doubled. %q */
72 #define etSQLESCAPE2 11 /* Strings with '\'' doubled and enclosed in '',
73 NULL pointers replaced by SQL NULL. %Q */
74 #define etTOKEN 12 /* a pointer to a Token structure */
75 #define etSRCLIST 13 /* a pointer to a SrcList */
76 #define etPOINTER 14 /* The %p conversion */
77 #define etSQLESCAPE3 15 /* %w -> Strings with '\"' doubled */
78 #define etORDINAL 16 /* %r -> 1st, 2nd, 3rd, 4th, etc. English only */
82 ** An "etByte" is an 8-bit unsigned value.
84 typedef unsigned char etByte;
87 ** Each builtin conversion character (ex: the 'd' in "%d") is described
88 ** by an instance of the following structure
90 typedef struct et_info { /* Information about each format field */
91 char fmttype; /* The format field code letter */
92 etByte base; /* The base for radix conversion */
93 etByte flags; /* One or more of FLAG_ constants below */
94 etByte type; /* Conversion paradigm */
95 etByte charset; /* Offset into aDigits[] of the digits string */
96 etByte prefix; /* Offset into aPrefix[] of the prefix string */
100 ** Allowed values for et_info.flags
102 #define FLAG_SIGNED 1 /* True if the value to convert is signed */
103 #define FLAG_INTERN 2 /* True if for internal use only */
104 #define FLAG_STRING 4 /* Allow infinity precision */
108 ** The following table is searched linearly, so it is good to put the
109 ** most frequently used conversion types first.
111 static const char aDigits[] = "0123456789ABCDEF0123456789abcdef";
112 static const char aPrefix[] = "-x0\000X0";
113 static const et_info fmtinfo[] = {
114 { 'd', 10, 1, etRADIX, 0, 0 },
115 { 's', 0, 4, etSTRING, 0, 0 },
116 { 'g', 0, 1, etGENERIC, 30, 0 },
117 { 'z', 0, 4, etDYNSTRING, 0, 0 },
118 { 'q', 0, 4, etSQLESCAPE, 0, 0 },
119 { 'Q', 0, 4, etSQLESCAPE2, 0, 0 },
120 { 'w', 0, 4, etSQLESCAPE3, 0, 0 },
121 { 'c', 0, 0, etCHARX, 0, 0 },
122 { 'o', 8, 0, etRADIX, 0, 2 },
123 { 'u', 10, 0, etRADIX, 0, 0 },
124 { 'x', 16, 0, etRADIX, 16, 1 },
125 { 'X', 16, 0, etRADIX, 0, 4 },
126 #ifndef SQLITE_OMIT_FLOATING_POINT
127 { 'f', 0, 1, etFLOAT, 0, 0 },
128 { 'e', 0, 1, etEXP, 30, 0 },
129 { 'E', 0, 1, etEXP, 14, 0 },
130 { 'G', 0, 1, etGENERIC, 14, 0 },
132 { 'i', 10, 1, etRADIX, 0, 0 },
133 { 'n', 0, 0, etSIZE, 0, 0 },
134 { '%', 0, 0, etPERCENT, 0, 0 },
135 { 'p', 16, 0, etPOINTER, 0, 1 },
136 { 'T', 0, 2, etTOKEN, 0, 0 },
137 { 'S', 0, 2, etSRCLIST, 0, 0 },
138 { 'r', 10, 3, etORDINAL, 0, 0 },
140 #define etNINFO (sizeof(fmtinfo)/sizeof(fmtinfo[0]))
143 ** If SQLITE_OMIT_FLOATING_POINT is defined, then none of the floating point
144 ** conversions will work.
146 #ifndef SQLITE_OMIT_FLOATING_POINT
148 ** "*val" is a double such that 0.1 <= *val < 10.0
149 ** Return the ascii code for the leading digit of *val, then
150 ** multiply "*val" by 10.0 to renormalize.
153 ** input: *val = 3.14159
154 ** output: *val = 1.4159 function return = '3'
156 ** The counter *cnt is incremented each time. After counter exceeds
157 ** 16 (the number of significant digits in a 64-bit float) '0' is
160 static int et_getdigit(LONGDOUBLE_TYPE *val, int *cnt){
163 if( (*cnt)++ >= 16 ) return '0';
167 *val = (*val - d)*10.0;
170 #endif /* SQLITE_OMIT_FLOATING_POINT */
173 ** Append N space characters to the given string buffer.
175 static void appendSpace(StrAccum *pAccum, int N){
176 static const char zSpaces[] = " ";
177 while( N>=sizeof(zSpaces)-1 ){
178 sqlite3StrAccumAppend(pAccum, zSpaces, sizeof(zSpaces)-1);
179 N -= sizeof(zSpaces)-1;
182 sqlite3StrAccumAppend(pAccum, zSpaces, N);
187 ** On machines with a small stack size, you can redefine the
188 ** SQLITE_PRINT_BUF_SIZE to be less than 350. But beware - for
189 ** smaller values some %f conversions may go into an infinite loop.
191 #ifndef SQLITE_PRINT_BUF_SIZE
192 # define SQLITE_PRINT_BUF_SIZE 350
194 #define etBUFSIZE SQLITE_PRINT_BUF_SIZE /* Size of the output buffer */
197 ** The root program. All variations call this core.
200 ** func This is a pointer to a function taking three arguments
201 ** 1. A pointer to anything. Same as the "arg" parameter.
202 ** 2. A pointer to the list of characters to be output
203 ** (Note, this list is NOT null terminated.)
204 ** 3. An integer number of characters to be output.
205 ** (Note: This number might be zero.)
207 ** arg This is the pointer to anything which will be passed as the
208 ** first argument to "func". Use it for whatever you like.
210 ** fmt This is the format string, as in the usual print.
212 ** ap This is a pointer to a list of arguments. Same as in
216 ** The return value is the total number of characters sent to
217 ** the function "func". Returns -1 on a error.
219 ** Note that the order in which automatic variables are declared below
220 ** seems to make a big difference in determining how fast this beast
223 void sqlite3VXPrintf(
224 StrAccum *pAccum, /* Accumulate results here */
225 int useExtended, /* Allow extended %-conversions */
226 const char *fmt, /* Format string */
227 va_list ap /* arguments */
229 int c; /* Next character in the format string */
230 char *bufpt; /* Pointer to the conversion buffer */
231 int precision; /* Precision of the current field */
232 int length; /* Length of the field */
233 int idx; /* A general purpose loop counter */
234 int width; /* Width of the current field */
235 etByte flag_leftjustify; /* True if "-" flag is present */
236 etByte flag_plussign; /* True if "+" flag is present */
237 etByte flag_blanksign; /* True if " " flag is present */
238 etByte flag_alternateform; /* True if "#" flag is present */
239 etByte flag_altform2; /* True if "!" flag is present */
240 etByte flag_zeropad; /* True if field width constant starts with zero */
241 etByte flag_long; /* True if "l" flag is present */
242 etByte flag_longlong; /* True if the "ll" flag is present */
243 etByte done; /* Loop termination flag */
244 sqlite_uint64 longvalue; /* Value for integer types */
245 LONGDOUBLE_TYPE realvalue; /* Value for real types */
246 const et_info *infop; /* Pointer to the appropriate info structure */
247 char buf[etBUFSIZE]; /* Conversion buffer */
248 char prefix; /* Prefix character. "+" or "-" or " " or '\0'. */
249 etByte errorflag = 0; /* True if an error is encountered */
250 etByte xtype = 0; /* Conversion paradigm */
251 char *zExtra; /* Extra memory used for etTCLESCAPE conversions */
252 #ifndef SQLITE_OMIT_FLOATING_POINT
253 int exp, e2; /* exponent of real numbers */
254 double rounder; /* Used for rounding floating point values */
255 etByte flag_dp; /* True if decimal point should be shown */
256 etByte flag_rtz; /* True if trailing zeros should be removed */
257 etByte flag_exp; /* True to force display of the exponent */
258 int nsd; /* Number of significant digits returned */
263 for(; (c=(*fmt))!=0; ++fmt){
268 while( (c=(*++fmt))!='%' && c!=0 ) amt++;
269 sqlite3StrAccumAppend(pAccum, bufpt, amt);
272 if( (c=(*++fmt))==0 ){
274 sqlite3StrAccumAppend(pAccum, "%", 1);
277 /* Find out what flags are present */
278 flag_leftjustify = flag_plussign = flag_blanksign =
279 flag_alternateform = flag_altform2 = flag_zeropad = 0;
283 case '-': flag_leftjustify = 1; break;
284 case '+': flag_plussign = 1; break;
285 case ' ': flag_blanksign = 1; break;
286 case '#': flag_alternateform = 1; break;
287 case '!': flag_altform2 = 1; break;
288 case '0': flag_zeropad = 1; break;
289 default: done = 1; break;
291 }while( !done && (c=(*++fmt))!=0 );
292 /* Get the field width */
295 width = va_arg(ap,int);
297 flag_leftjustify = 1;
302 while( c>='0' && c<='9' ){
303 width = width*10 + c - '0';
307 if( width > etBUFSIZE-10 ){
308 width = etBUFSIZE-10;
310 /* Get the precision */
315 precision = va_arg(ap,int);
316 if( precision<0 ) precision = -precision;
319 while( c>='0' && c<='9' ){
320 precision = precision*10 + c - '0';
327 /* Get the conversion type modifier */
338 flag_long = flag_longlong = 0;
340 /* Fetch the info entry for the field */
342 for(idx=0; idx<etNINFO; idx++){
343 if( c==fmtinfo[idx].fmttype ){
344 infop = &fmtinfo[idx];
345 if( useExtended || (infop->flags & FLAG_INTERN)==0 ){
359 /* Limit the precision to prevent overflowing buf[] during conversion */
360 if( precision>etBUFSIZE-40 && (infop->flags & FLAG_STRING)==0 ){
361 precision = etBUFSIZE-40;
365 ** At this point, variables are initialized as follows:
367 ** flag_alternateform TRUE if a '#' is present.
368 ** flag_altform2 TRUE if a '!' is present.
369 ** flag_plussign TRUE if a '+' is present.
370 ** flag_leftjustify TRUE if a '-' is present or if the
371 ** field width was negative.
372 ** flag_zeropad TRUE if the width began with 0.
373 ** flag_long TRUE if the letter 'l' (ell) prefixed
374 ** the conversion character.
375 ** flag_longlong TRUE if the letter 'll' (ell ell) prefixed
376 ** the conversion character.
377 ** flag_blanksign TRUE if a ' ' is present.
378 ** width The specified field width. This is
379 ** always non-negative. Zero is the default.
380 ** precision The specified precision. The default
382 ** xtype The class of the conversion.
383 ** infop Pointer to the appropriate info struct.
387 flag_longlong = sizeof(char*)==sizeof(i64);
388 flag_long = sizeof(char*)==sizeof(long int);
389 /* Fall through into the next case */
392 if( infop->flags & FLAG_SIGNED ){
394 if( flag_longlong ) v = va_arg(ap,i64);
395 else if( flag_long ) v = va_arg(ap,long int);
396 else v = va_arg(ap,int);
402 if( flag_plussign ) prefix = '+';
403 else if( flag_blanksign ) prefix = ' ';
407 if( flag_longlong ) longvalue = va_arg(ap,u64);
408 else if( flag_long ) longvalue = va_arg(ap,unsigned long int);
409 else longvalue = va_arg(ap,unsigned int);
412 if( longvalue==0 ) flag_alternateform = 0;
413 if( flag_zeropad && precision<width-(prefix!=0) ){
414 precision = width-(prefix!=0);
416 bufpt = &buf[etBUFSIZE-1];
417 if( xtype==etORDINAL ){
418 static const char zOrd[] = "thstndrd";
419 int x = longvalue % 10;
420 if( x>=4 || (longvalue/10)%10==1 ){
423 buf[etBUFSIZE-3] = zOrd[x*2];
424 buf[etBUFSIZE-2] = zOrd[x*2+1];
428 register const char *cset; /* Use registers for speed */
430 cset = &aDigits[infop->charset];
432 do{ /* Convert to ascii */
433 *(--bufpt) = cset[longvalue%base];
434 longvalue = longvalue/base;
435 }while( longvalue>0 );
437 length = &buf[etBUFSIZE-1]-bufpt;
438 for(idx=precision-length; idx>0; idx--){
439 *(--bufpt) = '0'; /* Zero pad */
441 if( prefix ) *(--bufpt) = prefix; /* Add sign */
442 if( flag_alternateform && infop->prefix ){ /* Add "0" or "0x" */
445 pre = &aPrefix[infop->prefix];
446 for(; (x=(*pre))!=0; pre++) *(--bufpt) = x;
448 length = &buf[etBUFSIZE-1]-bufpt;
453 realvalue = va_arg(ap,double);
454 #ifndef SQLITE_OMIT_FLOATING_POINT
455 if( precision<0 ) precision = 6; /* Set default precision */
456 if( precision>etBUFSIZE/2-10 ) precision = etBUFSIZE/2-10;
458 realvalue = -realvalue;
461 if( flag_plussign ) prefix = '+';
462 else if( flag_blanksign ) prefix = ' ';
465 if( xtype==etGENERIC && precision>0 ) precision--;
467 /* Rounding works like BSD when the constant 0.4999 is used. Wierd! */
468 for(idx=precision, rounder=0.4999; idx>0; idx--, rounder*=0.1);
470 /* It makes more sense to use 0.5 */
471 for(idx=precision, rounder=0.5; idx>0; idx--, rounder*=0.1){}
473 if( xtype==etFLOAT ) realvalue += rounder;
474 /* Normalize realvalue to within 10.0 > realvalue >= 1.0 */
476 if( sqlite3IsNaN(realvalue) ){
482 while( realvalue>=1e32 && exp<=350 ){ realvalue *= 1e-32; exp+=32; }
483 while( realvalue>=1e8 && exp<=350 ){ realvalue *= 1e-8; exp+=8; }
484 while( realvalue>=10.0 && exp<=350 ){ realvalue *= 0.1; exp++; }
485 while( realvalue<1e-8 ){ realvalue *= 1e8; exp-=8; }
486 while( realvalue<1.0 ){ realvalue *= 10.0; exp--; }
490 }else if( prefix=='+' ){
495 length = strlen(bufpt);
501 ** If the field type is etGENERIC, then convert to either etEXP
502 ** or etFLOAT, as appropriate.
504 flag_exp = xtype==etEXP;
505 if( xtype!=etFLOAT ){
506 realvalue += rounder;
507 if( realvalue>=10.0 ){ realvalue *= 0.1; exp++; }
509 if( xtype==etGENERIC ){
510 flag_rtz = !flag_alternateform;
511 if( exp<-4 || exp>precision ){
514 precision = precision - exp;
526 flag_dp = (precision>0) | flag_alternateform | flag_altform2;
527 /* The sign in front of the number */
531 /* Digits prior to the decimal point */
536 *(bufpt++) = et_getdigit(&realvalue,&nsd);
539 /* The decimal point */
543 /* "0" digits after the decimal point but before the first
544 ** significant digit of the number */
545 for(e2++; e2<0; precision--, e2++){
546 assert( precision>0 );
549 /* Significant digits after the decimal point */
550 while( (precision--)>0 ){
551 *(bufpt++) = et_getdigit(&realvalue,&nsd);
553 /* Remove trailing zeros and the "." if no digits follow the "." */
554 if( flag_rtz && flag_dp ){
555 while( bufpt[-1]=='0' ) *(--bufpt) = 0;
557 if( bufpt[-1]=='.' ){
565 /* Add the "eNNN" suffix */
566 if( flag_exp || xtype==etEXP ){
567 *(bufpt++) = aDigits[infop->charset];
569 *(bufpt++) = '-'; exp = -exp;
574 *(bufpt++) = (exp/100)+'0'; /* 100's digit */
577 *(bufpt++) = exp/10+'0'; /* 10's digit */
578 *(bufpt++) = exp%10+'0'; /* 1's digit */
582 /* The converted number is in buf[] and zero terminated. Output it.
583 ** Note that the number is in the usual order, not reversed as with
584 ** integer conversions. */
588 /* Special case: Add leading zeros if the flag_zeropad flag is
589 ** set and we are not left justified */
590 if( flag_zeropad && !flag_leftjustify && length < width){
592 int nPad = width - length;
593 for(i=width; i>=nPad; i--){
594 bufpt[i] = bufpt[i-nPad];
597 while( nPad-- ) bufpt[i++] = '0';
603 *(va_arg(ap,int*)) = pAccum->nChar;
612 c = buf[0] = va_arg(ap,int);
614 for(idx=1; idx<precision; idx++) buf[idx] = c;
623 bufpt = va_arg(ap,char*);
626 }else if( xtype==etDYNSTRING ){
630 for(length=0; length<precision && bufpt[length]; length++){}
632 length = strlen(bufpt);
638 int i, j, n, ch, isnull;
640 char q = ((xtype==etSQLESCAPE3)?'"':'\''); /* Quote character */
641 char *escarg = va_arg(ap,char*);
643 if( isnull ) escarg = (xtype==etSQLESCAPE2 ? "NULL" : "(NULL)");
644 for(i=n=0; (ch=escarg[i])!=0; i++){
647 needQuote = !isnull && xtype==etSQLESCAPE2;
648 n += i + 1 + needQuote*2;
650 bufpt = zExtra = sqlite3Malloc( n );
651 if( bufpt==0 ) return;
656 if( needQuote ) bufpt[j++] = q;
657 for(i=0; (ch=escarg[i])!=0; i++){
659 if( ch==q ) bufpt[j++] = ch;
661 if( needQuote ) bufpt[j++] = q;
664 /* The precision is ignored on %q and %Q */
665 /* if( precision>=0 && precision<length ) length = precision; */
669 Token *pToken = va_arg(ap, Token*);
671 sqlite3StrAccumAppend(pAccum, (const char*)pToken->z, pToken->n);
677 SrcList *pSrc = va_arg(ap, SrcList*);
678 int k = va_arg(ap, int);
679 struct SrcList_item *pItem = &pSrc->a[k];
680 assert( k>=0 && k<pSrc->nSrc );
681 if( pItem->zDatabase ){
682 sqlite3StrAccumAppend(pAccum, pItem->zDatabase, -1);
683 sqlite3StrAccumAppend(pAccum, ".", 1);
685 sqlite3StrAccumAppend(pAccum, pItem->zName, -1);
689 }/* End switch over the format type */
691 ** The text of the conversion is pointed to by "bufpt" and is
692 ** "length" characters long. The field width is "width". Do
695 if( !flag_leftjustify ){
697 nspace = width-length;
699 appendSpace(pAccum, nspace);
703 sqlite3StrAccumAppend(pAccum, bufpt, length);
705 if( flag_leftjustify ){
707 nspace = width-length;
709 appendSpace(pAccum, nspace);
713 sqlite3_free(zExtra);
715 }/* End for loop over the format string */
716 } /* End of function */
719 ** Append N bytes of text from z to the StrAccum object.
721 void sqlite3StrAccumAppend(StrAccum *p, const char *z, int N){
722 if( p->tooBig | p->mallocFailed ){
731 if( p->nChar+N >= p->nAlloc ){
735 N = p->nAlloc - p->nChar - 1;
740 i64 szNew = p->nChar;
742 if( szNew > p->mxAlloc ){
743 sqlite3StrAccumReset(p);
749 zNew = sqlite3DbMallocRaw(p->db, p->nAlloc );
751 memcpy(zNew, p->zText, p->nChar);
752 sqlite3StrAccumReset(p);
756 sqlite3StrAccumReset(p);
761 memcpy(&p->zText[p->nChar], z, N);
766 ** Finish off a string by making sure it is zero-terminated.
767 ** Return a pointer to the resulting string. Return a NULL
768 ** pointer if any kind of error was encountered.
770 char *sqlite3StrAccumFinish(StrAccum *p){
772 p->zText[p->nChar] = 0;
773 if( p->useMalloc && p->zText==p->zBase ){
774 p->zText = sqlite3DbMallocRaw(p->db, p->nChar+1 );
776 memcpy(p->zText, p->zBase, p->nChar+1);
786 ** Reset an StrAccum string. Reclaim all malloced memory.
788 void sqlite3StrAccumReset(StrAccum *p){
789 if( p->zText!=p->zBase ){
790 sqlite3DbFree(p->db, p->zText);
796 ** Initialize a string accumulator
798 void sqlite3StrAccumInit(StrAccum *p, char *zBase, int n, int mx){
799 p->zText = p->zBase = zBase;
810 ** Print into memory obtained from sqliteMalloc(). Use the internal
811 ** %-conversion extensions.
813 char *sqlite3VMPrintf(sqlite3 *db, const char *zFormat, va_list ap){
815 char zBase[SQLITE_PRINT_BUF_SIZE];
817 sqlite3StrAccumInit(&acc, zBase, sizeof(zBase),
818 db ? db->aLimit[SQLITE_LIMIT_LENGTH] : SQLITE_MAX_LENGTH);
820 sqlite3VXPrintf(&acc, 1, zFormat, ap);
821 z = sqlite3StrAccumFinish(&acc);
822 if( acc.mallocFailed && db ){
823 db->mallocFailed = 1;
829 ** Print into memory obtained from sqliteMalloc(). Use the internal
830 ** %-conversion extensions.
832 char *sqlite3MPrintf(sqlite3 *db, const char *zFormat, ...){
835 va_start(ap, zFormat);
836 z = sqlite3VMPrintf(db, zFormat, ap);
842 ** Like sqlite3MPrintf(), but call sqlite3DbFree() on zStr after formatting
843 ** the string and before returnning. This routine is intended to be used
844 ** to modify an existing string. For example:
846 ** x = sqlite3MPrintf(db, x, "prefix %s suffix", x);
849 char *sqlite3MAppendf(sqlite3 *db, char *zStr, const char *zFormat, ...){
852 va_start(ap, zFormat);
853 z = sqlite3VMPrintf(db, zFormat, ap);
855 sqlite3DbFree(db, zStr);
860 ** Print into memory obtained from sqlite3_malloc(). Omit the internal
861 ** %-conversion extensions.
863 char *sqlite3_vmprintf(const char *zFormat, va_list ap){
865 char zBase[SQLITE_PRINT_BUF_SIZE];
867 #ifndef SQLITE_OMIT_AUTOINIT
868 if( sqlite3_initialize() ) return 0;
870 sqlite3StrAccumInit(&acc, zBase, sizeof(zBase), SQLITE_MAX_LENGTH);
871 sqlite3VXPrintf(&acc, 0, zFormat, ap);
872 z = sqlite3StrAccumFinish(&acc);
877 ** Print into memory obtained from sqlite3_malloc()(). Omit the internal
878 ** %-conversion extensions.
880 char *sqlite3_mprintf(const char *zFormat, ...){
883 #ifndef SQLITE_OMIT_AUTOINIT
884 if( sqlite3_initialize() ) return 0;
886 va_start(ap, zFormat);
887 z = sqlite3_vmprintf(zFormat, ap);
893 ** sqlite3_snprintf() works like snprintf() except that it ignores the
894 ** current locale settings. This is important for SQLite because we
895 ** are not able to use a "," as the decimal point in place of "." as
896 ** specified by some locales.
898 char *sqlite3_snprintf(int n, char *zBuf, const char *zFormat, ...){
906 sqlite3StrAccumInit(&acc, zBuf, n, 0);
908 va_start(ap,zFormat);
909 sqlite3VXPrintf(&acc, 0, zFormat, ap);
911 z = sqlite3StrAccumFinish(&acc);
915 #if defined(SQLITE_DEBUG)
917 ** A version of printf() that understands %lld. Used for debugging.
918 ** The printf() built into some versions of windows does not understand %lld
919 ** and segfaults if you give it a long long int.
921 void sqlite3DebugPrintf(const char *zFormat, ...){
925 sqlite3StrAccumInit(&acc, zBuf, sizeof(zBuf), 0);
927 va_start(ap,zFormat);
928 sqlite3VXPrintf(&acc, 0, zFormat, ap);
930 sqlite3StrAccumFinish(&acc);
931 fprintf(stdout,"%s", zBuf);