diff options
Diffstat (limited to 'common/textfile.c')
| -rw-r--r-- | common/textfile.c | 5 | 
1 files changed, 5 insertions, 0 deletions
| diff --git a/common/textfile.c b/common/textfile.c index 8c46563c..795c99a3 100644 --- a/common/textfile.c +++ b/common/textfile.c @@ -320,6 +320,11 @@ int textfile_del(const char *pathname, const char *key)  	return write_key(pathname, key, NULL, 0);  } +int textfile_casedel(const char *pathname, const char *key) +{ +	return write_key(pathname, key, NULL, 1); +} +  char *textfile_get(const char *pathname, const char *key)  {  	return read_key(pathname, key, 0); | 
