From 9fa266e62dc0782f7c2125f18fed2668ea414b29 Mon Sep 17 00:00:00 2001 From: louie Date: Mon, 28 Dec 2020 15:04:49 -0800 Subject: Cleaned up headers --- read_cfg.h | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'read_cfg.h') diff --git a/read_cfg.h b/read_cfg.h index d29bdd2..abb31cc 100644 --- a/read_cfg.h +++ b/read_cfg.h @@ -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 -- cgit