summaryrefslogtreecommitdiff
path: root/accel-pptpd/log.h
blob: 25f9f976920a6e4cca36580942152503e94a30e8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
//
// C++ Interface: log
//
// Description:
//
//
// Author:  <xeb@mail.ru>, (C) 2009
//
// Copyright: See COPYING file that comes with this distribution
//
//

#ifndef LOG_H
#define LOG_H

#include <stdio.h>

void log_init(FILE *f,int level,int color);
void log_error(const char *fmt,...);
void log_warn(const char *fmt,...);
void log_info(const char *fmt,...);
void log_debug(const char *fmt,...);
void log_msg(const char *fmt,...);

#endif