Mercurial > trustbridge
view common/debug.h @ 223:d29997e09177
NSS first Blood. Added code to list certs in found stores.
author | Sascha Wilde <wilde@intevation.de> |
---|---|
date | Thu, 27 Mar 2014 12:46:46 +0100 |
parents | 7b9545ad76f6 |
children | 29467940b07b |
line wrap: on
line source
#ifndef DEBUG_H #define DEBUG_H /** * @file debug.h * @brief Helper macros for debugging */ /** * @brief Debug printf * * Prints to stderr if RELEASE_BUILD is not defined. */ #ifndef RELEASE_BUILD #define DEBUGFPRINT(fmt, ...) fprintf(stderr, fmt, ##__VA_ARGS__); #else #define DEBUGFPRINT(fmt, ...) #endif #endif