mirror of
https://github.com/wiiu-env/MochaLite.git
synced 2024-11-01 02:25:10 +01:00
23 lines
305 B
C
23 lines
305 B
C
#ifndef __LOGGER_H_
|
|
#define __LOGGER_H_
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#ifdef LOG_IP
|
|
int log_init(unsigned int ip);
|
|
void log_deinit();
|
|
void log_printf(const char *format, ...);
|
|
#else
|
|
#define log_init(x)
|
|
#define log_deinit()
|
|
#define log_printf(x, ...)
|
|
#endif
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|