SMOLNET PORTAL home about changes
#ifndef DEBUG_H
#define DEBUG_H

#include "boolean.h"

extern boolean DEBUG;

#ifdef DEBUGGING
#  include <stdio.h>
#  define Debug(str,val) if (DEBUG) { fprintf(stderr,str,val); }
#  define Debugmsg(str)  if (DEBUG) { fprintf(stderr,str); }
#  define DebugGSplusPrint(gop,str) if (DEBUG) { GSplusPrint(gop,str); }

#else 

#  define Debug(str,val)
#  define Debugmsg(str)
#  define DebugGSplusPrint(gop,str)

#endif

#endif /* DEBUG_H */
.
Response: text/plain
Original URLgopher://bitreich.org/9/gopher2007/2007-gopher-mirror/gop...
Content-Typetext/plain; charset=utf-8