mirror of
https://github.com/nitraiolo/CfgUSBLoader.git
synced 2025-01-09 17:59:26 +01:00
13 lines
161 B
C
13 lines
161 B
C
|
#ifndef __DEBUG_H__
|
||
|
#define __DEBUG_H__
|
||
|
|
||
|
void s_printf(char *format,...);
|
||
|
|
||
|
#ifdef DEBUG
|
||
|
#define dbg_printf s_printf
|
||
|
#else
|
||
|
#define dbg_printf(...)
|
||
|
#endif
|
||
|
|
||
|
#endif
|