diff options
Diffstat (limited to 'src/std/str.h')
-rw-r--r-- | src/std/str.h | 2 |
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; } |