aboutsummaryrefslogtreecommitdiff
path: root/lib/include/libcfg.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/include/libcfg.h')
-rw-r--r--lib/include/libcfg.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/lib/include/libcfg.h b/lib/include/libcfg.h
index 5724bdc..83b9213 100644
--- a/lib/include/libcfg.h
+++ b/lib/include/libcfg.h
@@ -95,4 +95,13 @@ int unescape(char *src);
*/
int pack_argv(char *str);
+/*
+ Split the current input line into a space seperted keyword
+ (alphabetical characters only) and a value (the rest of the line).
+
+ If errors are encounted, prints a diagnostic message to stderr and
+ returns -1. On success, zero is returned.
+ */
+int splitkv(rdline_t *rd, char **k, char **v);
+
#endif /* LIBCONFIG_H */