jpeg-dissector/src/util.h

12 lines
188 B
C
Raw Normal View History

2022-10-28 18:53:52 +02:00
#ifndef _UTIL_H
#define _UTIL_H
#include <stdio.h>
#ifdef NDEBUG
#define DEBUG_LOG
#else
#define DEBUG_LOG(msg, ...) printf("[DEBUG] " ##msg "\n", __VA_ARGS__);
#endif
#endif // _UTIL_H