diff options
author | Marcel Holtmann <marcel@holtmann.org> | 2006-11-07 20:34:46 +0000 |
---|---|---|
committer | Marcel Holtmann <marcel@holtmann.org> | 2006-11-07 20:34:46 +0000 |
commit | a59e6d0bdc38728c96254f589fa2e64f0542a8a8 (patch) | |
tree | fccabb71c72d2a3ae15f8a6dc3c8ab2f3c0daad0 /common | |
parent | 7a264576af2e7ccf599b069ee2f93c881ef82679 (diff) |
Add textfile_casedel() function
Diffstat (limited to 'common')
-rw-r--r-- | common/textfile.c | 5 | ||||
-rw-r--r-- | common/textfile.h | 1 |
2 files changed, 6 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); diff --git a/common/textfile.h b/common/textfile.h index d89720d7..b1a31100 100644 --- a/common/textfile.h +++ b/common/textfile.h @@ -31,6 +31,7 @@ int create_name(char *buf, size_t size, const char *path, int textfile_put(const char *pathname, const char *key, const char *value); int textfile_del(const char *pathname, const char *key); +int textfile_casedel(const char *pathname, const char *key); char *textfile_get(const char *pathname, const char *key); char *textfile_caseget(const char *pathname, const char *key); |