summaryrefslogtreecommitdiffstats
path: root/include/log.h
blob: f6f450c2cfa0227d0ee31551fabc83d02e1b4da5 (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, int priority, char *format, ...);
void close_log(FILE *fd);

#endif