rayzor
annotate src/logger.h @ 17:79609d482762
the renderer renders, also fixed an unnoticed matrix conversion problem between scenegraph and min3d
author | John Tsiombikas <nuclear@member.fsf.org> |
---|---|
date | Mon, 14 Apr 2014 07:34:45 +0300 |
parents | a826bf0fb169 |
children |
rev | line source |
---|---|
nuclear@1 | 1 #ifndef LOGGER_H_ |
nuclear@1 | 2 #define LOGGER_H_ |
nuclear@1 | 3 |
nuclear@6 | 4 #include <stdio.h> |
nuclear@6 | 5 |
nuclear@1 | 6 #ifdef __cplusplus |
nuclear@1 | 7 extern "C" { |
nuclear@1 | 8 #endif |
nuclear@1 | 9 |
nuclear@6 | 10 void logger_output(FILE *fp); |
nuclear@1 | 11 void printlog(const char *fmt, ...); |
nuclear@1 | 12 |
nuclear@1 | 13 #ifdef __cplusplus |
nuclear@1 | 14 } |
nuclear@1 | 15 #endif |
nuclear@1 | 16 |
nuclear@1 | 17 #endif /* LOGGER_H_ */ |