1#ifndef DEBUG_H 2#define DEBUG_H 3 4#include <stdbool.h> 5 6#ifdef DYNAMIC_DEBUG 7#define syslinux_debug_enabled __syslinux_debug_enabled(__func__) 8extern bool __syslinux_debug_enabled(const char *func); 9#else 10#define syslinux_debug_enabled (0) 11#endif /* DYNAMIC_DEBUG */ 12 13extern int syslinux_debug(const char *str, bool enable); 14 15#endif /* DEBUG_H */ 16