R-20 Simulator
 Alle Dateien Funktionen Variablen Makrodefinitionen
debug.h
gehe zur Dokumentation dieser Datei
1 //
2 // debug.h
3 //
4 
5 #ifndef DEBUG_H
6 #define DEBUG_H
7 
8 #define DEBUG_LINE 10 // where to start printing debugging output
9 #define DEBUG_SIZE 10 // how many lines before cycle
10 
11 void debug_print(char* str);
12 void exit_curses();
13 
14 #endif // DEBUG_H