changeset 172:7b9545ad76f6

Added include file with debugging macros.
author Sascha Wilde <wilde@intevation.de>
date Tue, 25 Mar 2014 15:20:06 +0100
parents 04c1e0188ac3
children a9e4454dee97
files common/debug.h
diffstat 1 files changed, 20 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/common/debug.h	Tue Mar 25 15:20:06 2014 +0100
@@ -0,0 +1,20 @@
+#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

http://wald.intevation.org/projects/trustbridge/