Lines Matching defs:fmt
41 const char *fmt,
46 const char *fmt,
50 DEBUGASSERT(!strchr(fmt, '\n'));
56 print_buffer = curlx_mvaprintf(fmt, ap);
95 void notef(struct GlobalConfig *config, const char *fmt, ...)
98 va_start(ap, fmt);
100 voutf(config, NOTE_PREFIX, fmt, ap);
108 void warnf(struct GlobalConfig *config, const char *fmt, ...)
111 va_start(ap, fmt);
112 voutf(config, WARN_PREFIX, fmt, ap);
120 void helpf(FILE *errors, const char *fmt, ...)
122 if(fmt) {
124 va_start(ap, fmt);
125 DEBUGASSERT(!strchr(fmt, '\n'));
127 vfprintf(errors, fmt, ap);
142 void errorf(struct GlobalConfig *config, const char *fmt, ...)
146 va_start(ap, fmt);
147 voutf(config, ERROR_PREFIX, fmt, ap);