core: Remove unused textfile_caseget function

This commit is contained in:
Johan Hedberg 2012-12-19 10:33:38 +02:00
parent fb43ba3017
commit 6dada324a8
2 changed files with 0 additions and 6 deletions

View File

@ -380,11 +380,6 @@ char *textfile_get(const char *pathname, const char *key)
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;

View File

@ -31,7 +31,6 @@ 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);
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);