Lines Matching defs:char

84 typedef unsigned char etByte;
91 char fmttype; /* The format field code letter */
95 char *charset; /* The character set for conversion */
96 char *prefix; /* Prefix on non-zero values in alt format */
195 void (*func)(void*,const char*,int), /* Consumer of text */
198 const char *fmt, /* Format string */
202 char *bufpt; /* Pointer to the conversion buffer */
217 char buf[etBUFSIZE]; /* Conversion buffer */
218 char prefix; /* Prefix character. "+" or "-" or " " or '\0'. */
221 char *zExtra; /* Extra memory used for etTCLESCAPE conversions */
222 static char spaces[] = " ";
239 bufpt = (char *)fmt;
367 register char *cset; /* Use registers for speed */
382 char *pre, x;
536 bufpt = va_arg(ap,char*);
549 char *arg = va_arg(ap,char*);
648 char *zBase; /* A base allocation */
649 char *zText; /* The string collected so far */
662 static void mout(void *arg, const char *zNewText, int nNewChar){
693 static char *base_vprintf(
696 char *zInitBuf, /* Initially write here, before mallocing */
698 const char *zFormat, /* format string */
729 char *sqliteVMPrintf(const char *zFormat, va_list ap){
730 char zBase[1000];
738 char *sqliteMPrintf(const char *zFormat, ...){
740 char *z;
741 char zBase[1000];
752 char *sqlite_mprintf(const char *zFormat, ...){
754 char *z;
755 char zBuf[200];
766 char *sqlite_vmprintf(const char *zFormat, va_list ap){
767 char zBuf[200];
778 char *sqlite_snprintf(int n, char *zBuf, const char *zFormat, ...){
779 char *z;
798 const char *sqlFormat, /* printf-style format string for the SQL */
801 char **errmsg, /* Error msg written here */
814 const char *sqlFormat, /* printf-style format string for the SQL */
817 char **errmsg, /* Error msg written here */
820 char *zSql;
830 const char *sqlFormat, /* printf-style format string for the SQL */
831 char ***resultp, /* Result written to a char *[] that this points to */
834 char **errmsg, /* Error msg written here */
847 const char *sqlFormat, /* printf-style format string for the SQL */
848 char ***resultp, /* Result written to a char *[] that this points to */
851 char **errmsg, /* Error msg written here */
854 char *zSql;