diff options
author | wrmr | 2024-11-09 02:21:35 -0500 |
---|---|---|
committer | wrmr | 2024-11-09 02:21:35 -0500 |
commit | 4ca7853b000048514f5bf18391db2e66f65d1377 (patch) | |
tree | cbb4450195c2ec813fc7689fd62a8524a657c8c5 /str.h | |
parent | 2780add3f90c284cbb08f2b3a2ad83aeb472d4e0 (diff) |
add strv_next
Diffstat (limited to 'str.h')
-rw-r--r-- | str.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/str.h b/str.h index fe56d98..a078cfd 100644 --- a/str.h +++ b/str.h @@ -11,6 +11,7 @@ typedef struct { } strv_t; strv_t strv(const char *s); +char strv_next(strv_t *s); int strv_split(strv_t *src, int chr, strv_t *dest); /* strings */ |