initial commit
This commit is contained in:
commit
421c593a61
8 changed files with 176 additions and 0 deletions
12
src/util.h
Normal file
12
src/util.h
Normal file
|
@ -0,0 +1,12 @@
|
|||
#ifndef _UTIL_H
|
||||
#define _UTIL_H
|
||||
|
||||
#include <stdio.h>
|
||||
|
||||
#ifdef NDEBUG
|
||||
#define DEBUG_LOG
|
||||
#else
|
||||
#define DEBUG_LOG(msg, ...) printf("[DEBUG] " ##msg "\n", __VA_ARGS__);
|
||||
#endif
|
||||
|
||||
#endif // _UTIL_H
|
Loading…
Add table
Add a link
Reference in a new issue