summaryrefslogtreecommitdiff
path: root/src/include/read_cfg.h
blob: 1337e32b40e8c013ed612a5dc91540833d871b48 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef READ_CFG_H
#define READ_CFG_H

#include <stdbool.h>

#include "group.h"

#define BUF_LEN 1024

GROUP **cfg_interp(char *path, int *group_count);
void refer_to_doc();

//functions that differ by os
extern char sep;
char *find_config();
void mkconfig_wizard(char *path);

#endif