dazibao/src/debug.h
n07070 ba0cf32cb0 Added new print_error function
Added checks for NULL values
Added comments and quesitons as // TODO
2020-04-29 16:17:22 +02:00

10 lines
124 B
C

#ifndef DEBUG_H
#define DEBUG_H
#define DEBUG_LEVEL 2
void print_debug(char * msg);
void print_error(char * msg);
#endif