- Moved everything about.

This commit is contained in:
ccremers
2004-04-23 10:58:43 +00:00
parent ca5202dc0c
commit 0f4e6a5aba
60 changed files with 10596 additions and 0 deletions

10
src/debug.h Normal file
View File

@@ -0,0 +1,10 @@
#ifndef DEBUG_H
#define DEBUG_H
void debugSet (int level);
int debugCond (int level);
void debug (int level, char *string);
#define DEBUGL(a) debugCond(a)
#endif