summaryrefslogtreecommitdiff
path: root/src/std/str.h
diff options
context:
space:
mode:
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;
}