From 2a204c75574354886fad6567375542a8c0fff921 Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Tue, 19 Apr 2011 08:30:40 -0400 Subject: cfg.c now depends on cfg.h duser.c depends on cfg.h Removed cfg prototypes from duser.h --- cfg.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'cfg.h') diff --git a/cfg.h b/cfg.h index 6b42f41..d3814f3 100644 --- a/cfg.h +++ b/cfg.h @@ -20,7 +20,10 @@ #ifndef CFG_H #define CFG_H + +#define CFG_MAX 255 int cfg_open(const char* filename); void cfg_close(); -int cfg_get_key(char* val, char* key); +int cfg_get_key(char* val, const char* key); + #endif -- cgit