foo
[mdlife] / src / debug.h
1 #ifndef DEBUG_H_
2 #define DEBUG_H_
3
4 void dbg_init(void);
5
6 void dbg_printchar(int x, int y, char c);
7 void dbg_printstr(int x, int y, const char *str);
8
9 void dbg_setcursor(int x, int y);
10 void dbg_putchar(int c);
11
12 #endif  /* DEBUG_H_ */