From b91dee684a911b57d3cc26b0222b9be17a5e94d1 Mon Sep 17 00:00:00 2001 From: Kevin Day Date: Wed, 29 Mar 2023 23:51:23 -0500 Subject: [PATCH] Update: Add missing macro macro_f_utf_string_t_initialize(). --- level_0/f_utf/c/utf/common.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/level_0/f_utf/c/utf/common.h b/level_0/f_utf/c/utf/common.h index a716245..6950f08 100644 --- a/level_0/f_utf/c/utf/common.h +++ b/level_0/f_utf/c/utf/common.h @@ -363,6 +363,8 @@ extern "C" { #define f_utf_string_t_initialize 0 + #define macro_f_utf_string_t_initialize(string) string + #define macro_f_utf_string_t_clear(string) string = 0; #define macro_f_utf_string_t_resize(status, string, length_old, length_new) status = f_memory_resize(length_old, length_new, sizeof(f_utf_string_t), (void **) & string); -- 1.8.3.1