summaryrefslogtreecommitdiff
path: root/userland/libc/include/tb/sv.h
diff options
context:
space:
mode:
authorAnton Kling <anton@kling.gg>2024-12-09 20:57:31 +0100
committerAnton Kling <anton@kling.gg>2024-12-09 20:57:31 +0100
commit635f756fa91e22f6c4fd653e5ed2a808eb7335ae (patch)
tree78128eacd8645f098198b1792ec239552fbdf6c6 /userland/libc/include/tb/sv.h
parente7272b29feb855f4678c5c510d331f297351d3a2 (diff)
libc: sv add number parsing
Diffstat (limited to 'userland/libc/include/tb/sv.h')
-rw-r--r--userland/libc/include/tb/sv.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/userland/libc/include/tb/sv.h b/userland/libc/include/tb/sv.h
index e1ca453..0ffe266 100644
--- a/userland/libc/include/tb/sv.h
+++ b/userland/libc/include/tb/sv.h
@@ -36,4 +36,5 @@ struct sv sv_trim_left(struct sv s, size_t n);
struct sv sv_clone(struct sv s);
struct sv sv_clone_from_c(const char *s);
char *sv_copy_to_c(struct sv s, char *out, size_t buffer_length);
+uint64_t sv_parse_unsigned_number(struct sv input, struct sv *rest);
#endif