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