]> Kevux Git Server - kevux-tools/commitdiff
Update: The f_string_range_t is now f_range_t.
authorKevin Day <kevin@kevux.org>
Wed, 10 Apr 2024 03:08:32 +0000 (22:08 -0500)
committerKevin Day <kevin@kevux.org>
Wed, 10 Apr 2024 03:08:32 +0000 (22:08 -0500)
sources/c/remove/main/common/type.h
sources/c/remove/main/convert.c

index 3e2f841cc10098abae150aa2e484162b74c55084..981963da8e5140b0bc5183f90cf9d26c4ecc0870 100644 (file)
@@ -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.
index 1f73d7bac4ba4a79d93a0c87416162fc92d5c445..68a4b39931f3fb23e469939898e0849d47bcd0d3 100644 (file)
@@ -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) {