Files
libretro-atari800/atari800/src/log.h
T
2015-12-14 14:00:35 +01:00

11 lines
189 B
C

#ifndef LOG_H_
#define LOG_H_
#define Log_BUFFER_SIZE 8192
extern char Log_buffer[Log_BUFFER_SIZE];
void Log_print(const char *format, ...);
void Log_flushlog(void);
#endif /* LOG_H_ */