blob: 7af3f8ceecb7efb8ec27637bf5dc5d3a1b5cba09 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef _CONFIG_H_
#define _CONFIG_H_
int cfg_init();
void cfg_free();
struct ircstats_config_t {
int monolog_min, wordlen_min;
const char *log_date_format, *day_date_format, *db_connection_string;
};
extern struct ircstats_config_t ircstats_config;
#endif
|