From c729b786930cf7a0d7bf2bf529cd59b2a1778551 Mon Sep 17 00:00:00 2001 From: Kevin Day Date: Wed, 19 Feb 2025 21:59:53 -0600 Subject: [PATCH] Cleanup: Use the f_string_static_t macros for the f_string_dynamic_t macros. The `macro_f_string_dynamic_t_initialize_1` and `macro_f_string_dynamic_t_initialize_2` should be using the word `string` rather than `array` for the first argument. call the `f_string_static_t` macros for the respective `f_string_dynamic_t` macros. --- level_0/f_string/c/string/dynamic.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/level_0/f_string/c/string/dynamic.h b/level_0/f_string/c/string/dynamic.h index 96add53..afdc75e 100644 --- a/level_0/f_string/c/string/dynamic.h +++ b/level_0/f_string/c/string/dynamic.h @@ -35,8 +35,8 @@ extern "C" { #define f_string_dynamic_t_initialize f_string_static_t_initialize - #define macro_f_string_dynamic_t_initialize_1(array, size, used) { array, size, used } - #define macro_f_string_dynamic_t_initialize_2(array, length) { array, length, length } + #define macro_f_string_dynamic_t_initialize_1(string, size, used) macro_f_string_static_t_initialize_1(string, size, used) + #define macro_f_string_dynamic_t_initialize_2(string, length) macro_f_string_static_t_initialize_2(string, size, used) #define macro_f_string_dynamic_t_clear(dynamic) macro_f_string_static_t_clear(dynamic) #endif // _di_f_string_dynamic_t_ -- 1.8.3.1