diff --git a/src/textfile.c b/src/textfile.c
index b28dd91..9cb6bf2 100644
--- a/src/textfile.c
+++ b/src/textfile.c
return read_key(pathname, key, 0);
}
-char *textfile_caseget(const char *pathname, const char *key)
-{
- return read_key(pathname, key, 1);
-}
-
int textfile_foreach(const char *pathname, textfile_cb func, void *data)
{
struct stat st;
diff --git a/src/textfile.h b/src/textfile.h
index 7214455..b779bd2 100644
--- a/src/textfile.h
+++ b/src/textfile.h
int textfile_put(const char *pathname, const char *key, const char *value);
int textfile_del(const char *pathname, const char *key);
char *textfile_get(const char *pathname, const char *key);
-char *textfile_caseget(const char *pathname, const char *key);
typedef void (*textfile_cb) (char *key, char *value, void *data);