diff options
author | louie <lshprung@yahoo.com> | 2020-12-29 14:36:38 -0800 |
---|---|---|
committer | louie <lshprung@yahoo.com> | 2020-12-29 14:36:38 -0800 |
commit | 3624ef3e18fa074ed7fadb11da68f61896dd67d3 (patch) | |
tree | 6b22f0a7b2f59a232f7626f3bc3e952c70b35d77 /include/read_cfg.h | |
parent | b8209a2349ffb2153e0c17f43412f2c9906aa8d0 (diff) |
Removed unnecessary headers
Diffstat (limited to 'include/read_cfg.h')
-rw-r--r-- | include/read_cfg.h | 15 |
1 files changed, 6 insertions, 9 deletions
diff --git a/include/read_cfg.h b/include/read_cfg.h index abb31cc..6b0c276 100644 --- a/include/read_cfg.h +++ b/include/read_cfg.h @@ -4,23 +4,20 @@ #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); +//functions that differ by os +extern char sep; +char *find_config(); +void mkconfig_wizard(); +void handle_fname(char *path, char *group, bool recurs, bool force, char *name, int ln); + #endif |