Lines Matching defs:fmt
48 static void die(char *fmt, ...)
51 va_start(ap, fmt);
52 vfprintf(stderr, fmt, ap);
57 static void vmaybe_write_file(bool enoent_ok, char *filename, char *fmt, va_list ap)
64 buf_len = vsnprintf(buf, sizeof(buf), fmt, ap);
95 static void maybe_write_file(char *filename, char *fmt, ...)
99 va_start(ap, fmt);
100 vmaybe_write_file(true, filename, fmt, ap);
105 static void write_file(char *filename, char *fmt, ...)
109 va_start(ap, fmt);
110 vmaybe_write_file(false, filename, fmt, ap);