From: Kevin Day Date: Thu, 20 Feb 2025 03:59:53 +0000 (-0600) Subject: Cleanup: Use the f_string_static_t macros for the f_string_dynamic_t macros. X-Git-Url: https://git.kevux.org/?a=commitdiff_plain;h=c729b786930cf7a0d7bf2bf529cd59b2a1778551;p=fll 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. --- 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_