diff options
| author | Ákos Kőrösi <korakos99@gmail.com> | 2026-05-12 10:09:02 +0200 |
|---|---|---|
| committer | Ákos Kőrösi <korakos99@gmail.com> | 2026-05-12 10:09:02 +0200 |
| commit | f0016d8946958d029706b39ecd233044d3cf93f5 (patch) | |
| tree | 963723ca26978870fe1dd9d1cdb6bcdc5b0c6d9d /typeutils.h | |
| parent | 1d086299904873c9123ad3449b991eb301d8be05 (diff) | |
build lexing mostly
- outline the whole of lexing (maybe)
- split it to separate C file
- add standin code to main
Diffstat (limited to 'typeutils.h')
| -rw-r--r-- | typeutils.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/typeutils.h b/typeutils.h index 1d260ef..fd285b2 100644 --- a/typeutils.h +++ b/typeutils.h @@ -37,7 +37,7 @@ DECLARE_VEC(char, String); -void append_str_to_String(String* target, char* src_str) { +static void append_str_to_String(String* target, char* src_str) { size_t required_size = ((target->count + strlen(src_str)) / target->incr_step + 1) * target->incr_step; if (required_size > target->cap) { |
