goat3dgfx

view src/logger.h @ 3:eb75bff21824

added convenience header file which includes everything else
author John Tsiombikas <nuclear@member.fsf.org>
date Sat, 16 Nov 2013 21:09:16 +0200
parents
children 18879c956eb1
line source
1 #ifndef LOGGER_H_
2 #define LOGGER_H_
4 void info_log(const char *fmt, ...);
5 void warning_log(const char *fmt, ...);
6 void error_log(const char *fmt, ...);
7 void debug_log(const char *fmt, ...);
9 #endif // LOGGER_H_