From fd14f6fbf8206589d2a0ad8f0793845cb8faf1d7 Mon Sep 17 00:00:00 2001 From: Preston Pan Date: Thu, 26 Dec 2024 21:18:05 -0800 Subject: stuff --- include/better_string.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include/better_string.h') diff --git a/include/better_string.h b/include/better_string.h index b23010e..09fd928 100644 --- a/include/better_string.h +++ b/include/better_string.h @@ -10,7 +10,7 @@ typedef struct { string_t *init_string(const char *source); -void string_append(string_t *s, char c); +void string_push(string_t *s, char c); void string_concat(string_t *s1, string_t *s2); -- cgit