summary refs log tree commit diff
path: root/str.h
diff options
context:
space:
mode:
authorwrmr2024-11-09 02:21:35 -0500
committerwrmr2024-11-09 02:21:35 -0500
commit4ca7853b000048514f5bf18391db2e66f65d1377 (patch)
treecbb4450195c2ec813fc7689fd62a8524a657c8c5 /str.h
parent2780add3f90c284cbb08f2b3a2ad83aeb472d4e0 (diff)
add strv_next
Diffstat (limited to 'str.h')
-rw-r--r--str.h1
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 */