tinywebd

view libtinyweb/src/logger.h @ 12:86f703031228

Attribution headers
author John Tsiombikas <nuclear@member.fsf.org>
date Sun, 19 Apr 2015 00:01:01 +0300
parents 0dd50a23f3dd
children
line source
1 /* tinyweb - tiny web server library and daemon
2 * Author: John Tsiombikas <nuclear@member.fsf.org>
3 *
4 * This program is placed in the public domain. Feel free to use it any
5 * way you like. Mentions and retaining this attribution header will be
6 * appreciated, but not required.
7 */
8 #ifndef LOGGER_H_
9 #define LOGGER_H_
11 int set_log_file(const char *fname);
13 void logmsg(const char *fname, ...);
15 #endif /* LOGGER_H_ */