From: Kevin Day Date: Thu, 30 Mar 2023 04:51:23 +0000 (-0500) Subject: Update: Add missing macro macro_f_utf_string_t_initialize(). X-Git-Url: https://git.kevux.org/?a=commitdiff_plain;h=b91dee684a911b57d3cc26b0222b9be17a5e94d1;p=fll Update: Add missing macro macro_f_utf_string_t_initialize(). --- 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);