/
githubmirror
/
ipxe
Обзор
Документация
Войти
/
githubmirror
/
ipxe
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
v0.9.4
src/include/debug.h
28 строк
560 B
Michael Brown
Initial revision
08 мар 2005, 21:53
08 мар 2005, 21:53
3d6123e
Код
Авторство
О чём код?
#ifndef DEBUG_H #define DEBUG_H //#include <lib.h> extern int last_putchar; /* Defining DEBUG_THIS before including this file enables debug() macro * for the file. DEBUG_ALL is for global control. */ #if DEBUG_THIS || DEBUG_ALL #define DEBUG 1 #else #undef DEBUG #endif #if DEBUG # define debug(...) \ ((last_putchar=='\n' ? printf("%s: ", __FUNCTION__) : 0), \ printf(__VA_ARGS__)) # define debug_hexdump hexdump #else # define debug(...) /* nothing */ # define debug_hexdump(...) /* nothing */ #endif #define debugx debug #endif /* DEBUG_H */