Files
looper/engine/src/log.h

9 lines
116 B
C

#ifndef LOG_H
#define LOG_H
void log_init(void);
void log_msg(const char *fmt, ...);
void log_close(void);
#endif