tinywebd
diff libtinyweb/src/logger.h @ 10:0dd50a23f3dd
separated all the tinyweb functionality out as a library
author | John Tsiombikas <nuclear@member.fsf.org> |
---|---|
date | Sat, 18 Apr 2015 22:47:57 +0300 |
parents | src/logger.h@5ec50ca0d071 |
children | 86f703031228 |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/libtinyweb/src/logger.h Sat Apr 18 22:47:57 2015 +0300 1.3 @@ -0,0 +1,8 @@ 1.4 +#ifndef LOGGER_H_ 1.5 +#define LOGGER_H_ 1.6 + 1.7 +int set_log_file(const char *fname); 1.8 + 1.9 +void logmsg(const char *fname, ...); 1.10 + 1.11 +#endif /* LOGGER_H_ */