summaryrefslogtreecommitdiff
path: root/stage3/string.h
diff options
context:
space:
mode:
Diffstat (limited to 'stage3/string.h')
-rw-r--r--stage3/string.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/stage3/string.h b/stage3/string.h
index 8375136..fc91522 100644
--- a/stage3/string.h
+++ b/stage3/string.h
@@ -6,6 +6,9 @@
isize str_cmp(str s1, str s2);
usize str_find(str s, str tokens);
usize str_parse_num(str s, u8 base, u64 *x);
-str str_split_walk(str *s, str sep);
+str str_walk(str *s, str sep);
+str str_eat(str s, str tokens);
+str str_advance(str s, usize x);
+bool str_start(str s, str start);
#endif