mirror of
https://github.com/drasko/codezero.git
synced 2026-01-11 02:06:37 +01:00
14 lines
147 B
C
14 lines
147 B
C
|
|
#ifndef __TESTS_H__
|
|
#define __TESTS_H__
|
|
|
|
//#define DEBUG
|
|
|
|
#ifdef DEBUG
|
|
#define dgb_printf printf
|
|
#else
|
|
#define dbg_printf(fmt,...)
|
|
#endif
|
|
|
|
#endif
|