summaryrefslogtreecommitdiff
path: root/include/read_cfg.h
blob: abb31cc864976ec131b28334682f5223dd575d5e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#ifndef READ_CFG_H
#define READ_CFG_H

#define BUF_LEN 1024

void cfg_interp(char *path);

bool get_sort();

bool get_case_sensitivity();

void refer_to_doc();

void addme(char *path, char *group, bool force, char *name);

int search_ch(char *str, char c);

int search_last_ch(char *str, char c);

int wild_cmp(char *wild, char *literal);

char *strip_quotes(char *str);

void error_mes(int ln, char *message);

#endif