diff options
Diffstat (limited to 'src/utilfuns/utilconf.cpp')
-rw-r--r-- | src/utilfuns/utilconf.cpp | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/utilfuns/utilconf.cpp b/src/utilfuns/utilconf.cpp new file mode 100644 index 0000000..5a32ca0 --- /dev/null +++ b/src/utilfuns/utilconf.cpp @@ -0,0 +1,19 @@ +#include <string.h> +#include <utilstr.h> + + +/****************************************************************************** + * getconfent - Get the value of an entry in a configuration file + * + * ENT: filename - File name in which to look for entry + * entryname - Entry of which to obtain value + * buf - Buffer to store entry value + * len - Maximum length to write into buffer + * + * RET: error status + */ + +char getconfent(char *filename, char *entryname, char *buf, int len) +{ + return 0; +} |