Files
SeeSynth/inc/Logger.h
2023-08-07 12:05:06 +04:00

7 lines
123 B
C

#pragma once
#include "cstdio"
#define write_log(format,args...) do { \
printf(format, ## args); \
} while(0)