tinywebd

annotate libtinyweb/src/logger.h @ 17:2874f61a43b1

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