]> git.bts.cx Git - benzene.git/blob - src/bz/debug/log.h
Initial version
[benzene.git] / src / bz / debug / log.h
1 #ifndef BZ_DEBUG_LOG_H
2 #define BZ_DEBUG_LOG_H
3
4 #ifdef __cplusplus
5 extern "C" {
6 #endif
7
8 extern void _bzLog(const char *a1, unsigned long a2, const char *fmt, ...);
9 extern void _bzError(const char *a1, unsigned long a2, const char *fmt, ...);
10
11 #define bzLog(fmt, ...) _bzLog(__FILE__, __LINE__, fmt, ##__VA_ARGS__)
12 #define bzError(fmt, ...) _bzError(__FILE__, __LINE__, fmt, ##__VA_ARGS__)
13
14 #ifdef __cplusplus
15 }
16 #endif
17
18 #endif