7 lines
123 B
C
7 lines
123 B
C
#pragma once
|
|
#include "cstdio"
|
|
|
|
#define write_log(format,args...) do { \
|
|
printf(format, ## args); \
|
|
} while(0)
|