gates_of_skeldal/libs/logfile.h
2025-01-31 12:46:48 +01:00

20 lines
326 B
C

#ifndef _SKELDAL_LOGFILE_HEADER
#define _SKELDAL_LOGFILE_HEADER
#ifdef __cplusplus
extern "C" {
#endif
#ifdef LOGFILE
void send_log_impl(const char *format, ...) __attribute__((format(printf, 1, 2)));
#define SEND_LOG(...) send_log_impl( __VA_ARGS__)
#else
#define SEND_LOG(...)
#endif
#ifdef __cplusplus
}
#endif
#endif