summaryrefslogtreecommitdiff
path: root/src/std/str.h
diff options
context:
space:
mode:
authorOmniscient <omniscient.oce@gmail.com>2024-03-05 22:18:45 +1100
committerOmniscient <omniscient.oce@gmail.com>2024-03-05 22:18:45 +1100
commitd5ae547334b5f8229313182705da42c5e904a633 (patch)
tree3656a402a2dfacd44c82f697061c387a622bcd0f /src/std/str.h
parentd92d5231ae094ae79d95463d54275a3527cf1c2d (diff)
loads and runs now (no visuals yet)
Diffstat (limited to 'src/std/str.h')
-rw-r--r--src/std/str.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/std/str.h b/src/std/str.h
index 518d508..b87864e 100644
--- a/src/std/str.h
+++ b/src/std/str.h
@@ -75,6 +75,6 @@ static inline bool str8_is_null_term(str8 a) {
}
// TODO: move or delete this and replace with handling using our internal type
-static void skip_space(char *p) {
+static void skip_space(char* p) {
while (isspace((unsigned char)*p)) ++p;
}