1
0
Fork 0

Initial Commit

This commit is contained in:
Henrik Hautakoski 2025-07-04 07:34:31 +02:00
commit 5314a9d5c5
308 changed files with 190647 additions and 0 deletions

11
include/debug.h Normal file
View file

@ -0,0 +1,11 @@
#ifndef __DEBUG_H
#define __DEBUG_H
#ifdef APP_DEBUG
#define debug_printf(fmt, ...) \
printf((fmt) __VA_OPT__(,) __VA_ARGS__)
#else
#define debug_printf(fmt, ...)
#endif
#endif /* !__DEBUG_H */