mirror of
https://github.com/Pecusx/libretro-atari800.git
synced 2026-05-21 06:39:36 +02:00
11 lines
189 B
C
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_ */
|