nuclear@12: /* tinyweb - tiny web server library and daemon nuclear@12: * Author: John Tsiombikas nuclear@12: * nuclear@12: * This program is placed in the public domain. Feel free to use it any nuclear@12: * way you like. Mentions and retaining this attribution header will be nuclear@12: * appreciated, but not required. nuclear@12: */ nuclear@7: #ifndef LOGGER_H_ nuclear@7: #define LOGGER_H_ nuclear@7: nuclear@7: int set_log_file(const char *fname); nuclear@7: nuclear@7: void logmsg(const char *fname, ...); nuclear@7: nuclear@7: #endif /* LOGGER_H_ */