Files
GTSchoolShit/CS4210/cs4210/proj1/src/common/debug.h
2025-06-07 01:59:34 -04:00

11 lines
148 B
C

#ifndef __DEBUG_H__
#define __DEBUG_H__
#ifdef DEBUG
#define DEBUG_PRINTF(x) printf x
#else
#define DEBUG_PRINTF(x)
#endif
#endif/*__DEBUG_H__*/