sakura fan / SakuraIO_official

Fork of SakuraIO by SAKURA Internet

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers debug.h Source File

debug.h

00001 #ifndef __SAKURA_IO_DEBUG_H__
00002 #define __SAKURA_IO_DEBUG_H__
00003 
00004 
00005 #if defined(SAKURA_DEBUG)
00006 #define dbg(...) printf(__VA_ARGS__)
00007 #define dbgln(...) DEBUG_PRINTF_LN(__VA_ARGS__, "\r\n")
00008 #define DEBUG_PRINTF_LN(type, fmt, ...) printf(fmt "%s", __VA_ARGS__)
00009 #else
00010 #define dbg(...)
00011 #define dbgln(...)
00012 #endif
00013 
00014 #endif //__SAKURA_IO_DEBUG_H__