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