blob: 163be184260c8613f66b98a49e46b2613d58e84a (
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 threads, monolog_min, wordlen_min;
const char *log_date_format, *day_date_format;
};
extern struct ircstats_config_t ircstats_config;
#endif
|