10 lines
124 B
C
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
|