1 2 3 4 5 6 7 8
#ifndef _LOG_H #define _LOG_H void openlog(); void closelog(); void logmsg(const char *format, ...); #endif