printf宏定义

#define ERR(format,...) printf("Line: %d: Func: %s\n"\
							"×××××"format"×××××\n", __LINE__, __FUNCTION__ ,##__VA_ARGS__)
#define MESSAGE(format,...)	printf("     "format"     \r", ##__VA_ARGS__)
#define LOG printf
#define STEP(format, ...) printf("*****"format"*****\n", ##__VA_ARGS__)

你可能感兴趣的:(printf宏定义)