From cc276efccb44b037096645a4fb247a5c68eb61e5 Mon Sep 17 00:00:00 2001 From: Kevin Day Date: Thu, 21 Jan 2021 19:34:32 -0600 Subject: [PATCH] Bugfix: incorrect data type being used. This should be f_array_length_t and not f_string_length_t, for array lengths. There are some cases where the string length is using f_array_length_t, which ironically should be f_string_length_t. --- level_0/f_string/c/private-string.c | 32 ++++++++++++++++---------------- level_0/f_string/c/private-string.h | 32 ++++++++++++++++---------------- level_0/f_string/c/string_dynamic.c | 4 ++-- level_0/f_string/c/string_dynamic.h | 4 ++-- level_0/f_string/c/string_map.c | 8 ++++---- level_0/f_string/c/string_quantity.c | 8 ++++---- level_0/f_string/c/string_range.c | 8 ++++---- level_0/f_string/c/string_triple.c | 4 ++-- level_0/f_utf/c/private-utf.c | 32 ++++++++++++++++---------------- level_0/f_utf/c/private-utf.h | 32 ++++++++++++++++---------------- level_0/f_utf/c/utf_dynamic.c | 4 ++-- level_0/f_utf/c/utf_map.c | 8 ++++---- level_0/f_utf/c/utf_quantity.c | 8 ++++---- level_0/f_utf/c/utf_range.c | 8 ++++---- level_0/f_utf/c/utf_triple.c | 4 ++-- 15 files changed, 98 insertions(+), 98 deletions(-) diff --git a/level_0/f_string/c/private-string.c b/level_0/f_string/c/private-string.c index 12116e9..e3ef695 100644 --- a/level_0/f_string/c/private-string.c +++ b/level_0/f_string/c/private-string.c @@ -122,7 +122,7 @@ extern "C" { #endif // !defined(_di_f_string_dynamic_decrease_by_) || !defined(_di_f_string_dynamic_increase_) || !defined(_di_f_string_dynamic_increase_by_) || !defined(_di_f_string_dynamic_terminate_) || !defined(_di_f_string_dynamic_terminate_after_) #if !defined(_di_f_string_dynamics_adjust_) || !defined(_di_f_string_dynamics_decimate_by_) - f_status_t private_f_string_dynamics_adjust(const f_string_length_t length, f_string_dynamics_t *dynamics) { + f_status_t private_f_string_dynamics_adjust(const f_array_length_t length, f_string_dynamics_t *dynamics) { f_status_t status = F_none; for (f_array_length_t i = length; i < dynamics->size; ++i) { @@ -145,7 +145,7 @@ extern "C" { #endif // !defined(_di_f_string_dynamics_adjust_) || !defined(_di_f_string_dynamics_decimate_by_) #if !defined(_di_f_string_dynamics_decrease_by_) || !defined(_di_f_string_dynamics_increase_) || !defined(_di_f_string_dynamics_increase_by_) - f_status_t private_f_string_dynamics_resize(const f_string_length_t length, f_string_dynamics_t *dynamics) { + f_status_t private_f_string_dynamics_resize(const f_array_length_t length, f_string_dynamics_t *dynamics) { f_status_t status = F_none; for (f_array_length_t i = length; i < dynamics->size; ++i) { @@ -168,7 +168,7 @@ extern "C" { #endif // !defined(_di_f_string_dynamics_decrease_by_) || !defined(_di_f_string_dynamics_increase_) || !defined(_di_f_string_dynamics_increase_by_) #if !defined(_di_f_string_map_multis_adjust_) || !defined(_di_f_string_map_multis_decimate_by_) - f_status_t private_f_string_map_multis_adjust(const f_string_length_t length, f_string_map_multis_t *map_multis) { + f_status_t private_f_string_map_multis_adjust(const f_array_length_t length, f_string_map_multis_t *map_multis) { f_status_t status = F_none; for (f_array_length_t i = length; i < map_multis->size; ++i) { @@ -195,7 +195,7 @@ extern "C" { #endif // !defined(_di_f_string_map_multis_adjust_) || !defined(_di_f_string_map_multis_decimate_by_) #if !defined(_di_f_string_map_multis_decrease_by_) || !defined(_di_f_string_map_multis_increase_) || !defined(_di_f_string_map_multis_increase_by_) || !defined(_di_f_string_map_multis_terminate_) || !defined(_di_f_string_map_multis_terminate_after_) - f_status_t private_f_string_map_multis_resize(const f_string_length_t length, f_string_map_multis_t *map_multis) { + f_status_t private_f_string_map_multis_resize(const f_array_length_t length, f_string_map_multis_t *map_multis) { f_status_t status = F_none; for (f_array_length_t i = length; i < map_multis->size; ++i) { @@ -222,7 +222,7 @@ extern "C" { #endif // !defined(_di_f_string_map_multis_decrease_by_) || !defined(_di_f_string_map_multis_increase_) || !defined(_di_f_string_map_multis_increase_by_) || !defined(_di_f_string_map_multis_terminate_) || !defined(_di_f_string_map_multis_terminate_after_) #if !defined(_di_f_string_maps_adjust_) || !defined(_di_f_string_maps_decimate_by_) - f_status_t private_f_string_maps_adjust(const f_string_length_t length, f_string_maps_t *maps) { + f_status_t private_f_string_maps_adjust(const f_array_length_t length, f_string_maps_t *maps) { f_status_t status = F_none; for (f_array_length_t i = length; i < maps->size; ++i) { @@ -249,7 +249,7 @@ extern "C" { #endif // !defined(_di_f_string_maps_adjust_) || !defined(_di_f_string_maps_decimate_by_) #if !defined(_di_f_string_maps_decrease_by_) || !defined(_di_f_string_maps_increase_) || !defined(_di_f_string_maps_increase_by_) || !defined(_di_f_string_maps_terminate_) || !defined(_di_f_string_maps_terminate_after_) - f_status_t private_f_string_maps_resize(const f_string_length_t length, f_string_maps_t *maps) { + f_status_t private_f_string_maps_resize(const f_array_length_t length, f_string_maps_t *maps) { f_status_t status = F_none; for (f_array_length_t i = length; i < maps->size; ++i) { @@ -367,7 +367,7 @@ extern "C" { #endif // !defined(_di_f_string_dynamic_mish_nulless_) || !defined(_di_f_string_dynamic_partial_mish_nulless_) || !defined(_di_f_string_dynamic_partial_prepend_assure_nulless_) || !defined(_di_f_string_dynamic_partial_prepend_nulless_) || !defined(_di_f_string_dynamic_prepend_assure_nulless_) || !defined(_di_f_string_dynamic_prepend_nulless_) || !defined(_di_f_string_mish_nulless_) || !defined(_di_f_string_prepend_assure_nulless_) || !defined(_di_f_string_prepend_nulless_) #if !defined(_di_f_string_quantitys_adjust_) || !defined(_di_f_string_quantitys_decimate_by_) - f_status_t private_f_string_quantitys_adjust(const f_string_length_t length, f_string_quantitys_t *quantitys) { + f_status_t private_f_string_quantitys_adjust(const f_array_length_t length, f_string_quantitys_t *quantitys) { const f_status_t status = f_memory_adjust(quantitys->size, length, sizeof(f_string_quantity_t), (void **) & quantitys->array); @@ -384,7 +384,7 @@ extern "C" { #endif // !defined(_di_f_string_quantitys_adjust_) || !defined(_di_f_string_quantitys_decimate_by_) #if !defined(_di_f_string_quantitys_decrease_) || !defined(_di_f_string_quantitys_decrease_by_) || !defined(_di_f_string_quantitys_increase_) || !defined(_di_f_string_quantitys_increase_by_) || !defined(_di_f_string_quantitys_terminate_) || !defined(_di_f_string_quantitys_terminate_after_) - f_status_t private_f_string_quantitys_resize(const f_string_length_t length, f_string_quantitys_t *quantitys) { + f_status_t private_f_string_quantitys_resize(const f_array_length_t length, f_string_quantitys_t *quantitys) { const f_status_t status = f_memory_resize(quantitys->size, length, sizeof(f_string_quantity_t), (void **) & quantitys->array); @@ -401,7 +401,7 @@ extern "C" { #endif // !defined(_di_f_string_quantitys_decrease_) || !defined(_di_f_string_quantitys_decrease_by_) || !defined(_di_f_string_quantitys_increase_) || !defined(_di_f_string_quantitys_increase_by_) || !defined(_di_f_string_quantitys_terminate_) || !defined(_di_f_string_quantitys_terminate_after_) #if !defined(_di_f_string_quantityss_adjust_) || !defined(_di_f_string_quantityss_decimate_by_) - f_status_t private_f_string_quantityss_adjust(const f_string_length_t length, f_string_quantityss_t *quantityss) { + f_status_t private_f_string_quantityss_adjust(const f_array_length_t length, f_string_quantityss_t *quantityss) { f_status_t status = F_none; for (f_array_length_t i = length; i < quantityss->size; ++i) { @@ -424,7 +424,7 @@ extern "C" { #endif // !defined(_di_f_string_quantityss_adjust_) || !defined(_di_f_string_quantityss_decimate_by_) #if !defined(_di_f_string_quantityss_decrease_) || !defined(_di_f_string_quantityss_decrease_by_) || !defined(_di_f_string_quantityss_increase_) || !defined(_di_f_string_quantityss_increase_by_) || !defined(_di_f_string_quantityss_terminate_) || !defined(_di_f_string_quantityss_terminate_after_) - f_status_t private_f_string_quantityss_resize(const f_string_length_t length, f_string_quantityss_t *quantityss) { + f_status_t private_f_string_quantityss_resize(const f_array_length_t length, f_string_quantityss_t *quantityss) { f_status_t status = F_none; for (f_array_length_t i = length; i < quantityss->size; ++i) { @@ -447,7 +447,7 @@ extern "C" { #endif // !defined(_di_f_string_quantityss_decrease_) || !defined(_di_f_string_quantityss_decrease_by_) || !defined(_di_f_string_quantityss_increase_) || !defined(_di_f_string_quantityss_increase_by_) || !defined(_di_f_string_quantityss_terminate_) || !defined(_di_f_string_quantityss_terminate_after_) #if !defined(_di_f_string_ranges_adjust_) || !defined(_di_f_string_ranges_decimate_by_) - f_status_t private_f_string_ranges_adjust(const f_string_length_t length, f_string_ranges_t *ranges) { + f_status_t private_f_string_ranges_adjust(const f_array_length_t length, f_string_ranges_t *ranges) { const f_status_t status = f_memory_adjust(ranges->size, length, sizeof(f_string_range_t), (void **) & ranges->array); @@ -464,7 +464,7 @@ extern "C" { #endif // !defined(_di_f_string_ranges_adjust_) || !defined(_di_f_string_ranges_decimate_by_) #if !defined(_di_f_string_ranges_decrease_) || !defined(_di_f_string_ranges_decrease_by_) || !defined(_di_f_string_ranges_increase_) || !defined(_di_f_string_ranges_increase_by_) || !defined(_di_f_string_ranges_terminate_) || !defined(_di_f_string_ranges_terminate_after_) - f_status_t private_f_string_ranges_resize(const f_string_length_t length, f_string_ranges_t *ranges) { + f_status_t private_f_string_ranges_resize(const f_array_length_t length, f_string_ranges_t *ranges) { const f_status_t status = f_memory_resize(ranges->size, length, sizeof(f_string_range_t), (void **) & ranges->array); @@ -481,7 +481,7 @@ extern "C" { #endif // !defined(_di_f_string_ranges_decrease_) || !defined(_di_f_string_ranges_decrease_by_) || !defined(_di_f_string_ranges_increase_) || !defined(_di_f_string_ranges_increase_by_) || !defined(_di_f_string_ranges_terminate_) || !defined(_di_f_string_ranges_terminate_after_) #if !defined(_di_f_string_rangess_adjust_) || !defined(_di_f_string_rangess_decimate_by_) - f_status_t private_f_string_rangess_adjust(const f_string_length_t length, f_string_rangess_t *rangess) { + f_status_t private_f_string_rangess_adjust(const f_array_length_t length, f_string_rangess_t *rangess) { f_status_t status = F_none; for (f_array_length_t i = length; i < rangess->size; ++i) { @@ -504,7 +504,7 @@ extern "C" { #endif // !defined(_di_f_string_rangess_adjust_) || !defined(_di_f_string_rangess_decimate_by_) #if !defined(_di_f_string_rangess_decrease_) || !defined(_di_f_string_rangess_decrease_by_) || !defined(_di_f_string_rangess_increase_) || !defined(_di_f_string_rangess_increase_by_) || !defined(_di_f_string_rangess_terminate_) || !defined(_di_f_string_rangess_terminate_after_) - f_status_t private_f_string_rangess_resize(const f_string_length_t length, f_string_rangess_t *rangess) { + f_status_t private_f_string_rangess_resize(const f_array_length_t length, f_string_rangess_t *rangess) { f_status_t status = F_none; for (f_array_length_t i = length; i < rangess->size; ++i) { @@ -527,7 +527,7 @@ extern "C" { #endif // !defined(_di_f_string_rangess_decrease_) || !defined(_di_f_string_rangess_decrease_by_) || !defined(_di_f_string_rangess_increase_) || !defined(_di_f_string_rangess_increase_by_) || !defined(_di_f_string_rangess_terminate_) || !defined(_di_f_string_rangess_terminate_after_) #if !defined(_di_f_string_triples_adjust_) || !defined(_di_f_string_triples_decimate_by_) - f_status_t private_f_string_triples_adjust(const f_string_length_t length, f_string_triples_t *triples) { + f_status_t private_f_string_triples_adjust(const f_array_length_t length, f_string_triples_t *triples) { f_status_t status = F_none; for (f_array_length_t i = length; i < triples->size; ++i) { @@ -557,7 +557,7 @@ extern "C" { #endif // !defined(_di_f_string_triples_adjust_) || !defined(_di_f_string_triples_decimate_by_) #if !defined(_di_f_string_triples_decrease_) || !defined(_di_f_string_triples_decrease_by_) || !defined(_di_f_string_triples_increase_) || !defined(_di_f_string_triples_increase_by_) || !defined(_di_f_string_triples_terminate_) || !defined(_di_f_string_triples_terminate_after_) - f_status_t private_f_string_triples_resize(const f_string_length_t length, f_string_triples_t *triples) { + f_status_t private_f_string_triples_resize(const f_array_length_t length, f_string_triples_t *triples) { f_status_t status = F_none; for (f_array_length_t i = length; i < triples->size; ++i) { diff --git a/level_0/f_string/c/private-string.h b/level_0/f_string/c/private-string.h index 3512761..58f068c 100644 --- a/level_0/f_string/c/private-string.h +++ b/level_0/f_string/c/private-string.h @@ -192,7 +192,7 @@ extern "C" { * @see private_f_string_dynamic_adjust() */ #if !defined(_di_f_string_dynamics_adjust_) || !defined(_di_f_string_dynamics_decimate_by_) - extern f_status_t private_f_string_dynamics_adjust(const f_string_length_t length, f_string_dynamics_t *strings) f_gcc_attribute_visibility_internal; + extern f_status_t private_f_string_dynamics_adjust(const f_array_length_t length, f_string_dynamics_t *strings) f_gcc_attribute_visibility_internal; #endif // !defined(_di_f_string_dynamics_adjust_) || !defined(_di_f_string_dynamics_decimate_by_) /** @@ -219,7 +219,7 @@ extern "C" { * @see private_f_string_dynamic_resize() */ #if !defined(_di_f_string_dynamics_decrease_by_) || !defined(_di_f_string_dynamics_increase_) || !defined(_di_f_string_dynamics_increase_by_) - extern f_status_t private_f_string_dynamics_resize(const f_string_length_t length, f_string_dynamics_t *strings) f_gcc_attribute_visibility_internal; + extern f_status_t private_f_string_dynamics_resize(const f_array_length_t length, f_string_dynamics_t *strings) f_gcc_attribute_visibility_internal; #endif // !defined(_di_f_string_dynamics_decrease_by_) || !defined(_di_f_string_dynamics_increase_) || !defined(_di_f_string_dynamics_increase_by_) /** @@ -244,7 +244,7 @@ extern "C" { * @see private_f_string_dynamic_adjust() */ #if !defined(_di_f_string_map_multis_adjust_) || !defined(_di_f_string_map_multis_decimate_by_) - extern f_status_t private_f_string_map_multis_adjust(const f_string_length_t length, f_string_map_multis_t *map_multis) f_gcc_attribute_visibility_internal; + extern f_status_t private_f_string_map_multis_adjust(const f_array_length_t length, f_string_map_multis_t *map_multis) f_gcc_attribute_visibility_internal; #endif // !defined(_di_f_string_map_multis_adjust_) || !defined(_di_f_string_map_multis_decimate_by_) /** @@ -273,7 +273,7 @@ extern "C" { * @see private_f_string_dynamic_resize() */ #if !defined(_di_f_string_map_multis_decrease_by_) || !defined(_di_f_string_map_multis_increase_) || !defined(_di_f_string_map_multis_increase_by_) || !defined(_di_f_string_map_multis_terminate_) || !defined(_di_f_string_map_multis_terminate_after_) - extern f_status_t private_f_string_map_multis_resize(const f_string_length_t length, f_string_map_multis_t *map_multis) f_gcc_attribute_visibility_internal; + extern f_status_t private_f_string_map_multis_resize(const f_array_length_t length, f_string_map_multis_t *map_multis) f_gcc_attribute_visibility_internal; #endif // !defined(_di_f_string_map_multis_decrease_by_) || !defined(_di_f_string_map_multis_increase_) || !defined(_di_f_string_map_multis_increase_by_) || !defined(_di_f_string_map_multis_terminate_) || !defined(_di_f_string_map_multis_terminate_after_) /** @@ -298,7 +298,7 @@ extern "C" { * @see private_f_string_dynamic_adjust() */ #if !defined(_di_f_string_maps_adjust_) || !defined(_di_f_string_maps_decimate_by_) - extern f_status_t private_f_string_maps_adjust(const f_string_length_t length, f_string_maps_t *maps) f_gcc_attribute_visibility_internal; + extern f_status_t private_f_string_maps_adjust(const f_array_length_t length, f_string_maps_t *maps) f_gcc_attribute_visibility_internal; #endif // !defined(_di_f_string_maps_adjust_) || !defined(_di_f_string_maps_decimate_by_) /** @@ -327,7 +327,7 @@ extern "C" { * @see private_f_string_dynamic_resize() */ #if !defined(_di_f_string_maps_decrease_by_) || !defined(_di_f_string_maps_increase_) || !defined(_di_f_string_maps_increase_by_) || !defined(_di_f_string_maps_terminate_) || !defined(_di_f_string_maps_terminate_after_) - extern f_status_t private_f_string_maps_resize(const f_string_length_t length, f_string_maps_t *maps) f_gcc_attribute_visibility_internal; + extern f_status_t private_f_string_maps_resize(const f_array_length_t length, f_string_maps_t *maps) f_gcc_attribute_visibility_internal; #endif // !defined(_di_f_string_maps_decrease_by_) || !defined(_di_f_string_maps_increase_) || !defined(_di_f_string_maps_increase_by_) || !defined(_di_f_string_maps_terminate_) || !defined(_di_f_string_maps_terminate_after_) /** @@ -426,7 +426,7 @@ extern "C" { * @see private_f_string_dynamic_adjust() */ #if !defined(_di_f_string_quantitys_adjust_) || !defined(_di_f_string_quantitys_decimate_by_) - extern f_status_t private_f_string_quantitys_adjust(const f_string_length_t length, f_string_quantitys_t *quantitys) f_gcc_attribute_visibility_internal; + extern f_status_t private_f_string_quantitys_adjust(const f_array_length_t length, f_string_quantitys_t *quantitys) f_gcc_attribute_visibility_internal; #endif // !defined(_di_f_string_quantitys_adjust_) || !defined(_di_f_string_quantitys_decimate_by_) /** @@ -454,7 +454,7 @@ extern "C" { * @see private_f_string_dynamic_resize() */ #if !defined(_di_f_string_quantitys_decrease_by_) || !defined(_di_f_string_quantitys_increase_) || !defined(_di_f_string_quantitys_increase_by_) || !defined(_di_f_string_quantitys_terminate_) || !defined(_di_f_string_quantitys_terminate_after_) - extern f_status_t private_f_string_quantitys_resize(const f_string_length_t length, f_string_quantitys_t *quantitys) f_gcc_attribute_visibility_internal; + extern f_status_t private_f_string_quantitys_resize(const f_array_length_t length, f_string_quantitys_t *quantitys) f_gcc_attribute_visibility_internal; #endif // !defined(_di_f_string_quantitys_decrease_by_) || !defined(_di_f_string_quantitys_increase_) || !defined(_di_f_string_quantitys_increase_by_) || !defined(_di_f_string_quantitys_terminate_) || !defined(_di_f_string_quantitys_terminate_after_) /** @@ -479,7 +479,7 @@ extern "C" { * @see private_f_string_dynamic_adjust() */ #if !defined(_di_f_string_quantityss_adjust_) || !defined(_di_f_string_quantityss_decimate_by_) - extern f_status_t private_f_string_quantityss_adjust(const f_string_length_t length, f_string_quantityss_t *quantityss) f_gcc_attribute_visibility_internal; + extern f_status_t private_f_string_quantityss_adjust(const f_array_length_t length, f_string_quantityss_t *quantityss) f_gcc_attribute_visibility_internal; #endif // !defined(_di_f_string_quantityss_adjust_) || !defined(_di_f_string_quantityss_decimate_by_) /** @@ -507,7 +507,7 @@ extern "C" { * @see private_f_string_dynamic_resize() */ #if !defined(_di_f_string_quantityss_decrease_by_) || !defined(_di_f_string_quantityss_increase_) || !defined(_di_f_string_quantityss_increase_by_) || !defined(_di_f_string_quantityss_terminate_) || !defined(_di_f_string_quantityss_terminate_after_) - extern f_status_t private_f_string_quantityss_resize(const f_string_length_t length, f_string_quantityss_t *quantityss) f_gcc_attribute_visibility_internal; + extern f_status_t private_f_string_quantityss_resize(const f_array_length_t length, f_string_quantityss_t *quantityss) f_gcc_attribute_visibility_internal; #endif // !defined(_di_f_string_quantityss_decrease_by_) || !defined(_di_f_string_quantityss_increase_) || !defined(_di_f_string_quantityss_increase_by_) || !defined(_di_f_string_quantityss_terminate_) || !defined(_di_f_string_quantityss_terminate_after_) /** @@ -532,7 +532,7 @@ extern "C" { * @see private_f_string_dynamic_adjust() */ #if !defined(_di_f_string_ranges_adjust_) || !defined(_di_f_string_ranges_decimate_by_) - extern f_status_t private_f_string_ranges_adjust(const f_string_length_t length, f_string_ranges_t *ranges) f_gcc_attribute_visibility_internal; + extern f_status_t private_f_string_ranges_adjust(const f_array_length_t length, f_string_ranges_t *ranges) f_gcc_attribute_visibility_internal; #endif // !defined(_di_f_string_ranges_adjust_) || !defined(_di_f_string_ranges_decimate_by_) /** @@ -560,7 +560,7 @@ extern "C" { * @see private_f_string_dynamic_resize() */ #if !defined(_di_f_string_ranges_decrease_by_) || !defined(_di_f_string_ranges_increase_) || !defined(_di_f_string_ranges_increase_by_) || !defined(_di_f_string_ranges_terminate_) || !defined(_di_f_string_ranges_terminate_after_) - extern f_status_t private_f_string_ranges_resize(const f_string_length_t length, f_string_ranges_t *ranges) f_gcc_attribute_visibility_internal; + extern f_status_t private_f_string_ranges_resize(const f_array_length_t length, f_string_ranges_t *ranges) f_gcc_attribute_visibility_internal; #endif // !defined(_di_f_string_ranges_decrease_by_) || !defined(_di_f_string_ranges_increase_) || !defined(_di_f_string_ranges_increase_by_) || !defined(_di_f_string_ranges_terminate_) || !defined(_di_f_string_ranges_terminate_after_) /** @@ -585,7 +585,7 @@ extern "C" { * @see private_f_string_dynamic_adjust() */ #if !defined(_di_f_string_rangess_adjust_) || !defined(_di_f_string_rangess_decimate_by_) - extern f_status_t private_f_string_rangess_adjust(const f_string_length_t length, f_string_rangess_t *rangess) f_gcc_attribute_visibility_internal; + extern f_status_t private_f_string_rangess_adjust(const f_array_length_t length, f_string_rangess_t *rangess) f_gcc_attribute_visibility_internal; #endif // !defined(_di_f_string_rangess_adjust_) || !defined(_di_f_string_rangess_decimate_by_) /** @@ -613,7 +613,7 @@ extern "C" { * @see private_f_string_dynamic_resize() */ #if !defined(_di_f_string_rangess_decrease_by_) || !defined(_di_f_string_rangess_increase_) || !defined(_di_f_string_rangess_increase_by_) || !defined(_di_f_string_rangess_terminate_) || !defined(_di_f_string_rangess_terminate_after_) - extern f_status_t private_f_string_rangess_resize(const f_string_length_t length, f_string_rangess_t *rangess) f_gcc_attribute_visibility_internal; + extern f_status_t private_f_string_rangess_resize(const f_array_length_t length, f_string_rangess_t *rangess) f_gcc_attribute_visibility_internal; #endif // !defined(_di_f_string_rangess_decrease_by_) || !defined(_di_f_string_rangess_increase_) || !defined(_di_f_string_rangess_increase_by_) || !defined(_di_f_string_rangess_terminate_) || !defined(_di_f_string_rangess_terminate_after_) /** @@ -638,7 +638,7 @@ extern "C" { * @see private_f_string_dynamic_adjust() */ #if !defined(_di_f_string_triples_adjust_) || !defined(_di_f_string_triples_decimate_by_) - extern f_status_t private_f_string_triples_adjust(const f_string_length_t length, f_string_triples_t *triples) f_gcc_attribute_visibility_internal; + extern f_status_t private_f_string_triples_adjust(const f_array_length_t length, f_string_triples_t *triples) f_gcc_attribute_visibility_internal; #endif // !defined(_di_f_string_triples_adjust_) || !defined(_di_f_string_triples_decimate_by_) /** @@ -666,7 +666,7 @@ extern "C" { * @see private_f_string_dynamic_resize() */ #if !defined(_di_f_string_triples_decrease_by_) || !defined(_di_f_string_triples_increase_) || !defined(_di_f_string_triples_increase_by_) || !defined(_di_f_string_triples_terminate_) || !defined(_di_f_string_triples_terminate_after_) - extern f_status_t private_f_string_triples_resize(const f_string_length_t length, f_string_triples_t *triples) f_gcc_attribute_visibility_internal; + extern f_status_t private_f_string_triples_resize(const f_array_length_t length, f_string_triples_t *triples) f_gcc_attribute_visibility_internal; #endif // !defined(_di_f_string_triples_decrease_by_) || !defined(_di_f_string_triples_increase_) || !defined(_di_f_string_triples_increase_by_) || !defined(_di_f_string_triples_terminate_) || !defined(_di_f_string_triples_terminate_after_) #ifdef __cplusplus diff --git a/level_0/f_string/c/string_dynamic.c b/level_0/f_string/c/string_dynamic.c index ec2de97..bc9bf5d 100644 --- a/level_0/f_string/c/string_dynamic.c +++ b/level_0/f_string/c/string_dynamic.c @@ -94,7 +94,7 @@ extern "C" { #endif // _di_f_string_dynamic_resize_ #ifndef _di_f_string_dynamics_adjust_ - f_status_t f_string_dynamics_adjust(const f_string_length_t length, f_string_dynamics_t *dynamics) { + f_status_t f_string_dynamics_adjust(const f_array_length_t length, f_string_dynamics_t *dynamics) { #ifndef _di_level_0_parameter_checking_ if (!dynamics) return F_status_set_error(F_parameter); #endif // _di_level_0_parameter_checking_ @@ -176,7 +176,7 @@ extern "C" { #endif // _di_f_string_dynamics_increase_by_ #ifndef _di_f_string_dynamics_resize_ - f_status_t f_string_dynamics_resize(const f_string_length_t length, f_string_dynamics_t *dynamics) { + f_status_t f_string_dynamics_resize(const f_array_length_t length, f_string_dynamics_t *dynamics) { #ifndef _di_level_0_parameter_checking_ if (!dynamics) return F_status_set_error(F_parameter); #endif // _di_level_0_parameter_checking_ diff --git a/level_0/f_string/c/string_dynamic.h b/level_0/f_string/c/string_dynamic.h index e63b7c6..ca2f92c 100644 --- a/level_0/f_string/c/string_dynamic.h +++ b/level_0/f_string/c/string_dynamic.h @@ -144,7 +144,7 @@ extern "C" { * F_parameter (with error bit) if a parameter is invalid. */ #ifndef _di_f_string_dynamic_adjust_ - extern f_status_t f_string_dynamic_adjust(const f_array_length_t length, f_string_dynamic_t *dynamic); + extern f_status_t f_string_dynamic_adjust(const f_string_length_t length, f_string_dynamic_t *dynamic); #endif // _di_f_string_dynamic_adjust_ /** @@ -233,7 +233,7 @@ extern "C" { * F_parameter (with error bit) if a parameter is invalid. */ #ifndef _di_f_string_dynamic_resize_ - extern f_status_t f_string_dynamic_resize(const f_array_length_t length, f_string_dynamic_t *dynamic); + extern f_status_t f_string_dynamic_resize(const f_string_length_t length, f_string_dynamic_t *dynamic); #endif // _di_f_string_dynamic_resize_ /** diff --git a/level_0/f_string/c/string_map.c b/level_0/f_string/c/string_map.c index d3a6cde..b88374f 100644 --- a/level_0/f_string/c/string_map.c +++ b/level_0/f_string/c/string_map.c @@ -6,7 +6,7 @@ extern "C" { #endif #ifndef _di_f_string_map_multis_adjust_ - f_status_t f_string_map_multis_adjust(const f_string_length_t length, f_string_map_multis_t *map_multis) { + f_status_t f_string_map_multis_adjust(const f_array_length_t length, f_string_map_multis_t *map_multis) { #ifndef _di_level_0_parameter_checking_ if (!map_multis) return F_status_set_error(F_parameter); #endif // _di_level_0_parameter_checking_ @@ -89,7 +89,7 @@ extern "C" { #endif // _di_f_string_map_multis_increase_by_ #ifndef _di_f_string_map_multis_resize_ - f_status_t f_string_map_multis_resize(const f_string_length_t length, f_string_map_multis_t *map_multis) { + f_status_t f_string_map_multis_resize(const f_array_length_t length, f_string_map_multis_t *map_multis) { #ifndef _di_level_0_parameter_checking_ if (!map_multis) return F_status_set_error(F_parameter); #endif // _di_level_0_parameter_checking_ @@ -99,7 +99,7 @@ extern "C" { #endif // _di_f_string_map_multis_resize_ #ifndef _di_f_string_maps_adjust_ - f_status_t f_string_maps_adjust(const f_string_length_t length, f_string_maps_t *maps) { + f_status_t f_string_maps_adjust(const f_array_length_t length, f_string_maps_t *maps) { #ifndef _di_level_0_parameter_checking_ if (!maps) return F_status_set_error(F_parameter); #endif // _di_level_0_parameter_checking_ @@ -182,7 +182,7 @@ extern "C" { #endif // _di_f_string_maps_increase_by_ #ifndef _di_f_string_maps_resize_ - f_status_t f_string_maps_resize(const f_string_length_t length, f_string_maps_t *maps) { + f_status_t f_string_maps_resize(const f_array_length_t length, f_string_maps_t *maps) { #ifndef _di_level_0_parameter_checking_ if (!maps) return F_status_set_error(F_parameter); #endif // _di_level_0_parameter_checking_ diff --git a/level_0/f_string/c/string_quantity.c b/level_0/f_string/c/string_quantity.c index 88e83f9..c869ccf 100644 --- a/level_0/f_string/c/string_quantity.c +++ b/level_0/f_string/c/string_quantity.c @@ -6,7 +6,7 @@ extern "C" { #endif #ifndef _di_f_string_quantitys_adjust_ - f_status_t f_string_quantitys_adjust(const f_string_length_t length, f_string_quantitys_t *quantitys) { + f_status_t f_string_quantitys_adjust(const f_array_length_t length, f_string_quantitys_t *quantitys) { #ifndef _di_level_0_parameter_checking_ if (!quantitys) return F_status_set_error(F_parameter); #endif // _di_level_0_parameter_checking_ @@ -89,7 +89,7 @@ extern "C" { #endif // _di_f_string_quantitys_increase_by_ #ifndef _di_f_string_quantitys_resize_ - f_status_t f_string_quantitys_resize(const f_string_length_t length, f_string_quantitys_t *quantitys) { + f_status_t f_string_quantitys_resize(const f_array_length_t length, f_string_quantitys_t *quantitys) { #ifndef _di_level_0_parameter_checking_ if (!quantitys) return F_status_set_error(F_parameter); #endif // _di_level_0_parameter_checking_ @@ -99,7 +99,7 @@ extern "C" { #endif // _di_f_string_quantitys_resize_ #ifndef _di_f_string_quantityss_adjust_ - f_status_t f_string_quantityss_adjust(const f_string_length_t length, f_string_quantityss_t *quantityss) { + f_status_t f_string_quantityss_adjust(const f_array_length_t length, f_string_quantityss_t *quantityss) { #ifndef _di_level_0_parameter_checking_ if (!quantityss) return F_status_set_error(F_parameter); #endif // _di_level_0_parameter_checking_ @@ -182,7 +182,7 @@ extern "C" { #endif // _di_f_string_quantityss_increase_by_ #ifndef _di_f_string_quantityss_resize_ - f_status_t f_string_quantityss_resize(const f_string_length_t length, f_string_quantityss_t *quantityss) { + f_status_t f_string_quantityss_resize(const f_array_length_t length, f_string_quantityss_t *quantityss) { #ifndef _di_level_0_parameter_checking_ if (!quantityss) return F_status_set_error(F_parameter); #endif // _di_level_0_parameter_checking_ diff --git a/level_0/f_string/c/string_range.c b/level_0/f_string/c/string_range.c index 8cc3b20..f4b4939 100644 --- a/level_0/f_string/c/string_range.c +++ b/level_0/f_string/c/string_range.c @@ -6,7 +6,7 @@ extern "C" { #endif #ifndef _di_f_string_ranges_adjust_ - f_status_t f_string_ranges_adjust(const f_string_length_t length, f_string_ranges_t *ranges) { + f_status_t f_string_ranges_adjust(const f_array_length_t length, f_string_ranges_t *ranges) { #ifndef _di_level_0_parameter_checking_ if (!ranges) return F_status_set_error(F_parameter); #endif // _di_level_0_parameter_checking_ @@ -89,7 +89,7 @@ extern "C" { #endif // _di_f_string_ranges_increase_by_ #ifndef _di_f_string_ranges_resize_ - f_status_t f_string_ranges_resize(const f_string_length_t length, f_string_ranges_t *ranges) { + f_status_t f_string_ranges_resize(const f_array_length_t length, f_string_ranges_t *ranges) { #ifndef _di_level_0_parameter_checking_ if (!ranges) return F_status_set_error(F_parameter); #endif // _di_level_0_parameter_checking_ @@ -99,7 +99,7 @@ extern "C" { #endif // _di_f_string_ranges_resize_ #ifndef _di_f_string_rangess_adjust_ - f_status_t f_string_rangess_adjust(const f_string_length_t length, f_string_rangess_t *rangess) { + f_status_t f_string_rangess_adjust(const f_array_length_t length, f_string_rangess_t *rangess) { #ifndef _di_level_0_parameter_checking_ if (!rangess) return F_status_set_error(F_parameter); #endif // _di_level_0_parameter_checking_ @@ -182,7 +182,7 @@ extern "C" { #endif // _di_f_string_rangess_increase_by_ #ifndef _di_f_string_rangess_resize_ - f_status_t f_string_rangess_resize(const f_string_length_t length, f_string_rangess_t *rangess) { + f_status_t f_string_rangess_resize(const f_array_length_t length, f_string_rangess_t *rangess) { #ifndef _di_level_0_parameter_checking_ if (!rangess) return F_status_set_error(F_parameter); #endif // _di_level_0_parameter_checking_ diff --git a/level_0/f_string/c/string_triple.c b/level_0/f_string/c/string_triple.c index 650168c..59c2da9 100644 --- a/level_0/f_string/c/string_triple.c +++ b/level_0/f_string/c/string_triple.c @@ -6,7 +6,7 @@ extern "C" { #endif #ifndef _di_f_string_triples_adjust_ - f_status_t f_string_triples_adjust(const f_string_length_t length, f_string_triples_t *triples) { + f_status_t f_string_triples_adjust(const f_array_length_t length, f_string_triples_t *triples) { #ifndef _di_level_0_parameter_checking_ if (!triples) return F_status_set_error(F_parameter); #endif // _di_level_0_parameter_checking_ @@ -89,7 +89,7 @@ extern "C" { #endif // _di_f_string_triples_increase_by_ #ifndef _di_f_string_triples_resize_ - f_status_t f_string_triples_resize(const f_string_length_t length, f_string_triples_t *triples) { + f_status_t f_string_triples_resize(const f_array_length_t length, f_string_triples_t *triples) { #ifndef _di_level_0_parameter_checking_ if (!triples) return F_status_set_error(F_parameter); #endif // _di_level_0_parameter_checking_ diff --git a/level_0/f_utf/c/private-utf.c b/level_0/f_utf/c/private-utf.c index 13961fd..5dd5878 100644 --- a/level_0/f_utf/c/private-utf.c +++ b/level_0/f_utf/c/private-utf.c @@ -2329,7 +2329,7 @@ extern "C" { #endif // !defined(_di_f_utf_string_dynamic_decrease_by_) || !defined(_di_f_utf_string_dynamic_increase_) || !defined(_di_f_utf_string_dynamic_increase_by_) || !defined(_di_f_utf_string_dynamic_terminate_) || !defined(_di_f_utf_string_dynamic_terminate_after_) #if !defined(_di_f_utf_string_dynamics_adjust_) || !defined(_di_f_utf_string_dynamics_decimate_by_) - f_status_t private_f_utf_string_dynamics_adjust(const f_string_length_t length, f_utf_string_dynamics_t *dynamics) { + f_status_t private_f_utf_string_dynamics_adjust(const f_array_length_t length, f_utf_string_dynamics_t *dynamics) { f_status_t status = F_none; for (f_array_length_t i = length; i < dynamics->size; ++i) { @@ -2352,7 +2352,7 @@ extern "C" { #endif // !defined(_di_f_utf_string_dynamics_adjust_) || !defined(_di_f_utf_string_dynamics_decimate_by_) #if !defined(_di_f_utf_string_dynamics_decrease_by_) || !defined(_di_f_utf_string_dynamics_increase_) || !defined(_di_f_utf_string_dynamics_increase_by_) - f_status_t private_f_utf_string_dynamics_resize(const f_string_length_t length, f_utf_string_dynamics_t *dynamics) { + f_status_t private_f_utf_string_dynamics_resize(const f_array_length_t length, f_utf_string_dynamics_t *dynamics) { f_status_t status = F_none; for (f_array_length_t i = length; i < dynamics->size; ++i) { @@ -2375,7 +2375,7 @@ extern "C" { #endif // !defined(_di_f_utf_string_dynamics_decrease_by_) || !defined(_di_f_utf_string_dynamics_increase_) || !defined(_di_f_utf_string_dynamics_increase_by_) #if !defined(_di_f_utf_string_map_multis_adjust_) || !defined(_di_f_utf_string_map_multis_decimate_by_) - f_status_t private_f_utf_string_map_multis_adjust(const f_string_length_t length, f_utf_string_map_multis_t *map_multis) { + f_status_t private_f_utf_string_map_multis_adjust(const f_array_length_t length, f_utf_string_map_multis_t *map_multis) { f_status_t status = F_none; for (f_array_length_t i = length; i < map_multis->size; ++i) { @@ -2402,7 +2402,7 @@ extern "C" { #endif // !defined(_di_f_utf_string_map_multis_adjust_) || !defined(_di_f_utf_string_map_multis_decimate_by_) #if !defined(_di_f_utf_string_map_multis_decrease_by_) || !defined(_di_f_utf_string_map_multis_increase_) || !defined(_di_f_utf_string_map_multis_increase_by_) || !defined(_di_f_utf_string_map_multis_terminate_) || !defined(_di_f_utf_string_map_multis_terminate_after_) - f_status_t private_f_utf_string_map_multis_resize(const f_string_length_t length, f_utf_string_map_multis_t *map_multis) { + f_status_t private_f_utf_string_map_multis_resize(const f_array_length_t length, f_utf_string_map_multis_t *map_multis) { f_status_t status = F_none; for (f_array_length_t i = length; i < map_multis->size; ++i) { @@ -2429,7 +2429,7 @@ extern "C" { #endif // !defined(_di_f_utf_string_map_multis_decrease_by_) || !defined(_di_f_utf_string_map_multis_increase_) || !defined(_di_f_utf_string_map_multis_increase_by_) || !defined(_di_f_utf_string_map_multis_terminate_) || !defined(_di_f_utf_string_map_multis_terminate_after_) #if !defined(_di_f_utf_string_maps_adjust_) || !defined(_di_f_utf_string_maps_decimate_by_) - f_status_t private_f_utf_string_maps_adjust(const f_string_length_t length, f_utf_string_maps_t *maps) { + f_status_t private_f_utf_string_maps_adjust(const f_array_length_t length, f_utf_string_maps_t *maps) { f_status_t status = F_none; for (f_array_length_t i = length; i < maps->size; ++i) { @@ -2456,7 +2456,7 @@ extern "C" { #endif // !defined(_di_f_utf_string_maps_adjust_) || !defined(_di_f_utf_string_maps_decimate_by_) #if !defined(_di_f_utf_string_maps_decrease_by_) || !defined(_di_f_utf_string_maps_increase_) || !defined(_di_f_utf_string_maps_increase_by_) || !defined(_di_f_utf_string_maps_terminate_) || !defined(_di_f_utf_string_maps_terminate_after_) - f_status_t private_f_utf_string_maps_resize(const f_string_length_t length, f_utf_string_maps_t *maps) { + f_status_t private_f_utf_string_maps_resize(const f_array_length_t length, f_utf_string_maps_t *maps) { f_status_t status = F_none; for (f_array_length_t i = length; i < maps->size; ++i) { @@ -2574,7 +2574,7 @@ extern "C" { #endif // !defined(_di_f_utf_string_dynamic_mish_nulless_) || !defined(_di_f_utf_string_dynamic_partial_mish_nulless_) || !defined(_di_f_utf_string_dynamic_partial_prepend_assure_nulless_) || !defined(_di_f_utf_string_dynamic_partial_prepend_nulless_) || !defined(_di_f_utf_string_dynamic_prepend_assure_nulless_) || !defined(_di_f_utf_string_dynamic_prepend_nulless_) || !defined(_di_f_utf_string_mish_nulless_) || !defined(_di_f_utf_string_prepend_assure_nulless_) || !defined(_di_f_utf_string_prepend_nulless_) #if !defined(_di_f_utf_string_quantitys_adjust_) || !defined(_di_f_utf_string_quantitys_decimate_by_) - f_status_t private_f_utf_string_quantitys_adjust(const f_string_length_t length, f_utf_string_quantitys_t *quantitys) { + f_status_t private_f_utf_string_quantitys_adjust(const f_array_length_t length, f_utf_string_quantitys_t *quantitys) { const f_status_t status = f_memory_adjust(quantitys->size, length, sizeof(f_utf_string_quantity_t), (void **) & quantitys->array); @@ -2591,7 +2591,7 @@ extern "C" { #endif // !defined(_di_f_utf_string_quantitys_adjust_) || !defined(_di_f_utf_string_quantitys_decimate_by_) #if !defined(_di_f_utf_string_quantitys_decrease_) || !defined(_di_f_utf_string_quantitys_decrease_by_) || !defined(_di_f_utf_string_quantitys_increase_) || !defined(_di_f_utf_string_quantitys_increase_by_) || !defined(_di_f_utf_string_quantitys_terminate_) || !defined(_di_f_utf_string_quantitys_terminate_after_) - f_status_t private_f_utf_string_quantitys_resize(const f_string_length_t length, f_utf_string_quantitys_t *quantitys) { + f_status_t private_f_utf_string_quantitys_resize(const f_array_length_t length, f_utf_string_quantitys_t *quantitys) { const f_status_t status = f_memory_resize(quantitys->size, length, sizeof(f_utf_string_quantity_t), (void **) & quantitys->array); @@ -2608,7 +2608,7 @@ extern "C" { #endif // !defined(_di_f_utf_string_quantitys_decrease_) || !defined(_di_f_utf_string_quantitys_decrease_by_) || !defined(_di_f_utf_string_quantitys_increase_) || !defined(_di_f_utf_string_quantitys_increase_by_) || !defined(_di_f_utf_string_quantitys_terminate_) || !defined(_di_f_utf_string_quantitys_terminate_after_) #if !defined(_di_f_utf_string_quantityss_adjust_) || !defined(_di_f_utf_string_quantityss_decimate_by_) - f_status_t private_f_utf_string_quantityss_adjust(const f_string_length_t length, f_utf_string_quantityss_t *quantityss) { + f_status_t private_f_utf_string_quantityss_adjust(const f_array_length_t length, f_utf_string_quantityss_t *quantityss) { f_status_t status = F_none; for (f_array_length_t i = length; i < quantityss->size; ++i) { @@ -2631,7 +2631,7 @@ extern "C" { #endif // !defined(_di_f_utf_string_quantityss_adjust_) || !defined(_di_f_utf_string_quantityss_decimate_by_) #if !defined(_di_f_utf_string_quantityss_decrease_) || !defined(_di_f_utf_string_quantityss_decrease_by_) || !defined(_di_f_utf_string_quantityss_increase_) || !defined(_di_f_utf_string_quantityss_increase_by_) || !defined(_di_f_utf_string_quantityss_terminate_) || !defined(_di_f_utf_string_quantityss_terminate_after_) - f_status_t private_f_utf_string_quantityss_resize(const f_string_length_t length, f_utf_string_quantityss_t *quantityss) { + f_status_t private_f_utf_string_quantityss_resize(const f_array_length_t length, f_utf_string_quantityss_t *quantityss) { f_status_t status = F_none; for (f_array_length_t i = length; i < quantityss->size; ++i) { @@ -2654,7 +2654,7 @@ extern "C" { #endif // !defined(_di_f_utf_string_quantityss_decrease_) || !defined(_di_f_utf_string_quantityss_decrease_by_) || !defined(_di_f_utf_string_quantityss_increase_) || !defined(_di_f_utf_string_quantityss_increase_by_) || !defined(_di_f_utf_string_quantityss_terminate_) || !defined(_di_f_utf_string_quantityss_terminate_after_) #if !defined(_di_f_utf_string_ranges_adjust_) || !defined(_di_f_utf_string_ranges_decimate_by_) - f_status_t private_f_utf_string_ranges_adjust(const f_string_length_t length, f_utf_string_ranges_t *ranges) { + f_status_t private_f_utf_string_ranges_adjust(const f_array_length_t length, f_utf_string_ranges_t *ranges) { const f_status_t status = f_memory_adjust(ranges->size, length, sizeof(f_utf_string_range_t), (void **) & ranges->array); @@ -2671,7 +2671,7 @@ extern "C" { #endif // !defined(_di_f_utf_string_ranges_adjust_) || !defined(_di_f_utf_string_ranges_decimate_by_) #if !defined(_di_f_utf_string_ranges_decrease_) || !defined(_di_f_utf_string_ranges_decrease_by_) || !defined(_di_f_utf_string_ranges_increase_) || !defined(_di_f_utf_string_ranges_increase_by_) || !defined(_di_f_utf_string_ranges_terminate_) || !defined(_di_f_utf_string_ranges_terminate_after_) - f_status_t private_f_utf_string_ranges_resize(const f_string_length_t length, f_utf_string_ranges_t *ranges) { + f_status_t private_f_utf_string_ranges_resize(const f_array_length_t length, f_utf_string_ranges_t *ranges) { const f_status_t status = f_memory_resize(ranges->size, length, sizeof(f_utf_string_range_t), (void **) & ranges->array); @@ -2688,7 +2688,7 @@ extern "C" { #endif // !defined(_di_f_utf_string_ranges_decrease_) || !defined(_di_f_utf_string_ranges_decrease_by_) || !defined(_di_f_utf_string_ranges_increase_) || !defined(_di_f_utf_string_ranges_increase_by_) || !defined(_di_f_utf_string_ranges_terminate_) || !defined(_di_f_utf_string_ranges_terminate_after_) #if !defined(_di_f_utf_string_rangess_adjust_) || !defined(_di_f_utf_string_rangess_decimate_by_) - f_status_t private_f_utf_string_rangess_adjust(const f_string_length_t length, f_utf_string_rangess_t *rangess) { + f_status_t private_f_utf_string_rangess_adjust(const f_array_length_t length, f_utf_string_rangess_t *rangess) { f_status_t status = F_none; for (f_array_length_t i = length; i < rangess->size; ++i) { @@ -2711,7 +2711,7 @@ extern "C" { #endif // !defined(_di_f_utf_string_rangess_adjust_) || !defined(_di_f_utf_string_rangess_decimate_by_) #if !defined(_di_f_utf_string_rangess_decrease_) || !defined(_di_f_utf_string_rangess_decrease_by_) || !defined(_di_f_utf_string_rangess_increase_) || !defined(_di_f_utf_string_rangess_increase_by_) || !defined(_di_f_utf_string_rangess_terminate_) || !defined(_di_f_utf_string_rangess_terminate_after_) - f_status_t private_f_utf_string_rangess_resize(const f_string_length_t length, f_utf_string_rangess_t *rangess) { + f_status_t private_f_utf_string_rangess_resize(const f_array_length_t length, f_utf_string_rangess_t *rangess) { f_status_t status = F_none; for (f_array_length_t i = length; i < rangess->size; ++i) { @@ -2734,7 +2734,7 @@ extern "C" { #endif // !defined(_di_f_utf_string_rangess_decrease_) || !defined(_di_f_utf_string_rangess_decrease_by_) || !defined(_di_f_utf_string_rangess_increase_) || !defined(_di_f_utf_string_rangess_increase_by_) || !defined(_di_f_utf_string_rangess_terminate_) || !defined(_di_f_utf_string_rangess_terminate_after_) #if !defined(_di_f_utf_string_triples_adjust_) || !defined(_di_f_utf_string_triples_decimate_by_) - f_status_t private_f_utf_string_triples_adjust(const f_string_length_t length, f_utf_string_triples_t *triples) { + f_status_t private_f_utf_string_triples_adjust(const f_array_length_t length, f_utf_string_triples_t *triples) { f_status_t status = F_none; for (f_array_length_t i = length; i < triples->size; ++i) { @@ -2764,7 +2764,7 @@ extern "C" { #endif // !defined(_di_f_utf_string_triples_adjust_) || !defined(_di_f_utf_string_triples_decimate_by_) #if !defined(_di_f_utf_string_triples_decrease_) || !defined(_di_f_utf_string_triples_decrease_by_) || !defined(_di_f_utf_string_triples_increase_) || !defined(_di_f_utf_string_triples_increase_by_) || !defined(_di_f_utf_string_triples_terminate_) || !defined(_di_f_utf_string_triples_terminate_after_) - f_status_t private_f_utf_string_triples_resize(const f_string_length_t length, f_utf_string_triples_t *triples) { + f_status_t private_f_utf_string_triples_resize(const f_array_length_t length, f_utf_string_triples_t *triples) { f_status_t status = F_none; for (f_array_length_t i = length; i < triples->size; ++i) { diff --git a/level_0/f_utf/c/private-utf.h b/level_0/f_utf/c/private-utf.h index fb5c1c2..690c2e5 100644 --- a/level_0/f_utf/c/private-utf.h +++ b/level_0/f_utf/c/private-utf.h @@ -712,7 +712,7 @@ extern "C" { * @see private_f_utf_string_dynamic_adjust() */ #if !defined(_di_f_utf_string_dynamics_adjust_) || !defined(_di_f_utf_string_dynamics_decimate_by_) - extern f_status_t private_f_utf_string_dynamics_adjust(const f_string_length_t length, f_utf_string_dynamics_t *strings) f_gcc_attribute_visibility_internal; + extern f_status_t private_f_utf_string_dynamics_adjust(const f_array_length_t length, f_utf_string_dynamics_t *strings) f_gcc_attribute_visibility_internal; #endif // !defined(_di_f_utf_string_dynamics_adjust_) || !defined(_di_f_utf_string_dynamics_decimate_by_) /** @@ -739,7 +739,7 @@ extern "C" { * @see private_f_utf_string_dynamic_resize() */ #if !defined(_di_f_utf_string_dynamics_decrease_by_) || !defined(_di_f_utf_string_dynamics_increase_) || !defined(_di_f_utf_string_dynamics_increase_by_) - extern f_status_t private_f_utf_string_dynamics_resize(const f_string_length_t length, f_utf_string_dynamics_t *strings) f_gcc_attribute_visibility_internal; + extern f_status_t private_f_utf_string_dynamics_resize(const f_array_length_t length, f_utf_string_dynamics_t *strings) f_gcc_attribute_visibility_internal; #endif // !defined(_di_f_utf_string_dynamics_decrease_by_) || !defined(_di_f_utf_string_dynamics_increase_) || !defined(_di_f_utf_string_dynamics_increase_by_) /** @@ -764,7 +764,7 @@ extern "C" { * @see private_f_utf_string_dynamic_adjust() */ #if !defined(_di_f_utf_string_map_multis_adjust_) || !defined(_di_f_utf_string_map_multis_decimate_by_) - extern f_status_t private_f_utf_string_map_multis_adjust(const f_string_length_t length, f_utf_string_map_multis_t *map_multis) f_gcc_attribute_visibility_internal; + extern f_status_t private_f_utf_string_map_multis_adjust(const f_array_length_t length, f_utf_string_map_multis_t *map_multis) f_gcc_attribute_visibility_internal; #endif // !defined(_di_f_utf_string_map_multis_adjust_) || !defined(_di_f_utf_string_map_multis_decimate_by_) /** @@ -793,7 +793,7 @@ extern "C" { * @see private_f_utf_string_dynamic_resize() */ #if !defined(_di_f_utf_string_map_multis_decrease_by_) || !defined(_di_f_utf_string_map_multis_increase_) || !defined(_di_f_utf_string_map_multis_increase_by_) || !defined(_di_f_utf_string_map_multis_terminate_) || !defined(_di_f_utf_string_map_multis_terminate_after_) - extern f_status_t private_f_utf_string_map_multis_resize(const f_string_length_t length, f_utf_string_map_multis_t *map_multis) f_gcc_attribute_visibility_internal; + extern f_status_t private_f_utf_string_map_multis_resize(const f_array_length_t length, f_utf_string_map_multis_t *map_multis) f_gcc_attribute_visibility_internal; #endif // !defined(_di_f_utf_string_map_multis_decrease_by_) || !defined(_di_f_utf_string_map_multis_increase_) || !defined(_di_f_utf_string_map_multis_increase_by_) || !defined(_di_f_utf_string_map_multis_terminate_) || !defined(_di_f_utf_string_map_multis_terminate_after_) /** @@ -818,7 +818,7 @@ extern "C" { * @see private_f_utf_string_dynamic_adjust() */ #if !defined(_di_f_utf_string_maps_adjust_) || !defined(_di_f_utf_string_maps_decimate_by_) - extern f_status_t private_f_utf_string_maps_adjust(const f_string_length_t length, f_utf_string_maps_t *maps) f_gcc_attribute_visibility_internal; + extern f_status_t private_f_utf_string_maps_adjust(const f_array_length_t length, f_utf_string_maps_t *maps) f_gcc_attribute_visibility_internal; #endif // !defined(_di_f_utf_string_maps_adjust_) || !defined(_di_f_utf_string_maps_decimate_by_) /** @@ -847,7 +847,7 @@ extern "C" { * @see private_f_utf_string_dynamic_resize() */ #if !defined(_di_f_utf_string_maps_decrease_by_) || !defined(_di_f_utf_string_maps_increase_) || !defined(_di_f_utf_string_maps_increase_by_) || !defined(_di_f_utf_string_maps_terminate_) || !defined(_di_f_utf_string_maps_terminate_after_) - extern f_status_t private_f_utf_string_maps_resize(const f_string_length_t length, f_utf_string_maps_t *maps) f_gcc_attribute_visibility_internal; + extern f_status_t private_f_utf_string_maps_resize(const f_array_length_t length, f_utf_string_maps_t *maps) f_gcc_attribute_visibility_internal; #endif // !defined(_di_f_utf_string_maps_decrease_by_) || !defined(_di_f_utf_string_maps_increase_) || !defined(_di_f_utf_string_maps_increase_by_) || !defined(_di_f_utf_string_maps_terminate_) || !defined(_di_f_utf_string_maps_terminate_after_) /** @@ -946,7 +946,7 @@ extern "C" { * @see private_f_utf_string_dynamic_adjust() */ #if !defined(_di_f_utf_string_quantitys_adjust_) || !defined(_di_f_utf_string_quantitys_decimate_by_) - extern f_status_t private_f_utf_string_quantitys_adjust(const f_string_length_t length, f_utf_string_quantitys_t *quantitys) f_gcc_attribute_visibility_internal; + extern f_status_t private_f_utf_string_quantitys_adjust(const f_array_length_t length, f_utf_string_quantitys_t *quantitys) f_gcc_attribute_visibility_internal; #endif // !defined(_di_f_utf_string_quantitys_adjust_) || !defined(_di_f_utf_string_quantitys_decimate_by_) /** @@ -974,7 +974,7 @@ extern "C" { * @see private_f_utf_string_dynamic_resize() */ #if !defined(_di_f_utf_string_quantitys_decrease_by_) || !defined(_di_f_utf_string_quantitys_increase_) || !defined(_di_f_utf_string_quantitys_increase_by_) || !defined(_di_f_utf_string_quantitys_terminate_) || !defined(_di_f_utf_string_quantitys_terminate_after_) - extern f_status_t private_f_utf_string_quantitys_resize(const f_string_length_t length, f_utf_string_quantitys_t *quantitys) f_gcc_attribute_visibility_internal; + extern f_status_t private_f_utf_string_quantitys_resize(const f_array_length_t length, f_utf_string_quantitys_t *quantitys) f_gcc_attribute_visibility_internal; #endif // !defined(_di_f_utf_string_quantitys_decrease_by_) || !defined(_di_f_utf_string_quantitys_increase_) || !defined(_di_f_utf_string_quantitys_increase_by_) || !defined(_di_f_utf_string_quantitys_terminate_) || !defined(_di_f_utf_string_quantitys_terminate_after_) /** @@ -999,7 +999,7 @@ extern "C" { * @see private_f_utf_string_dynamic_adjust() */ #if !defined(_di_f_utf_string_quantityss_adjust_) || !defined(_di_f_utf_string_quantityss_decimate_by_) - extern f_status_t private_f_utf_string_quantityss_adjust(const f_string_length_t length, f_utf_string_quantityss_t *quantityss) f_gcc_attribute_visibility_internal; + extern f_status_t private_f_utf_string_quantityss_adjust(const f_array_length_t length, f_utf_string_quantityss_t *quantityss) f_gcc_attribute_visibility_internal; #endif // !defined(_di_f_utf_string_quantityss_adjust_) || !defined(_di_f_utf_string_quantityss_decimate_by_) /** @@ -1027,7 +1027,7 @@ extern "C" { * @see private_f_utf_string_dynamic_resize() */ #if !defined(_di_f_utf_string_quantityss_decrease_by_) || !defined(_di_f_utf_string_quantityss_increase_) || !defined(_di_f_utf_string_quantityss_increase_by_) || !defined(_di_f_utf_string_quantityss_terminate_) || !defined(_di_f_utf_string_quantityss_terminate_after_) - extern f_status_t private_f_utf_string_quantityss_resize(const f_string_length_t length, f_utf_string_quantityss_t *quantityss) f_gcc_attribute_visibility_internal; + extern f_status_t private_f_utf_string_quantityss_resize(const f_array_length_t length, f_utf_string_quantityss_t *quantityss) f_gcc_attribute_visibility_internal; #endif // !defined(_di_f_utf_string_quantityss_decrease_by_) || !defined(_di_f_utf_string_quantityss_increase_) || !defined(_di_f_utf_string_quantityss_increase_by_) || !defined(_di_f_utf_string_quantityss_terminate_) || !defined(_di_f_utf_string_quantityss_terminate_after_) /** @@ -1052,7 +1052,7 @@ extern "C" { * @see private_f_utf_string_dynamic_adjust() */ #if !defined(_di_f_utf_string_ranges_adjust_) || !defined(_di_f_utf_string_ranges_decimate_by_) - extern f_status_t private_f_utf_string_ranges_adjust(const f_string_length_t length, f_utf_string_ranges_t *ranges) f_gcc_attribute_visibility_internal; + extern f_status_t private_f_utf_string_ranges_adjust(const f_array_length_t length, f_utf_string_ranges_t *ranges) f_gcc_attribute_visibility_internal; #endif // !defined(_di_f_utf_string_ranges_adjust_) || !defined(_di_f_utf_string_ranges_decimate_by_) /** @@ -1080,7 +1080,7 @@ extern "C" { * @see private_f_utf_string_dynamic_resize() */ #if !defined(_di_f_utf_string_ranges_decrease_by_) || !defined(_di_f_utf_string_ranges_increase_) || !defined(_di_f_utf_string_ranges_increase_by_) || !defined(_di_f_utf_string_ranges_terminate_) || !defined(_di_f_utf_string_ranges_terminate_after_) - extern f_status_t private_f_utf_string_ranges_resize(const f_string_length_t length, f_utf_string_ranges_t *ranges) f_gcc_attribute_visibility_internal; + extern f_status_t private_f_utf_string_ranges_resize(const f_array_length_t length, f_utf_string_ranges_t *ranges) f_gcc_attribute_visibility_internal; #endif // !defined(_di_f_utf_string_ranges_decrease_by_) || !defined(_di_f_utf_string_ranges_increase_) || !defined(_di_f_utf_string_ranges_increase_by_) || !defined(_di_f_utf_string_ranges_terminate_) || !defined(_di_f_utf_string_ranges_terminate_after_) /** @@ -1105,7 +1105,7 @@ extern "C" { * @see private_f_utf_string_dynamic_adjust() */ #if !defined(_di_f_utf_string_rangess_adjust_) || !defined(_di_f_utf_string_rangess_decimate_by_) - extern f_status_t private_f_utf_string_rangess_adjust(const f_string_length_t length, f_utf_string_rangess_t *rangess) f_gcc_attribute_visibility_internal; + extern f_status_t private_f_utf_string_rangess_adjust(const f_array_length_t length, f_utf_string_rangess_t *rangess) f_gcc_attribute_visibility_internal; #endif // !defined(_di_f_utf_string_rangess_adjust_) || !defined(_di_f_utf_string_rangess_decimate_by_) /** @@ -1133,7 +1133,7 @@ extern "C" { * @see private_f_utf_string_dynamic_resize() */ #if !defined(_di_f_utf_string_rangess_decrease_by_) || !defined(_di_f_utf_string_rangess_increase_) || !defined(_di_f_utf_string_rangess_increase_by_) || !defined(_di_f_utf_string_rangess_terminate_) || !defined(_di_f_utf_string_rangess_terminate_after_) - extern f_status_t private_f_utf_string_rangess_resize(const f_string_length_t length, f_utf_string_rangess_t *rangess) f_gcc_attribute_visibility_internal; + extern f_status_t private_f_utf_string_rangess_resize(const f_array_length_t length, f_utf_string_rangess_t *rangess) f_gcc_attribute_visibility_internal; #endif // !defined(_di_f_utf_string_rangess_decrease_by_) || !defined(_di_f_utf_string_rangess_increase_) || !defined(_di_f_utf_string_rangess_increase_by_) || !defined(_di_f_utf_string_rangess_terminate_) || !defined(_di_f_utf_string_rangess_terminate_after_) /** @@ -1158,7 +1158,7 @@ extern "C" { * @see private_f_utf_string_dynamic_adjust() */ #if !defined(_di_f_utf_string_triples_adjust_) || !defined(_di_f_utf_string_triples_decimate_by_) - extern f_status_t private_f_utf_string_triples_adjust(const f_string_length_t length, f_utf_string_triples_t *triples) f_gcc_attribute_visibility_internal; + extern f_status_t private_f_utf_string_triples_adjust(const f_array_length_t length, f_utf_string_triples_t *triples) f_gcc_attribute_visibility_internal; #endif // !defined(_di_f_utf_string_triples_adjust_) || !defined(_di_f_utf_string_triples_decimate_by_) /** @@ -1186,7 +1186,7 @@ extern "C" { * @see private_f_utf_string_dynamic_resize() */ #if !defined(_di_f_utf_string_triples_decrease_by_) || !defined(_di_f_utf_string_triples_increase_) || !defined(_di_f_utf_string_triples_increase_by_) || !defined(_di_f_utf_string_triples_terminate_) || !defined(_di_f_utf_string_triples_terminate_after_) - extern f_status_t private_f_utf_string_triples_resize(const f_string_length_t length, f_utf_string_triples_t *triples) f_gcc_attribute_visibility_internal; + extern f_status_t private_f_utf_string_triples_resize(const f_array_length_t length, f_utf_string_triples_t *triples) f_gcc_attribute_visibility_internal; #endif // !defined(_di_f_utf_string_triples_decrease_by_) || !defined(_di_f_utf_string_triples_increase_) || !defined(_di_f_utf_string_triples_increase_by_) || !defined(_di_f_utf_string_triples_terminate_) || !defined(_di_f_utf_string_triples_terminate_after_) #ifdef __cplusplus diff --git a/level_0/f_utf/c/utf_dynamic.c b/level_0/f_utf/c/utf_dynamic.c index 87853ad..9e406cf 100644 --- a/level_0/f_utf/c/utf_dynamic.c +++ b/level_0/f_utf/c/utf_dynamic.c @@ -94,7 +94,7 @@ extern "C" { #endif // _di_f_utf_string_dynamic_resize_ #ifndef _di_f_utf_string_dynamics_adjust_ - f_status_t f_utf_string_dynamics_adjust(const f_string_length_t length, f_utf_string_dynamics_t *dynamics) { + f_status_t f_utf_string_dynamics_adjust(const f_array_length_t length, f_utf_string_dynamics_t *dynamics) { #ifndef _di_level_0_parameter_checking_ if (!dynamics) return F_status_set_error(F_parameter); #endif // _di_level_0_parameter_checking_ @@ -176,7 +176,7 @@ extern "C" { #endif // _di_f_utf_string_dynamics_increase_by_ #ifndef _di_f_utf_string_dynamics_resize_ - f_status_t f_utf_string_dynamics_resize(const f_string_length_t length, f_utf_string_dynamics_t *dynamics) { + f_status_t f_utf_string_dynamics_resize(const f_array_length_t length, f_utf_string_dynamics_t *dynamics) { #ifndef _di_level_0_parameter_checking_ if (!dynamics) return F_status_set_error(F_parameter); #endif // _di_level_0_parameter_checking_ diff --git a/level_0/f_utf/c/utf_map.c b/level_0/f_utf/c/utf_map.c index 86d7c58..31ef625 100644 --- a/level_0/f_utf/c/utf_map.c +++ b/level_0/f_utf/c/utf_map.c @@ -6,7 +6,7 @@ extern "C" { #endif #ifndef _di_f_utf_string_map_multis_adjust_ - f_status_t f_utf_string_map_multis_adjust(const f_string_length_t length, f_utf_string_map_multis_t *map_multis) { + f_status_t f_utf_string_map_multis_adjust(const f_array_length_t length, f_utf_string_map_multis_t *map_multis) { #ifndef _di_level_0_parameter_checking_ if (!map_multis) return F_status_set_error(F_parameter); #endif // _di_level_0_parameter_checking_ @@ -89,7 +89,7 @@ extern "C" { #endif // _di_f_utf_string_map_multis_increase_by_ #ifndef _di_f_utf_string_map_multis_resize_ - f_status_t f_utf_string_map_multis_resize(const f_string_length_t length, f_utf_string_map_multis_t *map_multis) { + f_status_t f_utf_string_map_multis_resize(const f_array_length_t length, f_utf_string_map_multis_t *map_multis) { #ifndef _di_level_0_parameter_checking_ if (!map_multis) return F_status_set_error(F_parameter); #endif // _di_level_0_parameter_checking_ @@ -99,7 +99,7 @@ extern "C" { #endif // _di_f_utf_string_map_multis_resize_ #ifndef _di_f_utf_string_maps_adjust_ - f_status_t f_utf_string_maps_adjust(const f_string_length_t length, f_utf_string_maps_t *maps) { + f_status_t f_utf_string_maps_adjust(const f_array_length_t length, f_utf_string_maps_t *maps) { #ifndef _di_level_0_parameter_checking_ if (!maps) return F_status_set_error(F_parameter); #endif // _di_level_0_parameter_checking_ @@ -182,7 +182,7 @@ extern "C" { #endif // _di_f_utf_string_maps_increase_by_ #ifndef _di_f_utf_string_maps_resize_ - f_status_t f_utf_string_maps_resize(const f_string_length_t length, f_utf_string_maps_t *maps) { + f_status_t f_utf_string_maps_resize(const f_array_length_t length, f_utf_string_maps_t *maps) { #ifndef _di_level_0_parameter_checking_ if (!maps) return F_status_set_error(F_parameter); #endif // _di_level_0_parameter_checking_ diff --git a/level_0/f_utf/c/utf_quantity.c b/level_0/f_utf/c/utf_quantity.c index 204c274..399bcbc 100644 --- a/level_0/f_utf/c/utf_quantity.c +++ b/level_0/f_utf/c/utf_quantity.c @@ -6,7 +6,7 @@ extern "C" { #endif #ifndef _di_f_utf_string_quantitys_adjust_ - f_status_t f_utf_string_quantitys_adjust(const f_string_length_t length, f_utf_string_quantitys_t *quantitys) { + f_status_t f_utf_string_quantitys_adjust(const f_array_length_t length, f_utf_string_quantitys_t *quantitys) { #ifndef _di_level_0_parameter_checking_ if (!quantitys) return F_status_set_error(F_parameter); #endif // _di_level_0_parameter_checking_ @@ -89,7 +89,7 @@ extern "C" { #endif // _di_f_utf_string_quantitys_increase_by_ #ifndef _di_f_utf_string_quantitys_resize_ - f_status_t f_utf_string_quantitys_resize(const f_string_length_t length, f_utf_string_quantitys_t *quantitys) { + f_status_t f_utf_string_quantitys_resize(const f_array_length_t length, f_utf_string_quantitys_t *quantitys) { #ifndef _di_level_0_parameter_checking_ if (!quantitys) return F_status_set_error(F_parameter); #endif // _di_level_0_parameter_checking_ @@ -99,7 +99,7 @@ extern "C" { #endif // _di_f_utf_string_quantitys_resize_ #ifndef _di_f_utf_string_quantityss_adjust_ - f_status_t f_utf_string_quantityss_adjust(const f_string_length_t length, f_utf_string_quantityss_t *quantityss) { + f_status_t f_utf_string_quantityss_adjust(const f_array_length_t length, f_utf_string_quantityss_t *quantityss) { #ifndef _di_level_0_parameter_checking_ if (!quantityss) return F_status_set_error(F_parameter); #endif // _di_level_0_parameter_checking_ @@ -182,7 +182,7 @@ extern "C" { #endif // _di_f_utf_string_quantityss_increase_by_ #ifndef _di_f_utf_string_quantityss_resize_ - f_status_t f_utf_string_quantityss_resize(const f_string_length_t length, f_utf_string_quantityss_t *quantityss) { + f_status_t f_utf_string_quantityss_resize(const f_array_length_t length, f_utf_string_quantityss_t *quantityss) { #ifndef _di_level_0_parameter_checking_ if (!quantityss) return F_status_set_error(F_parameter); #endif // _di_level_0_parameter_checking_ diff --git a/level_0/f_utf/c/utf_range.c b/level_0/f_utf/c/utf_range.c index afb2642..3d91a88 100644 --- a/level_0/f_utf/c/utf_range.c +++ b/level_0/f_utf/c/utf_range.c @@ -6,7 +6,7 @@ extern "C" { #endif #ifndef _di_f_utf_string_ranges_adjust_ - f_status_t f_utf_string_ranges_adjust(const f_string_length_t length, f_utf_string_ranges_t *ranges) { + f_status_t f_utf_string_ranges_adjust(const f_array_length_t length, f_utf_string_ranges_t *ranges) { #ifndef _di_level_0_parameter_checking_ if (!ranges) return F_status_set_error(F_parameter); #endif // _di_level_0_parameter_checking_ @@ -89,7 +89,7 @@ extern "C" { #endif // _di_f_utf_string_ranges_increase_by_ #ifndef _di_f_utf_string_ranges_resize_ - f_status_t f_utf_string_ranges_resize(const f_string_length_t length, f_utf_string_ranges_t *ranges) { + f_status_t f_utf_string_ranges_resize(const f_array_length_t length, f_utf_string_ranges_t *ranges) { #ifndef _di_level_0_parameter_checking_ if (!ranges) return F_status_set_error(F_parameter); #endif // _di_level_0_parameter_checking_ @@ -99,7 +99,7 @@ extern "C" { #endif // _di_f_utf_string_ranges_resize_ #ifndef _di_f_utf_string_rangess_adjust_ - f_status_t f_utf_string_rangess_adjust(const f_string_length_t length, f_utf_string_rangess_t *rangess) { + f_status_t f_utf_string_rangess_adjust(const f_array_length_t length, f_utf_string_rangess_t *rangess) { #ifndef _di_level_0_parameter_checking_ if (!rangess) return F_status_set_error(F_parameter); #endif // _di_level_0_parameter_checking_ @@ -182,7 +182,7 @@ extern "C" { #endif // _di_f_utf_string_rangess_increase_by_ #ifndef _di_f_utf_string_rangess_resize_ - f_status_t f_utf_string_rangess_resize(const f_string_length_t length, f_utf_string_rangess_t *rangess) { + f_status_t f_utf_string_rangess_resize(const f_array_length_t length, f_utf_string_rangess_t *rangess) { #ifndef _di_level_0_parameter_checking_ if (!rangess) return F_status_set_error(F_parameter); #endif // _di_level_0_parameter_checking_ diff --git a/level_0/f_utf/c/utf_triple.c b/level_0/f_utf/c/utf_triple.c index e5cf0d7..8061d31 100644 --- a/level_0/f_utf/c/utf_triple.c +++ b/level_0/f_utf/c/utf_triple.c @@ -6,7 +6,7 @@ extern "C" { #endif #ifndef _di_f_utf_string_triples_adjust_ - f_status_t f_utf_string_triples_adjust(const f_string_length_t length, f_utf_string_triples_t *triples) { + f_status_t f_utf_string_triples_adjust(const f_array_length_t length, f_utf_string_triples_t *triples) { #ifndef _di_level_0_parameter_checking_ if (!triples) return F_status_set_error(F_parameter); #endif // _di_level_0_parameter_checking_ @@ -89,7 +89,7 @@ extern "C" { #endif // _di_f_utf_string_triples_increase_by_ #ifndef _di_f_utf_string_triples_resize_ - f_status_t f_utf_string_triples_resize(const f_string_length_t length, f_utf_string_triples_t *triples) { + f_status_t f_utf_string_triples_resize(const f_array_length_t length, f_utf_string_triples_t *triples) { #ifndef _di_level_0_parameter_checking_ if (!triples) return F_status_set_error(F_parameter); #endif // _di_level_0_parameter_checking_ -- 1.8.3.1