summaryrefslogtreecommitdiff
path: root/read_cfg.h
diff options
context:
space:
mode:
authorlouie <lshprung@yahoo.com>2020-12-28 12:47:47 -0800
committerlouie <lshprung@yahoo.com>2020-12-28 12:47:47 -0800
commitd7fa91b54c7dcce8dedbe32f37cf849f530f8864 (patch)
treec22df16697dc92aaed450412e11697eb13a62858 /read_cfg.h
parentcf54938e343a9fced866fd2f2602eb807b7b8a93 (diff)
Cleaned up ifdefs
Diffstat (limited to 'read_cfg.h')
-rw-r--r--read_cfg.h18
1 files changed, 13 insertions, 5 deletions
diff --git a/read_cfg.h b/read_cfg.h
index b8edd64..d29bdd2 100644
--- a/read_cfg.h
+++ b/read_cfg.h
@@ -1,11 +1,7 @@
#ifndef READ_CFG_H
#define READ_CFG_H
-#if defined _WIN32 || defined _WIN64
-char *find_config_win();
-#else
-char *find_config();
-#endif
+#define BUF_LEN 1024
void cfg_interp();
@@ -15,4 +11,16 @@ bool get_case_sensitivity();
void refer_to_doc();
+void addme();
+
+int search_ch();
+
+int search_last_ch();
+
+int wild_cmp();
+
+char *strip_quotes();
+
+void error_mes();
+
#endif