goat3d

view src/log.h @ 38:60f2037680ee

split the exporter into two files to make it more readable (and maybe make an importer too at some point?)
author John Tsiombikas <nuclear@member.fsf.org>
date Mon, 07 Oct 2013 20:02:57 +0300
parents
children 498ca7ac7047
line source
1 #ifndef LOG_H_
2 #define LOG_H_
4 enum { LOG_ERROR, LOG_INFO };
6 void logmsg(int prio, const char *fmt, ...);
8 #endif // LOG_H_