initial commit

This commit is contained in:
Lauchmelder 2022-10-28 18:53:52 +02:00
commit 421c593a61
8 changed files with 176 additions and 0 deletions

12
src/util.h Normal file
View 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