vrshoot
annotate src/logger.h @ 2:334d17aed7de
visual studio project files
author | John Tsiombikas <nuclear@member.fsf.org> |
---|---|
date | Sun, 02 Feb 2014 18:36:38 +0200 |
parents | |
children |
rev | line source |
---|---|
nuclear@0 | 1 #ifndef LOGGER_H_ |
nuclear@0 | 2 #define LOGGER_H_ |
nuclear@0 | 3 |
nuclear@0 | 4 void info_log(const char *fmt, ...); |
nuclear@0 | 5 void warning_log(const char *fmt, ...); |
nuclear@0 | 6 void error_log(const char *fmt, ...); |
nuclear@0 | 7 void fatal_log(const char *fmt, ...); |
nuclear@0 | 8 void debug_log(const char *fmt, ...); |
nuclear@0 | 9 |
nuclear@0 | 10 #endif // LOGGER_H_ |