summaryrefslogtreecommitdiff
path: root/stage3/string.h
diff options
context:
space:
mode:
authorLizzy Fleckenstein <lizzy@vlhl.dev>2023-12-19 09:19:43 +0100
committerLizzy Fleckenstein <lizzy@vlhl.dev>2023-12-19 09:24:31 +0100
commit3102878c86c810c0bf877d72aceefeb28a44271d (patch)
treeb6232392ff6dc2903567a79828b4a713ababc76f /stage3/string.h
parenta6b460d3b1b0909e0c7b388f1a55365bf24c6b7b (diff)
downloadcuddles-3102878c86c810c0bf877d72aceefeb28a44271d.tar.xz
improve debugging
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