diff options
author | Omniscient <omniscient.oce@gmail.com> | 2024-03-05 22:18:45 +1100 |
---|---|---|
committer | Omniscient <omniscient.oce@gmail.com> | 2024-03-05 22:18:45 +1100 |
commit | d5ae547334b5f8229313182705da42c5e904a633 (patch) | |
tree | 3656a402a2dfacd44c82f697061c387a622bcd0f /src/std | |
parent | d92d5231ae094ae79d95463d54275a3527cf1c2d (diff) |
loads and runs now (no visuals yet)
Diffstat (limited to 'src/std')
-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; } |