blob: b5b987442cb56699193e83ac5314ab63fb969193 (
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;
};
extern struct ircstats_config_t ircstats_config;
#endif
|