diff options
Diffstat (limited to '')
-rw-r--r-- | common/stringhelp.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/common/stringhelp.h b/common/stringhelp.h index a643f359f..5b07af95e 100644 --- a/common/stringhelp.h +++ b/common/stringhelp.h @@ -151,6 +151,10 @@ char **strtokenize (const char *string, const char *delim); * provided ARRAY. */ int split_fields (char *string, char **array, int arraysize); +/* Split STRING into colon delimited fields and store them in the + * provided ARRAY. */ +int split_fields_colon (char *string, char **array, int arraysize); + /* Return True if MYVERSION is greater or equal than REQ_VERSION. */ int compare_version_strings (const char *my_version, const char *req_version); |