conworlds
annotate src/logger.h @ 21:2da585428507
added both glut and sdl2 versions just for fun...
author | John Tsiombikas <nuclear@member.fsf.org> |
---|---|
date | Wed, 27 Aug 2014 04:16:22 +0300 |
parents | |
children |
rev | line source |
---|---|
nuclear@13 | 1 #ifndef LOGGER_H_ |
nuclear@13 | 2 #define LOGGER_H_ |
nuclear@13 | 3 |
nuclear@13 | 4 void info_log(const char *fmt, ...); |
nuclear@13 | 5 void warning_log(const char *fmt, ...); |
nuclear@13 | 6 void error_log(const char *fmt, ...); |
nuclear@13 | 7 void fatal_log(const char *fmt, ...); |
nuclear@13 | 8 void debug_log(const char *fmt, ...); |
nuclear@13 | 9 |
nuclear@13 | 10 #endif // LOGGER_H_ |