summaryrefslogtreecommitdiff
path: root/config.h
blob: c62dfa59df04ba51f3bb5768ee0efacc9781c721 (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 {
	int threads, monolog_min, wordlen_min;
};

extern struct ircstats_config_t ircstats_config;

#endif