10 lines
151 B
C
10 lines
151 B
C
#ifndef UTILS_H
|
|
#define UTILS_H
|
|
|
|
#include "stdio.h"
|
|
|
|
#define write_log(format,args...) do { \
|
|
printf(format, ## args); \
|
|
} while(0)
|
|
|
|
#endif |