#ifndef _LOG_H_ #define _LOG_H_ #include FILE *init_log(char *filename); void dlog(FILE *fd, char *format, ...); void close_log(FILE *fd); #endif