blob: 3b42ee826352d103cf293e9b3b1f4e67cb0fb310 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef _CONFIG_H_
#define _CONFIG_H_
int cfg_init();
void cfg_free();
struct ircstats_config_t {
long int threads, monolog_min;
};
extern struct ircstats_config_t ircstats_config;
#endif
|