Lines Matching refs:fmt
18 void msg(enum msg_type, int data, const char *fmt, ...);
20 #define DEBUG(level, fmt, args...) msg(MSG_DEBUG, level, fmt, ##args)
21 #define INFO(fmt, args...) msg(MSG_INFO, 0, fmt, ##args)
22 #define WARN(err, fmt, args...) msg(MSG_WARN, err, fmt, ##args)
23 #define ERROR(err, fmt, args...) msg(MSG_ERROR, err, fmt, ##args)
24 #define FATAL(err, fmt, args...) msg(MSG_FATAL, err, fmt, ##args)