1
0
mirror of https://github.com/stedolan/jq.git synced 2024-05-11 05:55:39 +00:00

Add string division by string (split on separator)

This commit is contained in:
Nicolas Williams
2013-11-28 22:27:23 -06:00
parent 63bed9bdf1
commit cf562961b7
3 changed files with 52 additions and 0 deletions

1
jv.h
View File

@@ -87,6 +87,7 @@ jv jv_string_fmt(const char*, ...);
jv jv_string_append_codepoint(jv a, uint32_t c);
jv jv_string_append_buf(jv a, const char* buf, int len);
jv jv_string_append_str(jv a, const char* str);
jv jv_string_split(jv j, jv sep);
jv jv_string_explode(jv j);
jv jv_string_implode(jv j);