]>
git.bts.cx Git - benzene.git/blob - src/bz/debug/log.h
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
, ...);
11 #define bzLog(fmt, ...) _bzLog(__FILE__, __LINE__, fmt, ##__VA_ARGS__)
12 #define bzError(fmt, ...) _bzError(__FILE__, __LINE__, fmt, ##__VA_ARGS__)