diff options
author | Lizzy Fleckenstein <lizzy@vlhl.dev> | 2023-12-19 09:19:43 +0100 |
---|---|---|
committer | Lizzy Fleckenstein <lizzy@vlhl.dev> | 2023-12-19 09:24:31 +0100 |
commit | 3102878c86c810c0bf877d72aceefeb28a44271d (patch) | |
tree | b6232392ff6dc2903567a79828b4a713ababc76f /stage3/string.h | |
parent | a6b460d3b1b0909e0c7b388f1a55365bf24c6b7b (diff) | |
download | cuddles-3102878c86c810c0bf877d72aceefeb28a44271d.tar.xz |
improve debugging
Diffstat (limited to 'stage3/string.h')
-rw-r--r-- | stage3/string.h | 5 |
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 |