summaryrefslogtreecommitdiff
path: root/logs.h
blob: ed1595e09006cf3de492b5afaae9eba85a953f5e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef __MICROBBS_LOGS_H
#define __MICROBBS_LOGS_H

#include <stdlib.h>
#include <stdio.h>
#include <syslog.h>

#define BBS_DEFAULT_SYSLOG "microbbs"

int bbs_log( const char* );
int bbs_log_article( const char* );
int bbs_log_article_list( const char* );
int bbs_log_motd( const char* );
int bbs_log_quit( const char* );
#endif