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