From f0016d8946958d029706b39ecd233044d3cf93f5 Mon Sep 17 00:00:00 2001 From: Ákos Kőrösi Date: Tue, 12 May 2026 10:09:02 +0200 Subject: build lexing mostly - outline the whole of lexing (maybe) - split it to separate C file - add standin code to main --- typeutils.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'typeutils.h') 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) { -- cgit v1.2.3