diff options
author | louie <lshprung@yahoo.com> | 2020-12-28 15:04:49 -0800 |
---|---|---|
committer | louie <lshprung@yahoo.com> | 2020-12-28 15:04:49 -0800 |
commit | 9fa266e62dc0782f7c2125f18fed2668ea414b29 (patch) | |
tree | 03c6d839fcb373a8877a4d66fc0c077bd629d90a /read_cfg.h | |
parent | d7fa91b54c7dcce8dedbe32f37cf849f530f8864 (diff) |
Cleaned up headers
Diffstat (limited to 'read_cfg.h')
-rw-r--r-- | read_cfg.h | 14 |
1 files changed, 7 insertions, 7 deletions
@@ -3,7 +3,7 @@ #define BUF_LEN 1024 -void cfg_interp(); +void cfg_interp(char *path); bool get_sort(); @@ -11,16 +11,16 @@ bool get_case_sensitivity(); void refer_to_doc(); -void addme(); +void addme(char *path, char *group, bool force, char *name); -int search_ch(); +int search_ch(char *str, char c); -int search_last_ch(); +int search_last_ch(char *str, char c); -int wild_cmp(); +int wild_cmp(char *wild, char *literal); -char *strip_quotes(); +char *strip_quotes(char *str); -void error_mes(); +void error_mes(int ln, char *message); #endif |