From: Kevin Day Date: Wed, 10 Apr 2024 03:08:32 +0000 (-0500) Subject: Update: The f_string_range_t is now f_range_t. X-Git-Url: https://git.kevux.org/?a=commitdiff_plain;h=2822aa84127209ee840b4c4f2b1b010df57af5c7;p=kevux-tools Update: The f_string_range_t is now f_range_t. --- diff --git a/sources/c/remove/main/common/type.h b/sources/c/remove/main/common/type.h index 3e2f841..981963d 100644 --- a/sources/c/remove/main/common/type.h +++ b/sources/c/remove/main/common/type.h @@ -19,7 +19,7 @@ extern "C" { /** * A processed Date parameter. * - * The start is inclusive and the stop is exclusive just like with f_string_range_t. + * The start is inclusive and the stop is exclusive just like with f_range_t. * * operation: The comparison operation. * type: The date type. diff --git a/sources/c/remove/main/convert.c b/sources/c/remove/main/convert.c index 1f73d7b..68a4b39 100644 --- a/sources/c/remove/main/convert.c +++ b/sources/c/remove/main/convert.c @@ -45,12 +45,12 @@ extern "C" { } uint8_t matches = 0; - f_string_range_t range_first = f_string_range_t_initialize; - f_string_range_t range_second = f_string_range_t_initialize; + f_range_t range_first = f_range_t_initialize; + f_range_t range_second = f_range_t_initialize; { uint8_t width = 0; - f_string_range_t range = macro_f_string_range_t_initialize_2(buffer.used); + f_range_t range = macro_f_range_t_initialize_2(buffer.used); f_number_unsigned_t width_max = (range.stop - range.start) + 1; for (; range.start <= range.stop; range.start += width, width_max -= width) {