diff options
author | Joseph Hunkeler <jhunk@stsci.edu> | 2011-04-19 08:30:40 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunk@stsci.edu> | 2011-04-19 08:30:40 -0400 |
commit | 2a204c75574354886fad6567375542a8c0fff921 (patch) | |
tree | 2429a7e0af57a667eefd7f302c23ce0ca5526a33 /cfg.h | |
parent | 92f5117ad21883e031137fa913489bb0c84396df (diff) | |
download | duser-2a204c75574354886fad6567375542a8c0fff921.tar.gz |
cfg.c now depends on cfg.h
duser.c depends on cfg.h
Removed cfg prototypes from duser.h
Diffstat (limited to 'cfg.h')
-rw-r--r-- | cfg.h | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -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 |