/* * File Name: debug.h * Description: if DEBUG_LOG macro defined, expand the DebugLog definition */ #ifndef __DEMO_DEBUG_H__ #define __DEMO_DEBUG_H__ #ifdef DEBUG_LOG #define DebugLog(format, ...) printf(format, ##__VA_ARGS__); #else #define DebugLog(format, ...) #endif #endif