summaryrefslogtreecommitdiffstats
path: root/include/log.h
blob: 9ecff3063d23218bd0e28106d4cb0700473a8fed (plain)
1
2
3
4
5
6
7
8
9
10
#ifndef _LOG_H_
#define _LOG_H_

#include <stdio.h>

FILE *init_log(char *filename);
void dlog(FILE *fd, char *format, ...);
void close_log(FILE *fd);

#endif