Mercurial > trustbridge
view common/debug.h @ 182:6c3a089d3265
Add test for str_base64_decode as i suspect it to have a bug
author | Andre Heinecke <aheinecke@intevation.de> |
---|---|
date | Tue, 25 Mar 2014 17:17:41 +0000 |
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