Lines Matching defs:format

166   char *start;      /* format string start to output */
167 size_t outlen; /* number of bytes from the format string to output */
206 * Parse the format string.
226 static int parsefmt(const char *format,
232 char *fmt = (char *)format;
647 * It calls parsefmt() to parse the format string. It populates two arrays;
661 void *userp, /* untouched by format(), just sent to the stream() function in
665 const char *format, /* %-formatted string */
684 /* Parse the format string */
685 if(parsefmt(format, output, input, &ocount, &icount, ap_save))
1058 int curl_mvsnprintf(char *buffer, size_t maxlength, const char *format,
1068 retcode = formatf(&info, addbyter, format, ap_save);
1083 int curl_msnprintf(char *buffer, size_t maxlength, const char *format, ...)
1087 va_start(ap_save, format);
1088 retcode = curl_mvsnprintf(buffer, maxlength, format, ap_save);
1106 int Curl_dyn_vprintf(struct dynbuf *dyn, const char *format, va_list ap_save)
1112 (void)formatf(&info, alloc_addbyter, format, ap_save);
1120 char *curl_mvaprintf(const char *format, va_list ap_save)
1128 (void)formatf(&info, alloc_addbyter, format, ap_save);
1138 char *curl_maprintf(const char *format, ...)
1142 va_start(ap_save, format);
1143 s = curl_mvaprintf(format, ap_save);
1156 int curl_msprintf(char *buffer, const char *format, ...)
1160 va_start(ap_save, format);
1161 retcode = formatf(&buffer, storebuffer, format, ap_save);
1177 int curl_mprintf(const char *format, ...)
1181 va_start(ap_save, format);
1183 retcode = formatf(stdout, fputc_wrapper, format, ap_save);
1188 int curl_mfprintf(FILE *whereto, const char *format, ...)
1192 va_start(ap_save, format);
1193 retcode = formatf(whereto, fputc_wrapper, format, ap_save);
1198 int curl_mvsprintf(char *buffer, const char *format, va_list ap_save)
1200 int retcode = formatf(&buffer, storebuffer, format, ap_save);
1205 int curl_mvprintf(const char *format, va_list ap_save)
1207 return formatf(stdout, fputc_wrapper, format, ap_save);
1210 int curl_mvfprintf(FILE *whereto, const char *format, va_list ap_save)
1212 return formatf(whereto, fputc_wrapper, format, ap_save);