/**
* 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.
}
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) {