Home | History | Annotate | Download | only in common

Lines Matching full:char

27 int create_dirs(const char *filename, const mode_t mode);
28 int create_file(const char *filename, const mode_t mode);
29 int create_name(char *buf, size_t size, const char *path,
30 const char *address, const char *name);
32 int textfile_put(const char *pathname, const char *key, const char *value);
33 int textfile_caseput(const char *pathname, const char *key, const char *value);
34 int textfile_del(const char *pathname, const char *key);
35 int textfile_casedel(const char *pathname, const char *key);
36 char *textfile_get(const char *pathname, const char *key);
37 char *textfile_caseget(const char *pathname, const char *key);
39 int textfile_foreach(const char *pathname,
40 void (*func)(char *key, char *value, void *data), void *data);