]> Kevux Git Server - fll/commitdiff
Refactor: Remove "_type" from f_type_array functions.
authorKevin Day <thekevinday@gmail.com>
Tue, 15 Feb 2022 03:24:44 +0000 (21:24 -0600)
committerKevin Day <thekevinday@gmail.com>
Tue, 15 Feb 2022 06:40:21 +0000 (00:40 -0600)
The f_type_array project is really just an exception case extension of f_type.
It's purpose is to provide the array functions for the associated array structures in f_type.
These cannot be stored in f_type due to circular dependency needs for the f_memory project.

I used f_type_* to prefix these functions but the inconsistency between the structure names has shown to be a problem.
Rename these functions to not have the "_type" within them.

130 files changed:
level_0/f_console/c/console-common.c
level_0/f_console/c/console-common.h
level_0/f_console/c/console.c
level_0/f_iki/c/iki.c
level_0/f_type/c/type.h
level_0/f_type_array/c/type_array-common.h
level_0/f_type_array/c/type_array/array_length.c
level_0/f_type_array/c/type_array/array_length.h
level_0/f_type_array/c/type_array/cell.c
level_0/f_type_array/c/type_array/cell.h
level_0/f_type_array/c/type_array/fll_id.c
level_0/f_type_array/c/type_array/fll_id.h
level_0/f_type_array/c/type_array/int128.c
level_0/f_type_array/c/type_array/int128.h
level_0/f_type_array/c/type_array/int16.c
level_0/f_type_array/c/type_array/int16.h
level_0/f_type_array/c/type_array/int32.c
level_0/f_type_array/c/type_array/int32.h
level_0/f_type_array/c/type_array/int64.c
level_0/f_type_array/c/type_array/int64.h
level_0/f_type_array/c/type_array/int8.c
level_0/f_type_array/c/type_array/int8.h
level_0/f_type_array/c/type_array/private-array_length.c
level_0/f_type_array/c/type_array/private-array_length.h
level_0/f_type_array/c/type_array/private-cell.c
level_0/f_type_array/c/type_array/private-cell.h
level_0/f_type_array/c/type_array/private-fll_id.c
level_0/f_type_array/c/type_array/private-fll_id.h
level_0/f_type_array/c/type_array/private-int128.c
level_0/f_type_array/c/type_array/private-int128.h
level_0/f_type_array/c/type_array/private-int16.c
level_0/f_type_array/c/type_array/private-int16.h
level_0/f_type_array/c/type_array/private-int32.c
level_0/f_type_array/c/type_array/private-int32.h
level_0/f_type_array/c/type_array/private-int64.c
level_0/f_type_array/c/type_array/private-int64.h
level_0/f_type_array/c/type_array/private-int8.c
level_0/f_type_array/c/type_array/private-int8.h
level_0/f_type_array/c/type_array/private-state.c
level_0/f_type_array/c/type_array/private-state.h
level_0/f_type_array/c/type_array/private-status.c
level_0/f_type_array/c/type_array/private-status.h
level_0/f_type_array/c/type_array/state.c
level_0/f_type_array/c/type_array/state.h
level_0/f_type_array/c/type_array/status.c
level_0/f_type_array/c/type_array/status.h
level_0/f_type_array/tests/unit/c/test-type_array-array_lengths_adjust.c
level_0/f_type_array/tests/unit/c/test-type_array-array_lengths_append.c
level_0/f_type_array/tests/unit/c/test-type_array-array_lengths_decimate_by.c
level_0/f_type_array/tests/unit/c/test-type_array-array_lengths_decrease_by.c
level_0/f_type_array/tests/unit/c/test-type_array-array_lengths_increase.c
level_0/f_type_array/tests/unit/c/test-type_array-array_lengths_increase_by.c
level_0/f_type_array/tests/unit/c/test-type_array-array_lengths_resize.c
level_0/f_type_array/tests/unit/c/test-type_array-array_lengthss_adjust.c
level_0/f_type_array/tests/unit/c/test-type_array-array_lengthss_append.c
level_0/f_type_array/tests/unit/c/test-type_array-array_lengthss_decimate_by.c
level_0/f_type_array/tests/unit/c/test-type_array-array_lengthss_decrease_by.c
level_0/f_type_array/tests/unit/c/test-type_array-array_lengthss_increase.c
level_0/f_type_array/tests/unit/c/test-type_array-array_lengthss_increase_by.c
level_0/f_type_array/tests/unit/c/test-type_array-array_lengthss_resize.c
level_0/f_type_array/tests/unit/c/test-type_array-cells_adjust.c
level_0/f_type_array/tests/unit/c/test-type_array-cells_append.c
level_0/f_type_array/tests/unit/c/test-type_array-cells_decimate_by.c
level_0/f_type_array/tests/unit/c/test-type_array-cells_decrease_by.c
level_0/f_type_array/tests/unit/c/test-type_array-cells_increase.c
level_0/f_type_array/tests/unit/c/test-type_array-cells_increase_by.c
level_0/f_type_array/tests/unit/c/test-type_array-cells_resize.c
level_0/f_type_array/tests/unit/c/test-type_array-cellss_adjust.c
level_0/f_type_array/tests/unit/c/test-type_array-cellss_append.c
level_0/f_type_array/tests/unit/c/test-type_array-cellss_decimate_by.c
level_0/f_type_array/tests/unit/c/test-type_array-cellss_decrease_by.c
level_0/f_type_array/tests/unit/c/test-type_array-cellss_increase.c
level_0/f_type_array/tests/unit/c/test-type_array-cellss_increase_by.c
level_0/f_type_array/tests/unit/c/test-type_array-cellss_resize.c
level_0/f_type_array/tests/unit/c/test-type_array-fll_ids_adjust.c
level_0/f_type_array/tests/unit/c/test-type_array-fll_ids_append.c
level_0/f_type_array/tests/unit/c/test-type_array-fll_ids_decimate_by.c
level_0/f_type_array/tests/unit/c/test-type_array-fll_ids_decrease_by.c
level_0/f_type_array/tests/unit/c/test-type_array-fll_ids_increase.c
level_0/f_type_array/tests/unit/c/test-type_array-fll_ids_increase_by.c
level_0/f_type_array/tests/unit/c/test-type_array-fll_ids_resize.c
level_0/f_type_array/tests/unit/c/test-type_array-fll_idss_adjust.c
level_0/f_type_array/tests/unit/c/test-type_array-fll_idss_append.c
level_0/f_type_array/tests/unit/c/test-type_array-fll_idss_decimate_by.c
level_0/f_type_array/tests/unit/c/test-type_array-fll_idss_decrease_by.c
level_0/f_type_array/tests/unit/c/test-type_array-fll_idss_increase.c
level_0/f_type_array/tests/unit/c/test-type_array-fll_idss_increase_by.c
level_0/f_type_array/tests/unit/c/test-type_array-fll_idss_resize.c
level_0/f_type_array/tests/unit/c/test-type_array-states_adjust.c
level_0/f_type_array/tests/unit/c/test-type_array-states_append.c
level_0/f_type_array/tests/unit/c/test-type_array-states_decimate_by.c
level_0/f_type_array/tests/unit/c/test-type_array-states_decrease_by.c
level_0/f_type_array/tests/unit/c/test-type_array-states_increase.c
level_0/f_type_array/tests/unit/c/test-type_array-states_increase_by.c
level_0/f_type_array/tests/unit/c/test-type_array-states_resize.c
level_0/f_type_array/tests/unit/c/test-type_array-statess_adjust.c
level_0/f_type_array/tests/unit/c/test-type_array-statess_append.c
level_0/f_type_array/tests/unit/c/test-type_array-statess_decimate_by.c
level_0/f_type_array/tests/unit/c/test-type_array-statess_decrease_by.c
level_0/f_type_array/tests/unit/c/test-type_array-statess_increase.c
level_0/f_type_array/tests/unit/c/test-type_array-statess_increase_by.c
level_0/f_type_array/tests/unit/c/test-type_array-statess_resize.c
level_0/f_type_array/tests/unit/c/test-type_array-statuss_adjust.c
level_0/f_type_array/tests/unit/c/test-type_array-statuss_append.c
level_0/f_type_array/tests/unit/c/test-type_array-statuss_decimate_by.c
level_0/f_type_array/tests/unit/c/test-type_array-statuss_decrease_by.c
level_0/f_type_array/tests/unit/c/test-type_array-statuss_increase.c
level_0/f_type_array/tests/unit/c/test-type_array-statuss_increase_by.c
level_0/f_type_array/tests/unit/c/test-type_array-statuss_resize.c
level_0/f_type_array/tests/unit/c/test-type_array-statusss_adjust.c
level_0/f_type_array/tests/unit/c/test-type_array-statusss_append.c
level_0/f_type_array/tests/unit/c/test-type_array-statusss_decimate_by.c
level_0/f_type_array/tests/unit/c/test-type_array-statusss_decrease_by.c
level_0/f_type_array/tests/unit/c/test-type_array-statusss_increase.c
level_0/f_type_array/tests/unit/c/test-type_array-statusss_increase_by.c
level_0/f_type_array/tests/unit/c/test-type_array-statusss_resize.c
level_1/fl_fss/c/fss_embedded_list.c
level_2/fll_fss/c/fss.c
level_2/fll_fss/c/fss.h
level_2/fll_fss/c/fss_basic.c
level_2/fll_fss/c/fss_extended.c
level_3/control/c/private-control.c
level_3/controller/c/common/private-cache.c
level_3/controller/c/common/private-process.c
level_3/controller/c/rule/private-rule.c
level_3/controller/c/rule/private-rule.h
level_3/controller/c/thread/private-thread.c
level_3/fake/c/private-make-operate.c
level_3/firewall/c/private-firewall.c
level_3/fss_identify/c/private-identify.c

index f53d98acef7703e9762d648f3715d8a92f94bced..0b05b64ac54655e75184c7c5c8817e959cfa0282 100644 (file)
@@ -48,20 +48,20 @@ extern "C" {
 
     for (f_array_length_t i = 0; i < parameters->used; ++i) {
 
-      status = f_type_array_lengths_resize(0, &parameters->array[i].locations);
+      status = f_array_lengths_resize(0, &parameters->array[i].locations);
       if (F_status_is_error(status)) return status;
 
-      status = f_type_array_lengths_resize(0, &parameters->array[i].locations_sub);
+      status = f_array_lengths_resize(0, &parameters->array[i].locations_sub);
       if (F_status_is_error(status)) return status;
 
-      status = f_type_array_lengths_resize(0, &parameters->array[i].values);
+      status = f_array_lengths_resize(0, &parameters->array[i].values);
       if (F_status_is_error(status)) return status;
     } // for
 
     status = f_string_dynamics_resize(0, &parameters->arguments);
     if (F_status_is_error(status)) return status;
 
-    status = f_type_array_lengths_resize(0, &parameters->remaining);
+    status = f_array_lengths_resize(0, &parameters->remaining);
     if (F_status_is_error(status)) return status;
 
     return F_none;
@@ -78,20 +78,20 @@ extern "C" {
 
     for (f_array_length_t i = 0; i < parameters->used; ++i) {
 
-      status = f_type_array_lengths_adjust(0, &parameters->array[i].locations);
+      status = f_array_lengths_adjust(0, &parameters->array[i].locations);
       if (F_status_is_error(status)) return status;
 
-      status = f_type_array_lengths_adjust(0, &parameters->array[i].locations_sub);
+      status = f_array_lengths_adjust(0, &parameters->array[i].locations_sub);
       if (F_status_is_error(status)) return status;
 
-      status = f_type_array_lengths_adjust(0, &parameters->array[i].values);
+      status = f_array_lengths_adjust(0, &parameters->array[i].values);
       if (F_status_is_error(status)) return status;
     } // for
 
     status = f_string_dynamics_adjust(0, &parameters->arguments);
     if (F_status_is_error(status)) return status;
 
-    status = f_type_array_lengths_adjust(0, &parameters->remaining);
+    status = f_array_lengths_adjust(0, &parameters->remaining);
     if (F_status_is_error(status)) return status;
 
     return F_none;
index 29fc25a0e38d12178f2d8e3309030f977a5cc858..11d84a4cfa513b69bba71626247ad4b9f0281d23 100644 (file)
@@ -408,10 +408,10 @@ extern "C" {
  *   F_parameter (with error bit) if a parameter is invalid.
  *
  *   Errors (with error bit) from: f_string_dynamics_resize().
- *   Errors (with error bit) from: f_type_array_lengths_resize().
+ *   Errors (with error bit) from: f_array_lengths_resize().
  *
  * @see f_string_dynamics_resize()
- * @see f_type_array_lengths_resize()
+ * @see f_array_lengths_resize()
  */
 #ifndef _di_f_console_parameters_delete_
   extern f_status_t f_console_parameters_delete(f_console_parameters_t * const parameters);
@@ -429,10 +429,10 @@ extern "C" {
  *   F_parameter (with error bit) if a parameter is invalid.
  *
  *   Errors (with error bit) from: f_string_dynamics_adjust().
- *   Errors (with error bit) from: f_type_array_lengths_adjust().
+ *   Errors (with error bit) from: f_array_lengths_adjust().
  *
  * @see f_string_dynamics_adjust()
- * @see f_type_array_lengths_adjust()
+ * @see f_array_lengths_adjust()
  */
 #ifndef _di_f_console_parameters_destroy_
   extern f_status_t f_console_parameters_destroy(f_console_parameters_t * const parameters);
index 1393ea4cad90e1bcfd9aad696ef7577f587ef902..87c03a344a201d2cb3931d226f3c096ddac23290 100644 (file)
@@ -202,7 +202,7 @@ extern "C" {
       if (needs_value.used > 0) {
         i = needs_value.array[0];
 
-        status = f_type_array_lengths_increase(F_memory_default_allocation_small_d, &parameters->array[i].values);
+        status = f_array_lengths_increase(F_memory_default_allocation_small_d, &parameters->array[i].values);
         if (F_status_is_error(status)) break;
 
         parameters->array[i].result = f_console_result_additional_e;
@@ -301,10 +301,10 @@ extern "C" {
               continue;
             }
 
-            status = f_type_array_lengths_increase(F_memory_default_allocation_small_d, &parameters->array[i].locations);
+            status = f_array_lengths_increase(F_memory_default_allocation_small_d, &parameters->array[i].locations);
             if (F_status_is_error(status)) break;
 
-            status = f_type_array_lengths_increase(F_memory_default_allocation_small_d, &parameters->array[i].locations_sub);
+            status = f_array_lengths_increase(F_memory_default_allocation_small_d, &parameters->array[i].locations_sub);
             if (F_status_is_error(status)) break;
 
             found = F_true;
@@ -325,7 +325,7 @@ extern "C" {
 
             if (parameters->array[i].values_total) {
               if (needs_value.used + parameters->array[i].values_total > needs_value.size) {
-                status = f_type_array_lengths_resize(needs_value.used + parameters->array[i].values_total, &needs_value);
+                status = f_array_lengths_resize(needs_value.used + parameters->array[i].values_total, &needs_value);
                 if (F_status_is_error(status)) break;
               }
 
@@ -353,10 +353,10 @@ extern "C" {
 
           if (strncmp(arguments.argv[location], parameters->array[i].symbol_other, parameters->arguments.array[location].used + 1) != 0) continue;
 
-          status = f_type_array_lengths_increase(F_memory_default_allocation_small_d, &parameters->array[i].locations);
+          status = f_array_lengths_increase(F_memory_default_allocation_small_d, &parameters->array[i].locations);
           if (F_status_is_error(status)) break;
 
-          status = f_type_array_lengths_increase(F_memory_default_allocation_small_d, &parameters->array[i].locations_sub);
+          status = f_array_lengths_increase(F_memory_default_allocation_small_d, &parameters->array[i].locations_sub);
           if (F_status_is_error(status)) break;
 
           parameters->array[i].locations.array[parameters->array[i].locations.used++] = location;
@@ -368,7 +368,7 @@ extern "C" {
 
           if (parameters->array[i].values_total) {
             if (needs_value.used + parameters->array[i].values_total > needs_value.size) {
-              status = f_type_array_lengths_resize(needs_value.used + parameters->array[i].values_total, &needs_value);
+              status = f_array_lengths_resize(needs_value.used + parameters->array[i].values_total, &needs_value);
               if (F_status_is_error(status)) break;
             }
 
@@ -388,7 +388,7 @@ extern "C" {
       if (!found) {
 
         // Populate list of remaining parameters->array that are not associated with anything.
-        status = f_type_array_lengths_increase(F_memory_default_allocation_small_d, &parameters->remaining);
+        status = f_array_lengths_increase(F_memory_default_allocation_small_d, &parameters->remaining);
         if (F_status_is_error(status)) break;
 
         parameters->remaining.array[parameters->remaining.used++] = location;
@@ -406,7 +406,7 @@ extern "C" {
     } // for
 
     if (F_status_is_error(status)) {
-      f_type_array_lengths_resize(0, &needs_value);
+      f_array_lengths_resize(0, &needs_value);
 
       return status;
     }
@@ -418,7 +418,7 @@ extern "C" {
       status = F_none;
     }
 
-    f_type_array_lengths_resize(0, &needs_value);
+    f_array_lengths_resize(0, &needs_value);
 
     return status;
   }
index 1a44373b9198ca8744e60bcaf09b3208734e8e84..32672a524e9f43d845daaa730c877c0290b0400b 100644 (file)
@@ -262,7 +262,7 @@ extern "C" {
 
             // This is a valid vocabulary name and content, but if it is delimited, save the delimit and ignore.
             if (vocabulary_delimited) {
-              status = f_type_array_lengths_increase(state.step_small, delimits);
+              status = f_array_lengths_increase(state.step_small, delimits);
               if (F_status_is_error(status)) break;
 
               delimits->array[delimits->used++] = vocabulary_slash_first;
@@ -324,7 +324,7 @@ extern "C" {
                   ++content_slash_delimits;
                 }
 
-                status = f_type_array_lengths_increase_by(content_slash_delimits, delimits);
+                status = f_array_lengths_increase_by(content_slash_delimits, delimits);
                 if (F_status_is_error(status)) break;
 
                 content_range.start = content_slash_first;
@@ -348,7 +348,7 @@ extern "C" {
 
                   // This is a valid vocabulary name and content, but if it is delimited, save the delimit and ignore.
                   if (vocabulary_delimited) {
-                    status = f_type_array_lengths_increase(state.step_small, delimits);
+                    status = f_array_lengths_increase(state.step_small, delimits);
                     if (F_status_is_error(status)) break;
 
                     delimits->array[delimits->used++] = vocabulary_slash_first;
index 973e84f66271772fab9b59e204e8e21bd4df3609..1deda33c3cee7e7734e0512e2f960bf8885a21eb 100644 (file)
@@ -49,9 +49,9 @@ extern "C" {
 /**
  * A status intended to be used as the return value status of some function or operation.
  */
-#ifndef _di_f_type_status_t_
+#ifndef _di_f_status_t_
   typedef uint16_t f_status_t;
-#endif // _di_f_type_status_t_
+#endif // _di_f_status_t_
 
 /**
  * A representation of a state to be shared between different levels for some function.
@@ -139,7 +139,7 @@ extern "C" {
  * This should work in GCC, but other compilers this may not be available.
  * When not supported, these will fallback to 64-bit.
  */
-#ifndef _di_f_type_int_128_t_
+#ifndef _di_f_int_128_t_
   #ifdef __SIZEOF_INT128__
     typedef __int128_t  f_int_128_t;
     typedef __uint128_t f_uint_128_t;
@@ -147,7 +147,7 @@ extern "C" {
     typedef int64_t  f_int_128_t;
     typedef uint64_t f_uint_128_t;
   #endif // __SIZEOF_INT128__
-#endif // _di_f_type_int_128_t_
+#endif // _di_f_int_128_t_
 
 /**
  * Defines the maximum size to be supported.
@@ -180,7 +180,7 @@ extern "C" {
   #define F_type_size_64_positive_d 0x7ffffffffffffffe
   #define F_type_size_64_unsigned_d 0xfffffffffffffffe
 
-  #ifndef _di_f_type_int_128_t_
+  #ifndef _di_f_int_128_t_
     #define F_type_size_128_negative_d 0x7fffffffffffffffffffffff
     #define F_type_size_128_positive_d 0x7ffffffffffffffffffffffe
     #define F_type_size_128_unsigned_d 0xfffffffffffffffffffffffe
@@ -188,7 +188,7 @@ extern "C" {
     #define F_type_size_128_negative_d F_type_size_64_negative_d
     #define F_type_size_128_positive_d F_type_size_64_positive_d
     #define F_type_size_128_unsigned_d F_type_size_64_unsigned_d
-  #endif // _di_f_type_int_128_t_
+  #endif // _di_f_int_128_t_
 
   #define F_type_size_max_8_negative_d 0x80
   #define F_type_size_max_8_positive_d 0x7f
@@ -206,7 +206,7 @@ extern "C" {
   #define F_type_size_max_64_positive_d 0x7fffffffffffffff
   #define F_type_size_max_64_unsigned_d 0xffffffffffffffff
 
-  #ifndef _di_f_type_int_128_t_
+  #ifndef _di_f_int_128_t_
     #define F_type_size_max_128_negative_d 0x800000000000000000000000
     #define F_type_size_max_128_positive_d 0x7fffffffffffffffffffffff
     #define F_type_size_max_128_unsigned_d 0xffffffffffffffffffffffff
@@ -214,7 +214,7 @@ extern "C" {
     #define F_type_size_max_128_negative_d F_type_size_max_64_negative_d
     #define F_type_size_max_128_positive_d F_type_size_max_64_positive_d
     #define F_type_size_max_128_unsigned_d F_type_size_max_64_unsigned_d
-  #endif // _di_f_type_int_128_t_
+  #endif // _di_f_int_128_t_
 #endif // _di_f_type_sizes_
 
 /**
@@ -985,7 +985,7 @@ extern "C" {
  * size:  Total amount of allocated space.
  * used:  Total number of allocated spaces used.
  */
-#ifndef _di_f_type_statuss_t_
+#ifndef _di_f_statuss_t_
   typedef struct {
     f_status_t *array;
 
@@ -994,7 +994,7 @@ extern "C" {
   } f_statuss_t;
 
   #define f_statuss_t_initialize { 0, 0, 0 }
-#endif // _di_f_type_statuss_t_
+#endif // _di_f_statuss_t_
 
 /**
  * This holds an array of f_statuss_t.
@@ -1005,7 +1005,7 @@ extern "C" {
  * size:  Total amount of allocated space.
  * used:  Total number of allocated spaces used.
  */
-#ifndef _di_f_type_statusss_t_
+#ifndef _di_f_statusss_t_
   typedef struct {
     f_statuss_t *array;
 
@@ -1014,7 +1014,7 @@ extern "C" {
   } f_statusss_t;
 
   #define f_statusss_t_initialize { 0, 0, 0 }
-#endif // _di_f_type_statusss_t_
+#endif // _di_f_statusss_t_
 
 /**
  * This holds an array of f_state_t.
@@ -1025,7 +1025,7 @@ extern "C" {
  * size:  Total amount of allocated space.
  * used:  Total number of allocated spaces used.
  */
-#ifndef _di_f_type_states_t_
+#ifndef _di_f_states_t_
   typedef struct {
     f_state_t *array;
 
@@ -1034,7 +1034,7 @@ extern "C" {
   } f_states_t;
 
   #define f_states_t_initialize { 0, 0, 0 }
-#endif // _di_f_type_states_t_
+#endif // _di_f_states_t_
 
 /**
  * This holds an array of f_states_t.
@@ -1045,7 +1045,7 @@ extern "C" {
  * size:  Total amount of allocated space.
  * used:  Total number of allocated spaces used.
  */
-#ifndef _di_f_type_statess_t_
+#ifndef _di_f_statess_t_
   typedef struct {
     f_states_t *array;
 
@@ -1054,7 +1054,7 @@ extern "C" {
   } f_statess_t;
 
   #define f_statess_t_initialize { 0, 0, 0 }
-#endif // _di_f_type_statess_t_
+#endif // _di_f_statess_t_
 
 /**
  * An FLL Identifier represents a way to identify FLL related text files and possibly binary files.
index fbd636c6536ea6ff37331d15ba8c75074f2c0e16..afd4f255fa7dd3bf878688708ec78120af4d1416 100644 (file)
@@ -22,16 +22,16 @@ extern "C" {
 #ifndef _di_f_statuss_t_
   #define macro_f_statuss_t_clear(statuss) macro_f_memory_structures_clear(statuss)
 
-  #define macro_f_statuss_t_resize(status, statuss, length) status = f_type_statuss_resize(length, &statuss);
-  #define macro_f_statuss_t_adjust(status, statuss, length) status = f_type_statuss_adjust(length, &statuss);
+  #define macro_f_statuss_t_resize(status, statuss, length) status = f_statuss_resize(length, &statuss);
+  #define macro_f_statuss_t_adjust(status, statuss, length) status = f_statuss_adjust(length, &statuss);
 
-  #define macro_f_statuss_t_delete_simple(statuss)  f_type_statuss_resize(0, &statuss);
-  #define macro_f_statuss_t_destroy_simple(statuss) f_type_statuss_adjust(0, &statuss);
+  #define macro_f_statuss_t_delete_simple(statuss)  f_statuss_resize(0, &statuss);
+  #define macro_f_statuss_t_destroy_simple(statuss) f_statuss_adjust(0, &statuss);
 
-  #define macro_f_statuss_t_increase(status, step, statuss)      status = f_type_statuss_increase(step, &statuss);
-  #define macro_f_statuss_t_increase_by(status, statuss, amount) status = f_type_statuss_increase_by(amount, &statuss);
-  #define macro_f_statuss_t_decrease_by(status, statuss, amount) status = f_type_statuss_decrease_by(amount, &statuss);
-  #define macro_f_statuss_t_decimate_by(status, statuss, amount) status = f_type_statuss_decimate_by(amount, &statuss);
+  #define macro_f_statuss_t_increase(status, step, statuss)      status = f_statuss_increase(step, &statuss);
+  #define macro_f_statuss_t_increase_by(status, statuss, amount) status = f_statuss_increase_by(amount, &statuss);
+  #define macro_f_statuss_t_decrease_by(status, statuss, amount) status = f_statuss_decrease_by(amount, &statuss);
+  #define macro_f_statuss_t_decimate_by(status, statuss, amount) status = f_statuss_decimate_by(amount, &statuss);
 #endif // _di_f_statuss_t_
 
 /**
@@ -40,16 +40,16 @@ extern "C" {
 #ifndef _di_f_statusss_t_
   #define macro_f_statusss_t_clear(statusss) macro_f_memory_structures_clear(statusss)
 
-  #define macro_f_statusss_t_resize(status, statusss, length) status = f_type_statusss_resize(length, &statusss);
-  #define macro_f_statusss_t_adjust(status, statusss, length) status = f_type_statusss_adjust(length, &statusss);
+  #define macro_f_statusss_t_resize(status, statusss, length) status = f_statusss_resize(length, &statusss);
+  #define macro_f_statusss_t_adjust(status, statusss, length) status = f_statusss_adjust(length, &statusss);
 
-  #define macro_f_statusss_t_delete_simple(statusss)  f_type_statusss_resize(0, &statusss);
-  #define macro_f_statusss_t_destroy_simple(statusss) f_type_statusss_adjust(0, &statusss);
+  #define macro_f_statusss_t_delete_simple(statusss)  f_statusss_resize(0, &statusss);
+  #define macro_f_statusss_t_destroy_simple(statusss) f_statusss_adjust(0, &statusss);
 
-  #define macro_f_statusss_t_increase(status, step, statusss)      status = f_type_statusss_increase(step, &statusss);
-  #define macro_f_statusss_t_increase_by(status, statusss, amount) status = f_type_statusss_increase_by(amount, &statusss);
-  #define macro_f_statusss_t_decrease_by(status, statusss, amount) status = f_type_statusss_decrease_by(amount, &statusss);
-  #define macro_f_statusss_t_decimate_by(status, statusss, amount) status = f_type_statusss_decimate_by(amount, &statusss);
+  #define macro_f_statusss_t_increase(status, step, statusss)      status = f_statusss_increase(step, &statusss);
+  #define macro_f_statusss_t_increase_by(status, statusss, amount) status = f_statusss_increase_by(amount, &statusss);
+  #define macro_f_statusss_t_decrease_by(status, statusss, amount) status = f_statusss_decrease_by(amount, &statusss);
+  #define macro_f_statusss_t_decimate_by(status, statusss, amount) status = f_statusss_decimate_by(amount, &statusss);
 #endif // _di_f_statusss_t_
 
 /**
@@ -58,16 +58,16 @@ extern "C" {
 #ifndef _di_f_states_t_
   #define macro_f_states_t_clear(states) macro_f_memory_structures_clear(states)
 
-  #define macro_f_states_t_resize(status, states, length) status = f_type_states_resize(length, &states);
-  #define macro_f_states_t_adjust(status, states, length) status = f_type_states_adjust(length, &states);
+  #define macro_f_states_t_resize(status, states, length) status = f_states_resize(length, &states);
+  #define macro_f_states_t_adjust(status, states, length) status = f_states_adjust(length, &states);
 
-  #define macro_f_states_t_delete_simple(states)  f_type_states_resize(0, &states);
-  #define macro_f_states_t_destroy_simple(states) f_type_states_adjust(0, &states);
+  #define macro_f_states_t_delete_simple(states)  f_states_resize(0, &states);
+  #define macro_f_states_t_destroy_simple(states) f_states_adjust(0, &states);
 
-  #define macro_f_states_t_increase(status, step, states)      status = f_type_states_increase(step, &states);
-  #define macro_f_states_t_increase_by(status, states, amount) status = f_type_states_increase_by(amount, &states);
-  #define macro_f_states_t_decrease_by(status, states, amount) status = f_type_states_decrease_by(amount, &states);
-  #define macro_f_states_t_decimate_by(status, states, amount) status = f_type_states_decimate_by(amount, &states);
+  #define macro_f_states_t_increase(status, step, states)      status = f_states_increase(step, &states);
+  #define macro_f_states_t_increase_by(status, states, amount) status = f_states_increase_by(amount, &states);
+  #define macro_f_states_t_decrease_by(status, states, amount) status = f_states_decrease_by(amount, &states);
+  #define macro_f_states_t_decimate_by(status, states, amount) status = f_states_decimate_by(amount, &states);
 #endif // _di_f_states_t_
 
 /**
@@ -76,16 +76,16 @@ extern "C" {
 #ifndef _di_f_statess_t_
   #define macro_f_statess_t_clear(statess) macro_f_memory_structures_clear(statess)
 
-  #define macro_f_statess_t_resize(status, statess, length) status = f_type_statess_resize(length, &statess);
-  #define macro_f_statess_t_adjust(status, statess, length) status = f_type_statess_adjust(length, &statess);
+  #define macro_f_statess_t_resize(status, statess, length) status = f_statess_resize(length, &statess);
+  #define macro_f_statess_t_adjust(status, statess, length) status = f_statess_adjust(length, &statess);
 
-  #define macro_f_statess_t_delete_simple(statess)  f_type_statess_resize(0, &statess);
-  #define macro_f_statess_t_destroy_simple(statess) f_type_statess_adjust(0, &statess);
+  #define macro_f_statess_t_delete_simple(statess)  f_statess_resize(0, &statess);
+  #define macro_f_statess_t_destroy_simple(statess) f_statess_adjust(0, &statess);
 
-  #define macro_f_statess_t_increase(status, step, statess)      status = f_type_statess_increase(step, &statess);
-  #define macro_f_statess_t_increase_by(status, statess, amount) status = f_type_statess_increase_by(amount, &statess);
-  #define macro_f_statess_t_decrease_by(status, statess, amount) status = f_type_statess_decrease_by(amount, &statess);
-  #define macro_f_statess_t_decimate_by(status, statess, amount) status = f_type_statess_decimate_by(amount, &statess);
+  #define macro_f_statess_t_increase(status, step, statess)      status = f_statess_increase(step, &statess);
+  #define macro_f_statess_t_increase_by(status, statess, amount) status = f_statess_increase_by(amount, &statess);
+  #define macro_f_statess_t_decrease_by(status, statess, amount) status = f_statess_decrease_by(amount, &statess);
+  #define macro_f_statess_t_decimate_by(status, statess, amount) status = f_statess_decimate_by(amount, &statess);
 #endif // _di_f_statess_t_
 
 /**
@@ -94,16 +94,16 @@ extern "C" {
 #ifndef _di_f_cells_t_
   #define macro_f_cells_t_clear(cells) macro_f_memory_structures_clear(cells)
 
-  #define macro_f_cells_t_resize(status, cells, length) status = f_type_cells_resize(length, &cells);
-  #define macro_f_cells_t_adjust(status, cells, length) status = f_type_cells_adjust(length, &cells);
+  #define macro_f_cells_t_resize(status, cells, length) status = f_cells_resize(length, &cells);
+  #define macro_f_cells_t_adjust(status, cells, length) status = f_cells_adjust(length, &cells);
 
-  #define macro_f_cells_t_delete_simple(cells)  f_type_cells_resize(0, &cells);
-  #define macro_f_cells_t_destroy_simple(cells) f_type_cells_adjust(0, &cells);
+  #define macro_f_cells_t_delete_simple(cells)  f_cells_resize(0, &cells);
+  #define macro_f_cells_t_destroy_simple(cells) f_cells_adjust(0, &cells);
 
-  #define macro_f_cells_t_increase(status, step, cells)      status = f_type_cells_increase(step, &cells);
-  #define macro_f_cells_t_increase_by(status, cells, amount) status = f_type_cells_increase_by(amount, &cells);
-  #define macro_f_cells_t_decrease_by(status, cells, amount) status = f_type_cells_decrease_by(amount, &cells);
-  #define macro_f_cells_t_decimate_by(status, cells, amount) status = f_type_cells_decimate_by(amount, &cells);
+  #define macro_f_cells_t_increase(status, step, cells)      status = f_cells_increase(step, &cells);
+  #define macro_f_cells_t_increase_by(status, cells, amount) status = f_cells_increase_by(amount, &cells);
+  #define macro_f_cells_t_decrease_by(status, cells, amount) status = f_cells_decrease_by(amount, &cells);
+  #define macro_f_cells_t_decimate_by(status, cells, amount) status = f_cells_decimate_by(amount, &cells);
 #endif // _di_f_cells_t_
 
 /**
@@ -112,16 +112,16 @@ extern "C" {
 #ifndef _di_f_cellss_t_
   #define macro_f_cellss_t_clear(cellss) macro_f_memory_structures_clear(cellss)
 
-  #define macro_f_cellss_t_resize(status, cellss, length) status = f_type_cellss_resize(length, &cellss);
-  #define macro_f_cellss_t_adjust(status, cellss, length) status = f_type_cellss_adjust(length, &cellss);
+  #define macro_f_cellss_t_resize(status, cellss, length) status = f_cellss_resize(length, &cellss);
+  #define macro_f_cellss_t_adjust(status, cellss, length) status = f_cellss_adjust(length, &cellss);
 
-  #define macro_f_cellss_t_delete_simple(cellss)  f_type_cellss_resize(0, &cellss);
-  #define macro_f_cellss_t_destroy_simple(cellss) f_type_cellss_adjust(0, &cellss);
+  #define macro_f_cellss_t_delete_simple(cellss)  f_cellss_resize(0, &cellss);
+  #define macro_f_cellss_t_destroy_simple(cellss) f_cellss_adjust(0, &cellss);
 
-  #define macro_f_cellss_t_increase(status, step, cellss)      status = f_type_cellss_increase(step, &cellss);
-  #define macro_f_cellss_t_increase_by(status, cellss, amount) status = f_type_cellss_increase_by(amount, &cellss);
-  #define macro_f_cellss_t_decrease_by(status, cellss, amount) status = f_type_cellss_decrease_by(amount, &cellss);
-  #define macro_f_cellss_t_decimate_by(status, cellss, amount) status = f_type_cellss_decimate_by(amount, &cellss);
+  #define macro_f_cellss_t_increase(status, step, cellss)      status = f_cellss_increase(step, &cellss);
+  #define macro_f_cellss_t_increase_by(status, cellss, amount) status = f_cellss_increase_by(amount, &cellss);
+  #define macro_f_cellss_t_decrease_by(status, cellss, amount) status = f_cellss_decrease_by(amount, &cellss);
+  #define macro_f_cellss_t_decimate_by(status, cellss, amount) status = f_cellss_decimate_by(amount, &cellss);
 #endif // _di_f_cellss_t_
 
 /**
@@ -130,16 +130,16 @@ extern "C" {
 #ifndef _di_f_fll_ids_t_
   #define macro_f_fll_ids_t_clear(fll_ids) macro_f_memory_structures_clear(fll_ids)
 
-  #define macro_f_fll_ids_t_resize(status, fll_ids, length) status = f_type_fll_ids_resize(length, &fll_ids);
-  #define macro_f_fll_ids_t_adjust(status, fll_ids, length) status = f_type_fll_ids_adjust(length, &fll_ids);
+  #define macro_f_fll_ids_t_resize(status, fll_ids, length) status = f_fll_ids_resize(length, &fll_ids);
+  #define macro_f_fll_ids_t_adjust(status, fll_ids, length) status = f_fll_ids_adjust(length, &fll_ids);
 
-  #define macro_f_fll_ids_t_delete_simple(fll_ids)  f_type_fll_ids_resize(0, &fll_ids);
-  #define macro_f_fll_ids_t_destroy_simple(fll_ids) f_type_fll_ids_adjust(0, &fll_ids);
+  #define macro_f_fll_ids_t_delete_simple(fll_ids)  f_fll_ids_resize(0, &fll_ids);
+  #define macro_f_fll_ids_t_destroy_simple(fll_ids) f_fll_ids_adjust(0, &fll_ids);
 
-  #define macro_f_fll_ids_t_increase(status, step, fll_ids)      status = f_type_fll_ids_increase(step, &fll_ids);
-  #define macro_f_fll_ids_t_increase_by(status, fll_ids, amount) status = f_type_fll_ids_increase_by(amount, &fll_ids);
-  #define macro_f_fll_ids_t_decrease_by(status, fll_ids, amount) status = f_type_fll_ids_decrease_by(amount, &fll_ids);
-  #define macro_f_fll_ids_t_decimate_by(status, fll_ids, amount) status = f_type_fll_ids_decimate_by(amount, &fll_ids);
+  #define macro_f_fll_ids_t_increase(status, step, fll_ids)      status = f_fll_ids_increase(step, &fll_ids);
+  #define macro_f_fll_ids_t_increase_by(status, fll_ids, amount) status = f_fll_ids_increase_by(amount, &fll_ids);
+  #define macro_f_fll_ids_t_decrease_by(status, fll_ids, amount) status = f_fll_ids_decrease_by(amount, &fll_ids);
+  #define macro_f_fll_ids_t_decimate_by(status, fll_ids, amount) status = f_fll_ids_decimate_by(amount, &fll_ids);
 #endif // _di_f_fll_ids_t_
 
 /**
@@ -148,16 +148,16 @@ extern "C" {
 #ifndef _di_f_fll_idss_t_
   #define macro_f_fll_idss_t_clear(fll_idss) macro_f_memory_structures_clear(fll_idss)
 
-  #define macro_f_fll_idss_t_resize(status, fll_idss, length) status = f_type_fll_idss_resize(length, &fll_idss);
-  #define macro_f_fll_idss_t_adjust(status, fll_idss, length) status = f_type_fll_idss_adjust(length, &fll_idss);
+  #define macro_f_fll_idss_t_resize(status, fll_idss, length) status = f_fll_idss_resize(length, &fll_idss);
+  #define macro_f_fll_idss_t_adjust(status, fll_idss, length) status = f_fll_idss_adjust(length, &fll_idss);
 
-  #define macro_f_fll_idss_t_delete_simple(fll_idss)  f_type_fll_idss_resize(0, &fll_idss);
-  #define macro_f_fll_idss_t_destroy_simple(fll_idss) f_type_fll_idss_adjust(0, &fll_idss);
+  #define macro_f_fll_idss_t_delete_simple(fll_idss)  f_fll_idss_resize(0, &fll_idss);
+  #define macro_f_fll_idss_t_destroy_simple(fll_idss) f_fll_idss_adjust(0, &fll_idss);
 
-  #define macro_f_fll_idss_t_increase(status, step, fll_idss)      status = f_type_fll_idss_increase(step, &fll_idss);
-  #define macro_f_fll_idss_t_increase_by(status, fll_idss, amount) status = f_type_fll_idss_increase_by(amount, &fll_idss);
-  #define macro_f_fll_idss_t_decrease_by(status, fll_idss, amount) status = f_type_fll_idss_decrease_by(amount, &fll_idss);
-  #define macro_f_fll_idss_t_decimate_by(status, fll_idss, amount) status = f_type_fll_idss_decimate_by(amount, &fll_idss);
+  #define macro_f_fll_idss_t_increase(status, step, fll_idss)      status = f_fll_idss_increase(step, &fll_idss);
+  #define macro_f_fll_idss_t_increase_by(status, fll_idss, amount) status = f_fll_idss_increase_by(amount, &fll_idss);
+  #define macro_f_fll_idss_t_decrease_by(status, fll_idss, amount) status = f_fll_idss_decrease_by(amount, &fll_idss);
+  #define macro_f_fll_idss_t_decimate_by(status, fll_idss, amount) status = f_fll_idss_decimate_by(amount, &fll_idss);
 #endif // _di_f_fll_idss_t_
 
 /**
@@ -166,16 +166,16 @@ extern "C" {
 #ifndef _di_f_array_lengths_t_
   #define macro_f_array_lengths_t_clear(lengths) macro_f_memory_structures_clear(lengths)
 
-  #define macro_f_array_lengths_t_resize(status, lengths, length) status = f_type_array_lengths_resize(length, &lengths);
-  #define macro_f_array_lengths_t_adjust(status, lengths, length) status = f_type_array_lengths_adjust(length, &lengths);
+  #define macro_f_array_lengths_t_resize(status, lengths, length) status = f_array_lengths_resize(length, &lengths);
+  #define macro_f_array_lengths_t_adjust(status, lengths, length) status = f_array_lengths_adjust(length, &lengths);
 
-  #define macro_f_array_lengths_t_delete_simple(lengths)  f_type_array_lengths_resize(0, &lengths);
-  #define macro_f_array_lengths_t_destroy_simple(lengths) f_type_array_lengths_adjust(0, &lengths);
+  #define macro_f_array_lengths_t_delete_simple(lengths)  f_array_lengths_resize(0, &lengths);
+  #define macro_f_array_lengths_t_destroy_simple(lengths) f_array_lengths_adjust(0, &lengths);
 
-  #define macro_f_array_lengths_t_increase(status, step, lengths)      status = f_type_array_lengths_increase(step, &lengths);
-  #define macro_f_array_lengths_t_increase_by(status, lengths, amount) status = f_type_array_lengths_increase_by(amount, &lengths);
-  #define macro_f_array_lengths_t_decrease_by(status, lengths, amount) status = f_type_array_lengths_decrease_by(amount, &lengths);
-  #define macro_f_array_lengths_t_decimate_by(status, lengths, amount) status = f_type_array_lengths_decimate_by(amount, &lengths);
+  #define macro_f_array_lengths_t_increase(status, step, lengths)      status = f_array_lengths_increase(step, &lengths);
+  #define macro_f_array_lengths_t_increase_by(status, lengths, amount) status = f_array_lengths_increase_by(amount, &lengths);
+  #define macro_f_array_lengths_t_decrease_by(status, lengths, amount) status = f_array_lengths_decrease_by(amount, &lengths);
+  #define macro_f_array_lengths_t_decimate_by(status, lengths, amount) status = f_array_lengths_decimate_by(amount, &lengths);
 #endif // _di_f_array_lengths_t_
 
 /**
@@ -184,16 +184,16 @@ extern "C" {
 #ifndef _di_f_array_lengthss_t_
   #define macro_f_array_lengthss_t_clear(lengthss) macro_f_memory_structures_clear(lengthss)
 
-  #define macro_f_array_lengthss_t_resize(status, lengths, length) status = f_type_array_lengthss_resize(length, &lengths);
-  #define macro_f_array_lengthss_t_adjust(status, lengths, length) status = f_type_array_lengthss_adjust(length, &lengths);
+  #define macro_f_array_lengthss_t_resize(status, lengths, length) status = f_array_lengthss_resize(length, &lengths);
+  #define macro_f_array_lengthss_t_adjust(status, lengths, length) status = f_array_lengthss_adjust(length, &lengths);
 
-  #define macro_f_array_lengthss_t_delete_simple(lengths)  f_type_array_lengthss_resize(0, &lengths);
-  #define macro_f_array_lengthss_t_destroy_simple(lengths) f_type_array_lengthss_adjust(0, &lengths);
+  #define macro_f_array_lengthss_t_delete_simple(lengths)  f_array_lengthss_resize(0, &lengths);
+  #define macro_f_array_lengthss_t_destroy_simple(lengths) f_array_lengthss_adjust(0, &lengths);
 
-  #define macro_f_array_lengthss_t_increase(status, step, lengths)      status = f_type_array_lengthss_increase(step, &lengths);
-  #define macro_f_array_lengthss_t_increase_by(status, lengths, amount) status = f_type_array_lengthss_increase_by(amount, &lengths);
-  #define macro_f_array_lengthss_t_decrease_by(status, lengths, amount) status = f_type_array_lengthss_decrease_by(amount, &lengths);
-  #define macro_f_array_lengthss_t_decimate_by(status, lengths, amount) status = f_type_array_lengthss_decimate_by(amount, &lengths);
+  #define macro_f_array_lengthss_t_increase(status, step, lengths)      status = f_array_lengthss_increase(step, &lengths);
+  #define macro_f_array_lengthss_t_increase_by(status, lengths, amount) status = f_array_lengthss_increase_by(amount, &lengths);
+  #define macro_f_array_lengthss_t_decrease_by(status, lengths, amount) status = f_array_lengthss_decrease_by(amount, &lengths);
+  #define macro_f_array_lengthss_t_decimate_by(status, lengths, amount) status = f_array_lengthss_decimate_by(amount, &lengths);
 #endif // _di_f_array_lengthss_t_
 
 /**
@@ -202,16 +202,16 @@ extern "C" {
 #ifndef _di_f_int8_t_
   #define macro_f_int8s_t_clear(int8s) macro_f_memory_structures_clear(int8s)
 
-  #define macro_f_int8s_t_resize(status, int8s, length) status = f_type_int8s_resize(length, &int8s);
-  #define macro_f_int8s_t_adjust(status, int8s, length) status = f_type_int8s_adjust(length, &int8s);
+  #define macro_f_int8s_t_resize(status, int8s, length) status = f_int8s_resize(length, &int8s);
+  #define macro_f_int8s_t_adjust(status, int8s, length) status = f_int8s_adjust(length, &int8s);
 
-  #define macro_f_int8s_t_increase(status, step, int8s)      status = f_type_int8s_increase(step, &int8s);
-  #define macro_f_int8s_t_increase_by(status, int8s, amount) status = f_type_int8s_increase_by(amount, &int8s);
-  #define macro_f_int8s_t_decrease_by(status, int8s, amount) status = f_type_int8s_decrease_by(amount, &int8s);
-  #define macro_f_int8s_t_decimate_by(status, int8s, amount) status = f_type_int8s_decimate_by(amount, &int8s);
+  #define macro_f_int8s_t_increase(status, step, int8s)      status = f_int8s_increase(step, &int8s);
+  #define macro_f_int8s_t_increase_by(status, int8s, amount) status = f_int8s_increase_by(amount, &int8s);
+  #define macro_f_int8s_t_decrease_by(status, int8s, amount) status = f_int8s_decrease_by(amount, &int8s);
+  #define macro_f_int8s_t_decimate_by(status, int8s, amount) status = f_int8s_decimate_by(amount, &int8s);
 
-  #define macro_f_int8s_t_delete_simple(int8s)  f_type_int8s_resize(0, &int8s);
-  #define macro_f_int8s_t_destroy_simple(int8s) f_type_int8s_adjust(0, &int8s);
+  #define macro_f_int8s_t_delete_simple(int8s)  f_int8s_resize(0, &int8s);
+  #define macro_f_int8s_t_destroy_simple(int8s) f_int8s_adjust(0, &int8s);
 #endif // _di_f_int8_t_
 
 /**
@@ -220,16 +220,16 @@ extern "C" {
 #ifndef _di_f_int8ss_t_
   #define macro_f_int8ss_t_clear(int8ss) macro_f_memory_structures_clear(int8ss)
 
-  #define macro_f_int8ss_t_resize(status, int8ss, length) status = f_type_int8ss_resize(length, &int8ss);
-  #define macro_f_int8ss_t_adjust(status, int8ss, length) status = f_type_int8ss_adjust(length, &int8ss);
+  #define macro_f_int8ss_t_resize(status, int8ss, length) status = f_int8ss_resize(length, &int8ss);
+  #define macro_f_int8ss_t_adjust(status, int8ss, length) status = f_int8ss_adjust(length, &int8ss);
 
-  #define macro_f_int8ss_t_increase(status, step, int8ss)      status = f_type_int8ss_increase(step, &int8ss);
-  #define macro_f_int8ss_t_increase_by(status, int8ss, amount) status = f_type_int8ss_increase_by(amount, &int8ss);
-  #define macro_f_int8ss_t_decrease_by(status, int8ss, amount) status = f_type_int8ss_decrease_by(amount, &int8ss);
-  #define macro_f_int8ss_t_decimate_by(status, int8ss, amount) status = f_type_int8ss_decimate_by(amount, &int8ss);
+  #define macro_f_int8ss_t_increase(status, step, int8ss)      status = f_int8ss_increase(step, &int8ss);
+  #define macro_f_int8ss_t_increase_by(status, int8ss, amount) status = f_int8ss_increase_by(amount, &int8ss);
+  #define macro_f_int8ss_t_decrease_by(status, int8ss, amount) status = f_int8ss_decrease_by(amount, &int8ss);
+  #define macro_f_int8ss_t_decimate_by(status, int8ss, amount) status = f_int8ss_decimate_by(amount, &int8ss);
 
-  #define macro_f_int8ss_t_delete_simple(int8ss)  f_type_int8ss_resize(0, &int8ss);
-  #define macro_f_int8ss_t_destroy_simple(int8ss) f_type_int8ss_adjust(0, &int8ss);
+  #define macro_f_int8ss_t_delete_simple(int8ss)  f_int8ss_resize(0, &int8ss);
+  #define macro_f_int8ss_t_destroy_simple(int8ss) f_int8ss_adjust(0, &int8ss);
 #endif // _di_f_int8ss_t_
 
 /**
@@ -238,16 +238,16 @@ extern "C" {
 #ifndef _di_f_uint8s_t_
   #define macro_f_uint8s_t_clear(uint8s) macro_f_memory_structures_clear(uint8s)
 
-  #define macro_f_uint8s_t_resize(status, uint8s, length) status = f_type_uint8s_resize(length, &uint8s);
-  #define macro_f_uint8s_t_adjust(status, uint8s, length) status = f_type_uint8s_adjust(length, &uint8s);
+  #define macro_f_uint8s_t_resize(status, uint8s, length) status = f_uint8s_resize(length, &uint8s);
+  #define macro_f_uint8s_t_adjust(status, uint8s, length) status = f_uint8s_adjust(length, &uint8s);
 
-  #define macro_f_uint8s_t_delete_simple(uint8s)  f_type_uint8s_resize(0, &uint8s);
-  #define macro_f_uint8s_t_destroy_simple(uint8s) f_type_uint8s_adjust(0, &uint8s);
+  #define macro_f_uint8s_t_delete_simple(uint8s)  f_uint8s_resize(0, &uint8s);
+  #define macro_f_uint8s_t_destroy_simple(uint8s) f_uint8s_adjust(0, &uint8s);
 
-  #define macro_f_uint8s_t_increase(status, step, uint8s)      status = f_type_uint8s_increase(step, &uint8s);
-  #define macro_f_uint8s_t_increase_by(status, uint8s, amount) status = f_type_uint8s_increase_by(amount, &uint8s);
-  #define macro_f_uint8s_t_decrease_by(status, uint8s, amount) status = f_type_uint8s_decrease_by(amount, &uint8s);
-  #define macro_f_uint8s_t_decimate_by(status, uint8s, amount) status = f_type_uint8s_decimate_by(amount, &uint8s);
+  #define macro_f_uint8s_t_increase(status, step, uint8s)      status = f_uint8s_increase(step, &uint8s);
+  #define macro_f_uint8s_t_increase_by(status, uint8s, amount) status = f_uint8s_increase_by(amount, &uint8s);
+  #define macro_f_uint8s_t_decrease_by(status, uint8s, amount) status = f_uint8s_decrease_by(amount, &uint8s);
+  #define macro_f_uint8s_t_decimate_by(status, uint8s, amount) status = f_uint8s_decimate_by(amount, &uint8s);
 #endif // _di_f_uint8s_t_
 
 /**
@@ -256,16 +256,16 @@ extern "C" {
 #ifndef _di_f_uint8ss_t_
   #define macro_f_uint8ss_t_clear(uint8ss) macro_f_memory_structures_clear(uint8ss)
 
-  #define macro_f_uint8ss_t_resize(status, uint8ss, length) status = f_type_uint8ss_resize(length, &uint8ss);
-  #define macro_f_uint8ss_t_adjust(status, uint8ss, length) status = f_type_uint8ss_adjust(length, &uint8ss);
+  #define macro_f_uint8ss_t_resize(status, uint8ss, length) status = f_uint8ss_resize(length, &uint8ss);
+  #define macro_f_uint8ss_t_adjust(status, uint8ss, length) status = f_uint8ss_adjust(length, &uint8ss);
 
-  #define macro_f_uint8ss_t_delete_simple(uint8ss)  f_type_uint8ss_resize(0, &uint8ss);
-  #define macro_f_uint8ss_t_destroy_simple(uint8ss) f_type_uint8ss_adjust(0, &uint8ss);
+  #define macro_f_uint8ss_t_delete_simple(uint8ss)  f_uint8ss_resize(0, &uint8ss);
+  #define macro_f_uint8ss_t_destroy_simple(uint8ss) f_uint8ss_adjust(0, &uint8ss);
 
-  #define macro_f_uint8ss_t_increase(status, step, uint8ss)      status = f_type_uint8ss_increase(step, &uint8ss);
-  #define macro_f_uint8ss_t_increase_by(status, uint8ss, amount) status = f_type_uint8ss_increase_by(amount, &uint8ss);
-  #define macro_f_uint8ss_t_decrease_by(status, uint8ss, amount) status = f_type_uint8ss_decrease_by(amount, &uint8ss);
-  #define macro_f_uint8ss_t_decimate_by(status, uint8ss, amount) status = f_type_uint8ss_decimate_by(amount, &uint8ss);
+  #define macro_f_uint8ss_t_increase(status, step, uint8ss)      status = f_uint8ss_increase(step, &uint8ss);
+  #define macro_f_uint8ss_t_increase_by(status, uint8ss, amount) status = f_uint8ss_increase_by(amount, &uint8ss);
+  #define macro_f_uint8ss_t_decrease_by(status, uint8ss, amount) status = f_uint8ss_decrease_by(amount, &uint8ss);
+  #define macro_f_uint8ss_t_decimate_by(status, uint8ss, amount) status = f_uint8ss_decimate_by(amount, &uint8ss);
 #endif // _di_f_uint8ss_t_
 
 /**
@@ -274,16 +274,16 @@ extern "C" {
 #ifndef _di_f_int16s_t_
   #define macro_f_int16s_t_clear(int16s) macro_f_memory_structures_clear(int16s)
 
-  #define macro_f_int16s_t_resize(status, int16s, length) status = f_type_int16s_resize(length, &int16s);
-  #define macro_f_int16s_t_adjust(status, int16s, length) status = f_type_int16s_adjust(length, &int16s);
+  #define macro_f_int16s_t_resize(status, int16s, length) status = f_int16s_resize(length, &int16s);
+  #define macro_f_int16s_t_adjust(status, int16s, length) status = f_int16s_adjust(length, &int16s);
 
-  #define macro_f_int16s_t_increase(status, step, int16s)      status = f_type_int16s_increase(step, &int16s);
-  #define macro_f_int16s_t_increase_by(status, int16s, amount) status = f_type_int16s_increase_by(amount, &int16s);
-  #define macro_f_int16s_t_decrease_by(status, int16s, amount) status = f_type_int16s_decrease_by(amount, &int16s);
-  #define macro_f_int16s_t_decimate_by(status, int16s, amount) status = f_type_int16s_decimate_by(amount, &int16s);
+  #define macro_f_int16s_t_increase(status, step, int16s)      status = f_int16s_increase(step, &int16s);
+  #define macro_f_int16s_t_increase_by(status, int16s, amount) status = f_int16s_increase_by(amount, &int16s);
+  #define macro_f_int16s_t_decrease_by(status, int16s, amount) status = f_int16s_decrease_by(amount, &int16s);
+  #define macro_f_int16s_t_decimate_by(status, int16s, amount) status = f_int16s_decimate_by(amount, &int16s);
 
-  #define macro_f_int16s_t_delete_simple(int16s)  f_type_int16s_resize(0, &int16s);
-  #define macro_f_int16s_t_destroy_simple(int16s) f_type_int16s_adjust(0, &int16s);
+  #define macro_f_int16s_t_delete_simple(int16s)  f_int16s_resize(0, &int16s);
+  #define macro_f_int16s_t_destroy_simple(int16s) f_int16s_adjust(0, &int16s);
 #endif // _di_f_int16s_t_
 
 /**
@@ -292,16 +292,16 @@ extern "C" {
 #ifndef _di_f_int16ss_t_
   #define macro_f_int16ss_t_clear(int16ss) macro_f_memory_structures_clear(int16ss)
 
-  #define macro_f_int16ss_t_resize(status, int16ss, length) status = f_type_int16ss_resize(length, &int16ss);
-  #define macro_f_int16ss_t_adjust(status, int16ss, length) status = f_type_int16ss_adjust(length, &int16ss);
+  #define macro_f_int16ss_t_resize(status, int16ss, length) status = f_int16ss_resize(length, &int16ss);
+  #define macro_f_int16ss_t_adjust(status, int16ss, length) status = f_int16ss_adjust(length, &int16ss);
 
-  #define macro_f_int16ss_t_increase(status, step, int16ss)      status = f_type_int16ss_increase(step, &int16ss);
-  #define macro_f_int16ss_t_increase_by(status, int16ss, amount) status = f_type_int16ss_increase_by(amount, &int16ss);
-  #define macro_f_int16ss_t_decrease_by(status, int16ss, amount) status = f_type_int16ss_decrease_by(amount, &int16ss);
-  #define macro_f_int16ss_t_decimate_by(status, int16ss, amount) status = f_type_int16ss_decimate_by(amount, &int16ss);
+  #define macro_f_int16ss_t_increase(status, step, int16ss)      status = f_int16ss_increase(step, &int16ss);
+  #define macro_f_int16ss_t_increase_by(status, int16ss, amount) status = f_int16ss_increase_by(amount, &int16ss);
+  #define macro_f_int16ss_t_decrease_by(status, int16ss, amount) status = f_int16ss_decrease_by(amount, &int16ss);
+  #define macro_f_int16ss_t_decimate_by(status, int16ss, amount) status = f_int16ss_decimate_by(amount, &int16ss);
 
-  #define macro_f_int16ss_t_delete_simple(int16ss)  f_type_int16ss_resize(0, &int16ss);
-  #define macro_f_int16ss_t_destroy_simple(int16ss) f_type_int16ss_adjust(0, &int16ss);
+  #define macro_f_int16ss_t_delete_simple(int16ss)  f_int16ss_resize(0, &int16ss);
+  #define macro_f_int16ss_t_destroy_simple(int16ss) f_int16ss_adjust(0, &int16ss);
 #endif // _di_f_int16ss_t_
 
 /**
@@ -310,16 +310,16 @@ extern "C" {
 #ifndef _di_f_uint16s_t_
   #define macro_f_uint16s_t_clear(uint16s) macro_f_memory_structures_clear(uint16s)
 
-  #define macro_f_uint16s_t_resize(status, uint16s, length) status = f_type_uint16s_resize(length, &uint16s);
-  #define macro_f_uint16s_t_adjust(status, uint16s, length) status = f_type_uint16s_adjust(length, &uint16s);
+  #define macro_f_uint16s_t_resize(status, uint16s, length) status = f_uint16s_resize(length, &uint16s);
+  #define macro_f_uint16s_t_adjust(status, uint16s, length) status = f_uint16s_adjust(length, &uint16s);
 
-  #define macro_f_uint16s_t_delete_simple(uint16s)  f_type_uint16s_resize(0, &uint16s);
-  #define macro_f_uint16s_t_destroy_simple(uint16s) f_type_uint16s_adjust(0, &uint16s);
+  #define macro_f_uint16s_t_delete_simple(uint16s)  f_uint16s_resize(0, &uint16s);
+  #define macro_f_uint16s_t_destroy_simple(uint16s) f_uint16s_adjust(0, &uint16s);
 
-  #define macro_f_uint16s_t_increase(status, step, uint16s)      status = f_type_uint16s_increase(step, &uint16s);
-  #define macro_f_uint16s_t_increase_by(status, uint16s, amount) status = f_type_uint16s_increase_by(amount, &uint16s);
-  #define macro_f_uint16s_t_decrease_by(status, uint16s, amount) status = f_type_uint16s_decrease_by(amount, &uint16s);
-  #define macro_f_uint16s_t_decimate_by(status, uint16s, amount) status = f_type_uint16s_decimate_by(amount, &uint16s);
+  #define macro_f_uint16s_t_increase(status, step, uint16s)      status = f_uint16s_increase(step, &uint16s);
+  #define macro_f_uint16s_t_increase_by(status, uint16s, amount) status = f_uint16s_increase_by(amount, &uint16s);
+  #define macro_f_uint16s_t_decrease_by(status, uint16s, amount) status = f_uint16s_decrease_by(amount, &uint16s);
+  #define macro_f_uint16s_t_decimate_by(status, uint16s, amount) status = f_uint16s_decimate_by(amount, &uint16s);
 #endif // _di_f_uint16s_t_
 
 /**
@@ -328,16 +328,16 @@ extern "C" {
 #ifndef _di_f_uint16ss_t_
   #define macro_f_uint16ss_t_clear(uint16ss) macro_f_memory_structures_clear(uint16ss)
 
-  #define macro_f_uint16ss_t_resize(status, uint16ss, length) status = f_type_uint16ss_resize(length, &uint16ss);
-  #define macro_f_uint16ss_t_adjust(status, uint16ss, length) status = f_type_uint16ss_adjust(length, &uint16ss);
+  #define macro_f_uint16ss_t_resize(status, uint16ss, length) status = f_uint16ss_resize(length, &uint16ss);
+  #define macro_f_uint16ss_t_adjust(status, uint16ss, length) status = f_uint16ss_adjust(length, &uint16ss);
 
-  #define macro_f_uint16ss_t_delete_simple(uint16ss)  f_type_uint16ss_resize(0, &uint16ss);
-  #define macro_f_uint16ss_t_destroy_simple(uint16ss) f_type_uint16ss_adjust(0, &uint16ss);
+  #define macro_f_uint16ss_t_delete_simple(uint16ss)  f_uint16ss_resize(0, &uint16ss);
+  #define macro_f_uint16ss_t_destroy_simple(uint16ss) f_uint16ss_adjust(0, &uint16ss);
 
-  #define macro_f_uint16ss_t_increase(status, step, uint16ss)      status = f_type_uint16ss_increase(step, &uint16ss);
-  #define macro_f_uint16ss_t_increase_by(status, uint16ss, amount) status = f_type_uint16ss_increase_by(amount, &uint16ss);
-  #define macro_f_uint16ss_t_decrease_by(status, uint16ss, amount) status = f_type_uint16ss_decrease_by(amount, &uint16ss);
-  #define macro_f_uint16ss_t_decimate_by(status, uint16ss, amount) status = f_type_uint16ss_decimate_by(amount, &uint16ss);
+  #define macro_f_uint16ss_t_increase(status, step, uint16ss)      status = f_uint16ss_increase(step, &uint16ss);
+  #define macro_f_uint16ss_t_increase_by(status, uint16ss, amount) status = f_uint16ss_increase_by(amount, &uint16ss);
+  #define macro_f_uint16ss_t_decrease_by(status, uint16ss, amount) status = f_uint16ss_decrease_by(amount, &uint16ss);
+  #define macro_f_uint16ss_t_decimate_by(status, uint16ss, amount) status = f_uint16ss_decimate_by(amount, &uint16ss);
 #endif // _di_f_uint16ss_t_
 
 /**
@@ -346,16 +346,16 @@ extern "C" {
 #ifndef _di_f_int32s_t_
   #define macro_f_int32s_t_clear(int32s) macro_f_memory_structures_clear(int32s)
 
-  #define macro_f_int32s_t_resize(status, int32s, length) status = f_type_int32s_resize(length, &int32s);
-  #define macro_f_int32s_t_adjust(status, int32s, length) status = f_type_int32s_adjust(length, &int32s);
+  #define macro_f_int32s_t_resize(status, int32s, length) status = f_int32s_resize(length, &int32s);
+  #define macro_f_int32s_t_adjust(status, int32s, length) status = f_int32s_adjust(length, &int32s);
 
-  #define macro_f_int32s_t_delete_simple(int32s)  f_type_int32s_resize(0, &int32s);
-  #define macro_f_int32s_t_destroy_simple(int32s) f_type_int32s_adjust(0, &int32s);
+  #define macro_f_int32s_t_delete_simple(int32s)  f_int32s_resize(0, &int32s);
+  #define macro_f_int32s_t_destroy_simple(int32s) f_int32s_adjust(0, &int32s);
 
-  #define macro_f_int32s_t_increase(status, step, int32s)      status = f_type_int32s_increase(step, &int32s);
-  #define macro_f_int32s_t_increase_by(status, int32s, amount) status = f_type_int32s_increase_by(amount, &int32s);
-  #define macro_f_int32s_t_decrease_by(status, int32s, amount) status = f_type_int32s_decrease_by(amount, &int32s);
-  #define macro_f_int32s_t_decimate_by(status, int32s, amount) status = f_type_int32s_decimate_by(amount, &int32s);
+  #define macro_f_int32s_t_increase(status, step, int32s)      status = f_int32s_increase(step, &int32s);
+  #define macro_f_int32s_t_increase_by(status, int32s, amount) status = f_int32s_increase_by(amount, &int32s);
+  #define macro_f_int32s_t_decrease_by(status, int32s, amount) status = f_int32s_decrease_by(amount, &int32s);
+  #define macro_f_int32s_t_decimate_by(status, int32s, amount) status = f_int32s_decimate_by(amount, &int32s);
 #endif // _di_f_int32s_t_
 
 /**
@@ -364,16 +364,16 @@ extern "C" {
 #ifndef _di_f_int32ss_t_
   #define macro_f_int32ss_t_clear(int32ss) macro_f_memory_structures_clear(int32ss)
 
-  #define macro_f_int32ss_t_resize(status, int32ss, length) status = f_type_int32ss_resize(length, &int32ss);
-  #define macro_f_int32ss_t_adjust(status, int32ss, length) status = f_type_int32ss_adjust(length, &int32ss);
+  #define macro_f_int32ss_t_resize(status, int32ss, length) status = f_int32ss_resize(length, &int32ss);
+  #define macro_f_int32ss_t_adjust(status, int32ss, length) status = f_int32ss_adjust(length, &int32ss);
 
-  #define macro_f_int32ss_t_delete_simple(int32ss)  f_type_int32ss_resize(0, &int32ss);
-  #define macro_f_int32ss_t_destroy_simple(int32ss) f_type_int32ss_adjust(0, &int32ss);
+  #define macro_f_int32ss_t_delete_simple(int32ss)  f_int32ss_resize(0, &int32ss);
+  #define macro_f_int32ss_t_destroy_simple(int32ss) f_int32ss_adjust(0, &int32ss);
 
-  #define macro_f_int32ss_t_increase(status, step, int32ss)      status = f_type_int32ss_increase(step, &int32ss);
-  #define macro_f_int32ss_t_increase_by(status, int32ss, amount) status = f_type_int32ss_increase_by(amount, &int32ss);
-  #define macro_f_int32ss_t_decrease_by(status, int32ss, amount) status = f_type_int32ss_decrease_by(amount, &int32ss);
-  #define macro_f_int32ss_t_decimate_by(status, int32ss, amount) status = f_type_int32ss_decimate_by(amount, &int32ss);
+  #define macro_f_int32ss_t_increase(status, step, int32ss)      status = f_int32ss_increase(step, &int32ss);
+  #define macro_f_int32ss_t_increase_by(status, int32ss, amount) status = f_int32ss_increase_by(amount, &int32ss);
+  #define macro_f_int32ss_t_decrease_by(status, int32ss, amount) status = f_int32ss_decrease_by(amount, &int32ss);
+  #define macro_f_int32ss_t_decimate_by(status, int32ss, amount) status = f_int32ss_decimate_by(amount, &int32ss);
 #endif // _di_f_int32ss_t_
 
 /**
@@ -382,16 +382,16 @@ extern "C" {
 #ifndef _di_f_uint32s_t_
   #define macro_f_uint32s_t_clear(uint32s) macro_f_memory_structures_clear(uint32s)
 
-  #define macro_f_uint32s_t_resize(status, uint32s, length) status = f_type_uint32s_resize(length, &uint32s);
-  #define macro_f_uint32s_t_adjust(status, uint32s, length) status = f_type_uint32s_adjust(length, &uint32s);
+  #define macro_f_uint32s_t_resize(status, uint32s, length) status = f_uint32s_resize(length, &uint32s);
+  #define macro_f_uint32s_t_adjust(status, uint32s, length) status = f_uint32s_adjust(length, &uint32s);
 
-  #define macro_f_uint32s_t_delete_simple(uint32s)  f_type_uint32s_resize(0, &uint32s);
-  #define macro_f_uint32s_t_destroy_simple(uint32s) f_type_uint32s_adjust(0, &uint32s);
+  #define macro_f_uint32s_t_delete_simple(uint32s)  f_uint32s_resize(0, &uint32s);
+  #define macro_f_uint32s_t_destroy_simple(uint32s) f_uint32s_adjust(0, &uint32s);
 
-  #define macro_f_uint32s_t_increase(status, step, uint32s)      status = f_type_uint32s_increase(step, &uint32s);
-  #define macro_f_uint32s_t_increase_by(status, uint32s, amount) status = f_type_uint32s_increase_by(amount, &uint32s);
-  #define macro_f_uint32s_t_decrease_by(status, uint32s, amount) status = f_type_uint32s_decrease_by(amount, &uint32s);
-  #define macro_f_uint32s_t_decimate_by(status, uint32s, amount) status = f_type_uint32s_decimate_by(amount, &uint32s);
+  #define macro_f_uint32s_t_increase(status, step, uint32s)      status = f_uint32s_increase(step, &uint32s);
+  #define macro_f_uint32s_t_increase_by(status, uint32s, amount) status = f_uint32s_increase_by(amount, &uint32s);
+  #define macro_f_uint32s_t_decrease_by(status, uint32s, amount) status = f_uint32s_decrease_by(amount, &uint32s);
+  #define macro_f_uint32s_t_decimate_by(status, uint32s, amount) status = f_uint32s_decimate_by(amount, &uint32s);
 #endif // _di_f_uint32s_t_
 
 /**
@@ -400,16 +400,16 @@ extern "C" {
 #ifndef _di_f_uint32ss_t_
   #define macro_f_uint32ss_t_clear(uint32ss) macro_f_memory_structures_clear(uint32ss)
 
-  #define macro_f_uint32ss_t_resize(status, uint32ss, length) status = f_type_uint32ss_resize(length, &uint32ss);
-  #define macro_f_uint32ss_t_adjust(status, uint32ss, length) status = f_type_uint32ss_adjust(length, &uint32ss);
+  #define macro_f_uint32ss_t_resize(status, uint32ss, length) status = f_uint32ss_resize(length, &uint32ss);
+  #define macro_f_uint32ss_t_adjust(status, uint32ss, length) status = f_uint32ss_adjust(length, &uint32ss);
 
-  #define macro_f_uint32ss_t_delete_simple(uint32ss)  f_type_uint32ss_resize(0, &uint32ss);
-  #define macro_f_uint32ss_t_destroy_simple(uint32ss) f_type_uint32ss_adjust(0, &uint32ss);
+  #define macro_f_uint32ss_t_delete_simple(uint32ss)  f_uint32ss_resize(0, &uint32ss);
+  #define macro_f_uint32ss_t_destroy_simple(uint32ss) f_uint32ss_adjust(0, &uint32ss);
 
-  #define macro_f_uint32ss_t_increase(status, step, uint32ss)      status = f_type_uint32ss_increase(step, &uint32ss);
-  #define macro_f_uint32ss_t_increase_by(status, uint32ss, amount) status = f_type_uint32ss_increase_by(amount, &uint32ss);
-  #define macro_f_uint32ss_t_decrease_by(status, uint32ss, amount) status = f_type_uint32ss_decrease_by(amount, &uint32ss);
-  #define macro_f_uint32ss_t_decimate_by(status, uint32ss, amount) status = f_type_uint32ss_decimate_by(amount, &uint32ss);
+  #define macro_f_uint32ss_t_increase(status, step, uint32ss)      status = f_uint32ss_increase(step, &uint32ss);
+  #define macro_f_uint32ss_t_increase_by(status, uint32ss, amount) status = f_uint32ss_increase_by(amount, &uint32ss);
+  #define macro_f_uint32ss_t_decrease_by(status, uint32ss, amount) status = f_uint32ss_decrease_by(amount, &uint32ss);
+  #define macro_f_uint32ss_t_decimate_by(status, uint32ss, amount) status = f_uint32ss_decimate_by(amount, &uint32ss);
 #endif // _di_f_uint32ss_t_
 
 /**
@@ -418,16 +418,16 @@ extern "C" {
 #ifndef _di_f_int64s_t_
   #define macro_f_int64s_t_clear(int64s) macro_f_memory_structures_clear(int64s)
 
-  #define macro_f_int64s_t_resize(status, int64s, length) status = f_type_int64s_resize(length, &int64s);
-  #define macro_f_int64s_t_adjust(status, int64s, length) status = f_type_int64s_adjust(length, &int64s);
+  #define macro_f_int64s_t_resize(status, int64s, length) status = f_int64s_resize(length, &int64s);
+  #define macro_f_int64s_t_adjust(status, int64s, length) status = f_int64s_adjust(length, &int64s);
 
-  #define macro_f_int64s_t_increase(status, step, int64s)      status = f_type_int64s_increase(step, &int64s);
-  #define macro_f_int64s_t_increase_by(status, int64s, amount) status = f_type_int64s_increase_by(amount, &int64s);
-  #define macro_f_int64s_t_decrease_by(status, int64s, amount) status = f_type_int64s_decrease_by(amount, &int64s);
-  #define macro_f_int64s_t_decimate_by(status, int64s, amount) status = f_type_int64s_decimate_by(amount, &int64s);
+  #define macro_f_int64s_t_increase(status, step, int64s)      status = f_int64s_increase(step, &int64s);
+  #define macro_f_int64s_t_increase_by(status, int64s, amount) status = f_int64s_increase_by(amount, &int64s);
+  #define macro_f_int64s_t_decrease_by(status, int64s, amount) status = f_int64s_decrease_by(amount, &int64s);
+  #define macro_f_int64s_t_decimate_by(status, int64s, amount) status = f_int64s_decimate_by(amount, &int64s);
 
-  #define macro_f_int64s_t_delete_simple(int64s)  f_type_int64s_resize(0, &int64s);
-  #define macro_f_int64s_t_destroy_simple(int64s) f_type_int64s_adjust(0, &int64s);
+  #define macro_f_int64s_t_delete_simple(int64s)  f_int64s_resize(0, &int64s);
+  #define macro_f_int64s_t_destroy_simple(int64s) f_int64s_adjust(0, &int64s);
 #endif // _di_f_int64s_t_
 
 /**
@@ -436,16 +436,16 @@ extern "C" {
 #ifndef _di_f_int64ss_t_
   #define macro_f_int64ss_t_clear(int64ss) macro_f_memory_structures_clear(int64ss)
 
-  #define macro_f_int64ss_t_resize(status, int64ss, length) status = f_type_int64ss_resize(length, &int64ss);
-  #define macro_f_int64ss_t_adjust(status, int64ss, length) status = f_type_int64ss_adjust(length, &int64ss);
+  #define macro_f_int64ss_t_resize(status, int64ss, length) status = f_int64ss_resize(length, &int64ss);
+  #define macro_f_int64ss_t_adjust(status, int64ss, length) status = f_int64ss_adjust(length, &int64ss);
 
-  #define macro_f_int64ss_t_increase(status, step, int64ss)      status = f_type_int64ss_increase(step, &int64ss);
-  #define macro_f_int64ss_t_increase_by(status, int64ss, amount) status = f_type_int64ss_increase_by(amount, &int64ss);
-  #define macro_f_int64ss_t_decrease_by(status, int64ss, amount) status = f_type_int64ss_decrease_by(amount, &int64ss);
-  #define macro_f_int64ss_t_decimate_by(status, int64ss, amount) status = f_type_int64ss_decimate_by(amount, &int64ss);
+  #define macro_f_int64ss_t_increase(status, step, int64ss)      status = f_int64ss_increase(step, &int64ss);
+  #define macro_f_int64ss_t_increase_by(status, int64ss, amount) status = f_int64ss_increase_by(amount, &int64ss);
+  #define macro_f_int64ss_t_decrease_by(status, int64ss, amount) status = f_int64ss_decrease_by(amount, &int64ss);
+  #define macro_f_int64ss_t_decimate_by(status, int64ss, amount) status = f_int64ss_decimate_by(amount, &int64ss);
 
-  #define macro_f_int64ss_t_delete_simple(int64ss)  f_type_int64ss_resize(0, &int64ss);
-  #define macro_f_int64ss_t_destroy_simple(int64ss) f_type_int64ss_adjust(0, &int64ss);
+  #define macro_f_int64ss_t_delete_simple(int64ss)  f_int64ss_resize(0, &int64ss);
+  #define macro_f_int64ss_t_destroy_simple(int64ss) f_int64ss_adjust(0, &int64ss);
 #endif // _di_f_int64ss_t_
 
 /**
@@ -454,16 +454,16 @@ extern "C" {
 #ifndef _di_f_uint64s_t_
   #define macro_f_uint64s_t_clear(uint64s) macro_f_memory_structures_clear(uint64s)
 
-  #define macro_f_uint64s_t_resize(status, uint64s, length) status = f_type_uint64s_resize(length, &uint64s);
-  #define macro_f_uint64s_t_adjust(status, uint64s, length) status = f_type_uint64s_adjust(length, &uint64s);
+  #define macro_f_uint64s_t_resize(status, uint64s, length) status = f_uint64s_resize(length, &uint64s);
+  #define macro_f_uint64s_t_adjust(status, uint64s, length) status = f_uint64s_adjust(length, &uint64s);
 
-  #define macro_f_uint64s_t_increase(status, step, uint64s)      status = f_type_uint64s_increase(step, &uint64s);
-  #define macro_f_uint64s_t_increase_by(status, uint64s, amount) status = f_type_uint64s_increase_by(amount, &uint64s);
-  #define macro_f_uint64s_t_decrease_by(status, uint64s, amount) status = f_type_uint64s_decrease_by(amount, &uint64s);
-  #define macro_f_uint64s_t_decimate_by(status, uint64s, amount) status = f_type_uint64s_decimate_by(amount, &uint64s);
+  #define macro_f_uint64s_t_increase(status, step, uint64s)      status = f_uint64s_increase(step, &uint64s);
+  #define macro_f_uint64s_t_increase_by(status, uint64s, amount) status = f_uint64s_increase_by(amount, &uint64s);
+  #define macro_f_uint64s_t_decrease_by(status, uint64s, amount) status = f_uint64s_decrease_by(amount, &uint64s);
+  #define macro_f_uint64s_t_decimate_by(status, uint64s, amount) status = f_uint64s_decimate_by(amount, &uint64s);
 
-  #define macro_f_uint64s_t_delete_simple(uint64s)  f_type_uint64s_resize(0, &uint64s);
-  #define macro_f_uint64s_t_destroy_simple(uint64s) f_type_uint64s_adjust(0, &uint64s);
+  #define macro_f_uint64s_t_delete_simple(uint64s)  f_uint64s_resize(0, &uint64s);
+  #define macro_f_uint64s_t_destroy_simple(uint64s) f_uint64s_adjust(0, &uint64s);
 #endif // _di_f_uint64s_t_
 
 /**
@@ -472,16 +472,16 @@ extern "C" {
 #ifndef _di_f_uint64ss_t_
   #define macro_f_uint64ss_t_clear(uint64ss) macro_f_memory_structures_clear(uint64ss)
 
-  #define macro_f_uint64ss_t_resize(status, uint64ss, length) status = f_type_uint64ss_resize(length, &uint64ss);
-  #define macro_f_uint64ss_t_adjust(status, uint64ss, length) status = f_type_uint64ss_adjust(length, &uint64ss);
+  #define macro_f_uint64ss_t_resize(status, uint64ss, length) status = f_uint64ss_resize(length, &uint64ss);
+  #define macro_f_uint64ss_t_adjust(status, uint64ss, length) status = f_uint64ss_adjust(length, &uint64ss);
 
-  #define macro_f_uint64ss_t_increase(status, step, uint64ss)      status = f_type_uint64ss_increase(step, &uint64ss);
-  #define macro_f_uint64ss_t_increase_by(status, uint64ss, amount) status = f_type_uint64ss_increase_by(amount, &uint64ss);
-  #define macro_f_uint64ss_t_decrease_by(status, uint64ss, amount) status = f_type_uint64ss_decrease_by(amount, &uint64ss);
-  #define macro_f_uint64ss_t_decimate_by(status, uint64ss, amount) status = f_type_uint64ss_decimate_by(amount, &uint64ss);
+  #define macro_f_uint64ss_t_increase(status, step, uint64ss)      status = f_uint64ss_increase(step, &uint64ss);
+  #define macro_f_uint64ss_t_increase_by(status, uint64ss, amount) status = f_uint64ss_increase_by(amount, &uint64ss);
+  #define macro_f_uint64ss_t_decrease_by(status, uint64ss, amount) status = f_uint64ss_decrease_by(amount, &uint64ss);
+  #define macro_f_uint64ss_t_decimate_by(status, uint64ss, amount) status = f_uint64ss_decimate_by(amount, &uint64ss);
 
-  #define macro_f_uint64ss_t_delete_simple(uint64ss)  f_type_uint64ss_resize(0, &uint64ss);
-  #define macro_f_uint64ss_t_destroy_simple(uint64ss) f_type_uint64ss_adjust(0, &uint64ss);
+  #define macro_f_uint64ss_t_delete_simple(uint64ss)  f_uint64ss_resize(0, &uint64ss);
+  #define macro_f_uint64ss_t_destroy_simple(uint64ss) f_uint64ss_adjust(0, &uint64ss);
 #endif // _di_f_uint64ss_t_
 
 /**
@@ -490,16 +490,16 @@ extern "C" {
 #ifndef _di_f_int128s_t_
   #define macro_f_int128s_t_clear(int128s) macro_f_memory_structures_clear(int128s)
 
-  #define macro_f_int128s_t_resize(status, int128s, length) status = f_type_int128s_resize(length, &int128s);
-  #define macro_f_int128s_t_adjust(status, int128s, length) status = f_type_int128s_adjust(length, &int128s);
+  #define macro_f_int128s_t_resize(status, int128s, length) status = f_int128s_resize(length, &int128s);
+  #define macro_f_int128s_t_adjust(status, int128s, length) status = f_int128s_adjust(length, &int128s);
 
-  #define macro_f_int128s_t_delete_simple(int128s)  f_type_int128s_resize(0, &int128s);
-  #define macro_f_int128s_t_destroy_simple(int128s) f_type_int128s_adjust(0, &int128s);
+  #define macro_f_int128s_t_delete_simple(int128s)  f_int128s_resize(0, &int128s);
+  #define macro_f_int128s_t_destroy_simple(int128s) f_int128s_adjust(0, &int128s);
 
-  #define macro_f_int128s_t_increase(status, step, int128s)      status = f_type_int128s_increase(step, &int128s);
-  #define macro_f_int128s_t_increase_by(status, int128s, amount) status = f_type_int128s_increase_by(amount, &int128s);
-  #define macro_f_int128s_t_decrease_by(status, int128s, amount) status = f_type_int128s_decrease_by(amount, &int128s);
-  #define macro_f_int128s_t_decimate_by(status, int128s, amount) status = f_type_int128s_decimate_by(amount, &int128s);
+  #define macro_f_int128s_t_increase(status, step, int128s)      status = f_int128s_increase(step, &int128s);
+  #define macro_f_int128s_t_increase_by(status, int128s, amount) status = f_int128s_increase_by(amount, &int128s);
+  #define macro_f_int128s_t_decrease_by(status, int128s, amount) status = f_int128s_decrease_by(amount, &int128s);
+  #define macro_f_int128s_t_decimate_by(status, int128s, amount) status = f_int128s_decimate_by(amount, &int128s);
 #endif // _di_f_int128s_t_
 
 /**
@@ -508,16 +508,16 @@ extern "C" {
 #ifndef _di_f_int128ss_t_
   #define macro_f_int128ss_t_clear(int128ss) macro_f_memory_structures_clear(int128ss)
 
-  #define macro_f_int128ss_t_resize(status, int128ss, length) status = f_type_int128ss_resize(length, &int128ss);
-  #define macro_f_int128ss_t_adjust(status, int128ss, length) status = f_type_int128ss_adjust(length, &int128ss);
+  #define macro_f_int128ss_t_resize(status, int128ss, length) status = f_int128ss_resize(length, &int128ss);
+  #define macro_f_int128ss_t_adjust(status, int128ss, length) status = f_int128ss_adjust(length, &int128ss);
 
-  #define macro_f_int128ss_t_delete_simple(int128ss)  f_type_int128ss_resize(0, &int128ss);
-  #define macro_f_int128ss_t_destroy_simple(int128ss) f_type_int128ss_adjust(0, &int128ss);
+  #define macro_f_int128ss_t_delete_simple(int128ss)  f_int128ss_resize(0, &int128ss);
+  #define macro_f_int128ss_t_destroy_simple(int128ss) f_int128ss_adjust(0, &int128ss);
 
-  #define macro_f_int128ss_t_increase(status, step, int128ss)      status = f_type_int128ss_increase(step, &int128ss);
-  #define macro_f_int128ss_t_increase_by(status, int128ss, amount) status = f_type_int128ss_increase_by(amount, &int128ss);
-  #define macro_f_int128ss_t_decrease_by(status, int128ss, amount) status = f_type_int128ss_decrease_by(amount, &int128ss);
-  #define macro_f_int128ss_t_decimate_by(status, int128ss, amount) status = f_type_int128ss_decimate_by(amount, &int128ss);
+  #define macro_f_int128ss_t_increase(status, step, int128ss)      status = f_int128ss_increase(step, &int128ss);
+  #define macro_f_int128ss_t_increase_by(status, int128ss, amount) status = f_int128ss_increase_by(amount, &int128ss);
+  #define macro_f_int128ss_t_decrease_by(status, int128ss, amount) status = f_int128ss_decrease_by(amount, &int128ss);
+  #define macro_f_int128ss_t_decimate_by(status, int128ss, amount) status = f_int128ss_decimate_by(amount, &int128ss);
 #endif // _di_f_int128ss_t_
 
 /**
@@ -526,16 +526,16 @@ extern "C" {
 #ifndef _di_f_uint128s_t_
   #define macro_f_uint128s_t_clear(uint128s) macro_f_memory_structures_clear(uint128s)
 
-  #define macro_f_uint128s_t_resize(status, uint128s, length) status = f_type_uint128s_resize(length, &uint128s);
-  #define macro_f_uint128s_t_adjust(status, uint128s, length) status = f_type_uint128s_adjust(length, &uint128s);
+  #define macro_f_uint128s_t_resize(status, uint128s, length) status = f_uint128s_resize(length, &uint128s);
+  #define macro_f_uint128s_t_adjust(status, uint128s, length) status = f_uint128s_adjust(length, &uint128s);
 
-  #define macro_f_uint128s_t_delete_simple(uint128s)  f_type_uint128s_resize(0, &uint128s);
-  #define macro_f_uint128s_t_destroy_simple(uint128s) f_type_uint128s_adjust(0, &uint128s);
+  #define macro_f_uint128s_t_delete_simple(uint128s)  f_uint128s_resize(0, &uint128s);
+  #define macro_f_uint128s_t_destroy_simple(uint128s) f_uint128s_adjust(0, &uint128s);
 
-  #define macro_f_uint128s_t_increase(status, step, uint128s)      status = f_type_uint128s_increase(step, &uint128s);
-  #define macro_f_uint128s_t_increase_by(status, uint128s, amount) status = f_type_uint128s_increase_by(amount, &uint128s);
-  #define macro_f_uint128s_t_decrease_by(status, uint128s, amount) status = f_type_uint128s_decrease_by(amount, &uint128s);
-  #define macro_f_uint128s_t_decimate_by(status, uint128s, amount) status = f_type_uint128s_decimate_by(amount, &uint128s);
+  #define macro_f_uint128s_t_increase(status, step, uint128s)      status = f_uint128s_increase(step, &uint128s);
+  #define macro_f_uint128s_t_increase_by(status, uint128s, amount) status = f_uint128s_increase_by(amount, &uint128s);
+  #define macro_f_uint128s_t_decrease_by(status, uint128s, amount) status = f_uint128s_decrease_by(amount, &uint128s);
+  #define macro_f_uint128s_t_decimate_by(status, uint128s, amount) status = f_uint128s_decimate_by(amount, &uint128s);
 #endif // _di_f_uint128s_t_
 
 /**
@@ -544,16 +544,16 @@ extern "C" {
 #ifndef _di_f_uint128ss_t_
   #define macro_f_uint128ss_t_clear(uint128ss) macro_f_memory_structures_clear(uint128ss)
 
-  #define macro_f_uint128ss_t_resize(status, uint128ss, length) status = f_type_uint128ss_resize(length, &uint128ss);
-  #define macro_f_uint128ss_t_adjust(status, uint128ss, length) status = f_type_uint128ss_adjust(length, &uint128ss);
+  #define macro_f_uint128ss_t_resize(status, uint128ss, length) status = f_uint128ss_resize(length, &uint128ss);
+  #define macro_f_uint128ss_t_adjust(status, uint128ss, length) status = f_uint128ss_adjust(length, &uint128ss);
 
-  #define macro_f_uint128ss_t_delete_simple(uint128ss)  f_type_uint128ss_resize(0, &uint128ss);
-  #define macro_f_uint128ss_t_destroy_simple(uint128ss) f_type_uint128ss_adjust(0, &uint128ss);
+  #define macro_f_uint128ss_t_delete_simple(uint128ss)  f_uint128ss_resize(0, &uint128ss);
+  #define macro_f_uint128ss_t_destroy_simple(uint128ss) f_uint128ss_adjust(0, &uint128ss);
 
-  #define macro_f_uint128ss_t_increase(status, step, uint128ss)      status = f_type_uint128ss_increase(step, &uint128ss);
-  #define macro_f_uint128ss_t_increase_by(status, uint128ss, amount) status = f_type_uint128ss_increase_by(amount, &uint128ss);
-  #define macro_f_uint128ss_t_decrease_by(status, uint128ss, amount) status = f_type_uint128ss_decrease_by(amount, &uint128ss);
-  #define macro_f_uint128ss_t_decimate_by(status, uint128ss, amount) status = f_type_uint128ss_decimate_by(amount, &uint128ss);
+  #define macro_f_uint128ss_t_increase(status, step, uint128ss)      status = f_uint128ss_increase(step, &uint128ss);
+  #define macro_f_uint128ss_t_increase_by(status, uint128ss, amount) status = f_uint128ss_increase_by(amount, &uint128ss);
+  #define macro_f_uint128ss_t_decrease_by(status, uint128ss, amount) status = f_uint128ss_decrease_by(amount, &uint128ss);
+  #define macro_f_uint128ss_t_decimate_by(status, uint128ss, amount) status = f_uint128ss_decimate_by(amount, &uint128ss);
 #endif // _di_f_uint128ss_t_
 
 #ifdef __cplusplus
index 5eb1a0effa33aeec5a31fa6063ff13ad11c58c70..0316dc138ba911f44c3ec53561c68a0aa1e90697 100644 (file)
@@ -6,60 +6,60 @@
 extern "C" {
 #endif
 
-#ifndef _di_f_type_array_lengths_adjust_
-  f_status_t f_type_array_lengths_adjust(const f_array_length_t length, f_array_lengths_t *lengths) {
+#ifndef _di_f_array_lengths_adjust_
+  f_status_t f_array_lengths_adjust(const f_array_length_t length, f_array_lengths_t *lengths) {
     #ifndef _di_level_0_parameter_checking_
       if (!lengths) return F_status_set_error(F_parameter);
     #endif // _di_level_0_parameter_checking_
 
-    return private_f_type_array_lengths_adjust(length, lengths);
+    return private_f_array_lengths_adjust(length, lengths);
   }
-#endif // _di_f_type_array_lengths_adjust_
+#endif // _di_f_array_lengths_adjust_
 
-#ifndef _di_f_type_array_lengths_append_
-  f_status_t f_type_array_lengths_append(const f_array_lengths_t source, f_array_lengths_t *destination) {
+#ifndef _di_f_array_lengths_append_
+  f_status_t f_array_lengths_append(const f_array_lengths_t source, f_array_lengths_t *destination) {
     #ifndef _di_level_0_parameter_checking_
       if (!destination) return F_status_set_error(F_parameter);
     #endif // _di_level_0_parameter_checking_
 
     if (!source.used) return F_data_not;
 
-    return private_f_type_array_lengths_append(source, destination);
+    return private_f_array_lengths_append(source, destination);
   }
-#endif // _di_f_type_array_lengths_append_
+#endif // _di_f_array_lengths_append_
 
-#ifndef _di_f_type_array_lengths_decimate_by_
-  f_status_t f_type_array_lengths_decimate_by(const f_array_length_t amount, f_array_lengths_t *lengths) {
+#ifndef _di_f_array_lengths_decimate_by_
+  f_status_t f_array_lengths_decimate_by(const f_array_length_t amount, f_array_lengths_t *lengths) {
     #ifndef _di_level_0_parameter_checking_
       if (!amount) return F_status_set_error(F_parameter);
       if (!lengths) return F_status_set_error(F_parameter);
     #endif // _di_level_0_parameter_checking_
 
     if (lengths->size - amount > 0) {
-      return private_f_type_array_lengths_adjust(lengths->size - amount, lengths);
+      return private_f_array_lengths_adjust(lengths->size - amount, lengths);
     }
 
-    return private_f_type_array_lengths_adjust(0, lengths);
+    return private_f_array_lengths_adjust(0, lengths);
   }
-#endif // _di_f_type_array_lengths_decimate_by_
+#endif // _di_f_array_lengths_decimate_by_
 
-#ifndef _di_f_type_array_lengths_decrease_by_
-  f_status_t f_type_array_lengths_decrease_by(const f_array_length_t amount, f_array_lengths_t *lengths) {
+#ifndef _di_f_array_lengths_decrease_by_
+  f_status_t f_array_lengths_decrease_by(const f_array_length_t amount, f_array_lengths_t *lengths) {
     #ifndef _di_level_0_parameter_checking_
       if (!amount) return F_status_set_error(F_parameter);
       if (!lengths) return F_status_set_error(F_parameter);
     #endif // _di_level_0_parameter_checking_
 
     if (lengths->size - amount > 0) {
-      return private_f_type_array_lengths_resize(lengths->size - amount, lengths);
+      return private_f_array_lengths_resize(lengths->size - amount, lengths);
     }
 
-    return private_f_type_array_lengths_resize(0, lengths);
+    return private_f_array_lengths_resize(0, lengths);
   }
-#endif // _di_f_type_array_lengths_decrease_by_
+#endif // _di_f_array_lengths_decrease_by_
 
-#ifndef _di_f_type_array_lengths_increase_
-  f_status_t f_type_array_lengths_increase(const uint16_t step, f_array_lengths_t *lengths) {
+#ifndef _di_f_array_lengths_increase_
+  f_status_t f_array_lengths_increase(const uint16_t step, f_array_lengths_t *lengths) {
     #ifndef _di_level_0_parameter_checking_
       if (!step) return F_status_set_error(F_parameter);
       if (!lengths) return F_status_set_error(F_parameter);
@@ -76,15 +76,15 @@ extern "C" {
         size = F_array_length_t_size_d;
       }
 
-      return private_f_type_array_lengths_resize(size, lengths);
+      return private_f_array_lengths_resize(size, lengths);
     }
 
     return F_data_not;
   }
-#endif // _di_f_type_array_lengths_increase_
+#endif // _di_f_array_lengths_increase_
 
-#ifndef _di_f_type_array_lengths_increase_by_
-  f_status_t f_type_array_lengths_increase_by(const f_array_length_t amount, f_array_lengths_t *lengths) {
+#ifndef _di_f_array_lengths_increase_by_
+  f_status_t f_array_lengths_increase_by(const f_array_length_t amount, f_array_lengths_t *lengths) {
     #ifndef _di_level_0_parameter_checking_
       if (!amount) return F_status_set_error(F_parameter);
       if (!lengths) return F_status_set_error(F_parameter);
@@ -95,35 +95,35 @@ extern "C" {
         return F_status_set_error(F_array_too_large);
       }
 
-      return private_f_type_array_lengths_resize(lengths->used + amount, lengths);
+      return private_f_array_lengths_resize(lengths->used + amount, lengths);
     }
 
     return F_data_not;
   }
-#endif // _di_f_type_array_lengths_increase_by_
+#endif // _di_f_array_lengths_increase_by_
 
-#ifndef _di_f_type_array_lengths_resize_
-  f_status_t f_type_array_lengths_resize(const f_array_length_t length, f_array_lengths_t *lengths) {
+#ifndef _di_f_array_lengths_resize_
+  f_status_t f_array_lengths_resize(const f_array_length_t length, f_array_lengths_t *lengths) {
     #ifndef _di_level_0_parameter_checking_
       if (!lengths) return F_status_set_error(F_parameter);
     #endif // _di_level_0_parameter_checking_
 
-    return private_f_type_array_lengths_resize(length, lengths);
+    return private_f_array_lengths_resize(length, lengths);
   }
-#endif // _di_f_type_array_lengths_resize_
+#endif // _di_f_array_lengths_resize_
 
-#ifndef _di_f_type_array_lengthss_adjust_
-  f_status_t f_type_array_lengthss_adjust(const f_array_length_t length, f_array_lengthss_t *lengthss) {
+#ifndef _di_f_array_lengthss_adjust_
+  f_status_t f_array_lengthss_adjust(const f_array_length_t length, f_array_lengthss_t *lengthss) {
     #ifndef _di_level_0_parameter_checking_
       if (!lengthss) return F_status_set_error(F_parameter);
     #endif // _di_level_0_parameter_checking_
 
-    return private_f_type_array_lengthss_adjust(length, lengthss);
+    return private_f_array_lengthss_adjust(length, lengthss);
   }
-#endif // _di_f_type_array_lengthss_adjust_
+#endif // _di_f_array_lengthss_adjust_
 
-#ifndef _di_f_type_array_lengthss_append_
-  f_status_t f_type_array_lengthss_append(const f_array_lengthss_t source, f_array_lengthss_t *destination) {
+#ifndef _di_f_array_lengthss_append_
+  f_status_t f_array_lengthss_append(const f_array_lengthss_t source, f_array_lengthss_t *destination) {
     #ifndef _di_level_0_parameter_checking_
       if (!destination) return F_status_set_error(F_parameter);
     #endif // _di_level_0_parameter_checking_
@@ -133,51 +133,51 @@ extern "C" {
     f_status_t status = F_none;
 
     if (destination->used + source.used > destination->size) {
-      status = private_f_type_array_lengthss_resize(destination->used + source.used, destination);
+      status = private_f_array_lengthss_resize(destination->used + source.used, destination);
       if (F_status_is_error(status)) return status;
     }
 
     for (f_array_length_t i = 0; i < source.used; ++i, ++destination->used) {
-      status = private_f_type_array_lengths_append(source.array[i], &destination->array[destination->used]);
+      status = private_f_array_lengths_append(source.array[i], &destination->array[destination->used]);
       if (F_status_is_error(status)) return status;
     } // for
 
     return F_none;
   }
-#endif // _di_f_type_array_lengthss_append_
+#endif // _di_f_array_lengthss_append_
 
-#ifndef _di_f_type_array_lengthss_decimate_by_
-  f_status_t f_type_array_lengthss_decimate_by(const f_array_length_t amount, f_array_lengthss_t *lengthss) {
+#ifndef _di_f_array_lengthss_decimate_by_
+  f_status_t f_array_lengthss_decimate_by(const f_array_length_t amount, f_array_lengthss_t *lengthss) {
     #ifndef _di_level_0_parameter_checking_
       if (!amount) return F_status_set_error(F_parameter);
       if (!lengthss) return F_status_set_error(F_parameter);
     #endif // _di_level_0_parameter_checking_
 
     if (lengthss->size - amount > 0) {
-      return private_f_type_array_lengthss_adjust(lengthss->size - amount, lengthss);
+      return private_f_array_lengthss_adjust(lengthss->size - amount, lengthss);
     }
 
-    return private_f_type_array_lengthss_adjust(0, lengthss);
+    return private_f_array_lengthss_adjust(0, lengthss);
   }
-#endif // _di_f_type_array_lengthss_decimate_by_
+#endif // _di_f_array_lengthss_decimate_by_
 
-#ifndef _di_f_type_array_lengthss_decrease_by_
-  f_status_t f_type_array_lengthss_decrease_by(const f_array_length_t amount, f_array_lengthss_t *lengthss) {
+#ifndef _di_f_array_lengthss_decrease_by_
+  f_status_t f_array_lengthss_decrease_by(const f_array_length_t amount, f_array_lengthss_t *lengthss) {
     #ifndef _di_level_0_parameter_checking_
       if (!amount) return F_status_set_error(F_parameter);
       if (!lengthss) return F_status_set_error(F_parameter);
     #endif // _di_level_0_parameter_checking_
 
     if (lengthss->size - amount > 0) {
-      return private_f_type_array_lengthss_resize(lengthss->size - amount, lengthss);
+      return private_f_array_lengthss_resize(lengthss->size - amount, lengthss);
     }
 
-    return private_f_type_array_lengthss_resize(0, lengthss);
+    return private_f_array_lengthss_resize(0, lengthss);
   }
-#endif // _di_f_type_array_lengthss_decrease_by_
+#endif // _di_f_array_lengthss_decrease_by_
 
-#ifndef _di_f_type_array_lengthss_increase_
-  f_status_t f_type_array_lengthss_increase(const uint16_t step, f_array_lengthss_t *lengthss) {
+#ifndef _di_f_array_lengthss_increase_
+  f_status_t f_array_lengthss_increase(const uint16_t step, f_array_lengthss_t *lengthss) {
     #ifndef _di_level_0_parameter_checking_
       if (!step) return F_status_set_error(F_parameter);
       if (!lengthss) return F_status_set_error(F_parameter);
@@ -194,15 +194,15 @@ extern "C" {
         size = F_array_length_t_size_d;
       }
 
-      return private_f_type_array_lengthss_resize(size, lengthss);
+      return private_f_array_lengthss_resize(size, lengthss);
     }
 
     return F_data_not;
   }
-#endif // _di_f_type_array_lengthss_increase_
+#endif // _di_f_array_lengthss_increase_
 
-#ifndef _di_f_type_array_lengthss_increase_by_
-  f_status_t f_type_array_lengthss_increase_by(const f_array_length_t amount, f_array_lengthss_t *lengthss) {
+#ifndef _di_f_array_lengthss_increase_by_
+  f_status_t f_array_lengthss_increase_by(const f_array_length_t amount, f_array_lengthss_t *lengthss) {
     #ifndef _di_level_0_parameter_checking_
       if (!amount) return F_status_set_error(F_parameter);
       if (!lengthss) return F_status_set_error(F_parameter);
@@ -213,22 +213,22 @@ extern "C" {
         return F_status_set_error(F_array_too_large);
       }
 
-      return private_f_type_array_lengthss_resize(lengthss->used + amount, lengthss);
+      return private_f_array_lengthss_resize(lengthss->used + amount, lengthss);
     }
 
     return F_data_not;
   }
-#endif // _di_f_type_array_lengthss_increase_by_
+#endif // _di_f_array_lengthss_increase_by_
 
-#ifndef _di_f_type_array_lengthss_resize_
-  f_status_t f_type_array_lengthss_resize(const f_array_length_t length, f_array_lengthss_t *lengthss) {
+#ifndef _di_f_array_lengthss_resize_
+  f_status_t f_array_lengthss_resize(const f_array_length_t length, f_array_lengthss_t *lengthss) {
     #ifndef _di_level_0_parameter_checking_
       if (!lengthss) return F_status_set_error(F_parameter);
     #endif // _di_level_0_parameter_checking_
 
-    return private_f_type_array_lengthss_resize(length, lengthss);
+    return private_f_array_lengthss_resize(length, lengthss);
   }
-#endif // _di_f_type_array_lengthss_resize_
+#endif // _di_f_array_lengthss_resize_
 
 #ifdef __cplusplus
 } // extern "C"
index 5517cb75e7b68bcc2b819b3f2855cd04da380e8a..b735f62ccef90487cc54fb1ab84a2eadad187aab 100644 (file)
@@ -31,9 +31,9 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_adjust().
  */
-#ifndef _di_f_type_array_lengths_adjust_
-  extern f_status_t f_type_array_lengths_adjust(const f_array_length_t length, f_array_lengths_t *lengths);
-#endif // _di_f_type_array_lengths_adjust_
+#ifndef _di_f_array_lengths_adjust_
+  extern f_status_t f_array_lengths_adjust(const f_array_length_t length, f_array_lengths_t *lengths);
+#endif // _di_f_array_lengths_adjust_
 
 /**
  * Append the source lengths onto the destination.
@@ -51,9 +51,9 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  */
-#ifndef _di_f_type_array_lengths_append_
-  extern f_status_t f_type_array_lengths_append(const f_array_lengths_t source, f_array_lengths_t *destination);
-#endif // _di_f_type_array_lengths_append_
+#ifndef _di_f_array_lengths_append_
+  extern f_status_t f_array_lengths_append(const f_array_lengths_t source, f_array_lengths_t *destination);
+#endif // _di_f_array_lengths_append_
 
 /**
  * Resize the string lengths array to a smaller size.
@@ -74,9 +74,9 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_adjust().
  */
-#ifndef _di_f_type_array_lengths_decimate_by_
-  extern f_status_t f_type_array_lengths_decimate_by(const f_array_length_t amount, f_array_lengths_t *lengths);
-#endif // _di_f_type_array_lengths_decimate_by_
+#ifndef _di_f_array_lengths_decimate_by_
+  extern f_status_t f_array_lengths_decimate_by(const f_array_length_t amount, f_array_lengths_t *lengths);
+#endif // _di_f_array_lengths_decimate_by_
 
 /**
  * Resize the string lengths array to a smaller size.
@@ -97,9 +97,9 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  */
-#ifndef _di_f_type_array_lengths_decrease_by_
-  extern f_status_t f_type_array_lengths_decrease_by(const f_array_length_t amount, f_array_lengths_t *lengths);
-#endif // _di_f_type_array_lengths_decrease_by_
+#ifndef _di_f_array_lengths_decrease_by_
+  extern f_status_t f_array_lengths_decrease_by(const f_array_length_t amount, f_array_lengths_t *lengths);
+#endif // _di_f_array_lengths_decrease_by_
 
 /**
  * Increase the size of the string lengths array, but only if necesary.
@@ -122,9 +122,9 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  */
-#ifndef _di_f_type_array_lengths_increase_
-  extern f_status_t f_type_array_lengths_increase(const uint16_t step, f_array_lengths_t *lengths);
-#endif // _di_f_type_array_lengths_increase_
+#ifndef _di_f_array_lengths_increase_
+  extern f_status_t f_array_lengths_increase(const uint16_t step, f_array_lengths_t *lengths);
+#endif // _di_f_array_lengths_increase_
 
 /**
  * Resize the string lengths array to a larger size.
@@ -147,9 +147,9 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  */
-#ifndef _di_f_type_array_lengths_increase_by_
-  extern f_status_t f_type_array_lengths_increase_by(const f_array_length_t amount, f_array_lengths_t *lengths);
-#endif // _di_f_type_array_lengths_increase_by_
+#ifndef _di_f_array_lengths_increase_by_
+  extern f_status_t f_array_lengths_increase_by(const f_array_length_t amount, f_array_lengths_t *lengths);
+#endif // _di_f_array_lengths_increase_by_
 
 /**
  * Resize the string lengths array.
@@ -166,9 +166,9 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  */
-#ifndef _di_f_type_array_lengths_resize_
-  extern f_status_t f_type_array_lengths_resize(const f_array_length_t length, f_array_lengths_t *lengths);
-#endif // _di_f_type_array_lengths_resize_
+#ifndef _di_f_array_lengths_resize_
+  extern f_status_t f_array_lengths_resize(const f_array_length_t length, f_array_lengths_t *lengths);
+#endif // _di_f_array_lengths_resize_
 
 /**
  * Resize the string lengthss array.
@@ -186,9 +186,9 @@ extern "C" {
  *   Errors (with error bit) from: f_memory_adjust().
  *   Errors (with error bit) from: f_memory_destroy().
  */
-#ifndef _di_f_type_array_lengthss_adjust_
-  extern f_status_t f_type_array_lengthss_adjust(const f_array_length_t length, f_array_lengthss_t *lengthss);
-#endif // _di_f_type_array_lengthss_adjust_
+#ifndef _di_f_array_lengthss_adjust_
+  extern f_status_t f_array_lengthss_adjust(const f_array_length_t length, f_array_lengthss_t *lengthss);
+#endif // _di_f_array_lengthss_adjust_
 
 /**
  * Append the source lengthss onto the destination.
@@ -206,9 +206,9 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  */
-#ifndef _di_f_type_array_lengthss_append_
-  extern f_status_t f_type_array_lengthss_append(const f_array_lengthss_t source, f_array_lengthss_t *destination);
-#endif // _di_f_type_array_lengthss_append_
+#ifndef _di_f_array_lengthss_append_
+  extern f_status_t f_array_lengthss_append(const f_array_lengthss_t source, f_array_lengthss_t *destination);
+#endif // _di_f_array_lengthss_append_
 
 /**
  * Resize the string lengthss array.
@@ -226,9 +226,9 @@ extern "C" {
  *   Errors (with error bit) from: f_memory_adjust().
  *   Errors (with error bit) from: f_memory_destroy().
  */
-#ifndef _di_f_type_array_lengthss_adjust_
-  extern f_status_t f_type_array_lengthss_adjust(const f_array_length_t length, f_array_lengthss_t *lengthss);
-#endif // _di_f_type_array_lengthss_adjust_
+#ifndef _di_f_array_lengthss_adjust_
+  extern f_status_t f_array_lengthss_adjust(const f_array_length_t length, f_array_lengthss_t *lengthss);
+#endif // _di_f_array_lengthss_adjust_
 
 /**
  * Resize the string lengthss array to a smaller size.
@@ -250,9 +250,9 @@ extern "C" {
  *   Errors (with error bit) from: f_memory_adjust().
  *   Errors (with error bit) from: f_memory_destroy().
  */
-#ifndef _di_f_type_array_lengthss_decimate_by_
-  extern f_status_t f_type_array_lengthss_decimate_by(const f_array_length_t amount, f_array_lengthss_t *lengthss);
-#endif // _di_f_type_array_lengthss_decimate_by_
+#ifndef _di_f_array_lengthss_decimate_by_
+  extern f_status_t f_array_lengthss_decimate_by(const f_array_length_t amount, f_array_lengthss_t *lengthss);
+#endif // _di_f_array_lengthss_decimate_by_
 
 /**
  * Resize the string lengthss array to a smaller size.
@@ -274,9 +274,9 @@ extern "C" {
  *   Errors (with error bit) from: f_memory_delete().
  *   Errors (with error bit) from: f_memory_resize().
  */
-#ifndef _di_f_type_array_lengthss_decrease_by_
-  extern f_status_t f_type_array_lengthss_decrease_by(const f_array_length_t amount, f_array_lengthss_t *lengthss);
-#endif // _di_f_type_array_lengthss_decrease_by_
+#ifndef _di_f_array_lengthss_decrease_by_
+  extern f_status_t f_array_lengthss_decrease_by(const f_array_length_t amount, f_array_lengthss_t *lengthss);
+#endif // _di_f_array_lengthss_decrease_by_
 
 /**
  * Increase the size of the string lengthss array, but only if necessary.
@@ -299,9 +299,9 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  */
-#ifndef _di_f_type_array_lengthss_increase_
-  extern f_status_t f_type_array_lengthss_increase(const uint16_t step, f_array_lengthss_t *lengthss);
-#endif // _di_f_type_array_lengthss_increase_
+#ifndef _di_f_array_lengthss_increase_
+  extern f_status_t f_array_lengthss_increase(const uint16_t step, f_array_lengthss_t *lengthss);
+#endif // _di_f_array_lengthss_increase_
 
 /**
  * Resize the string lengthss array to a larger size.
@@ -324,9 +324,9 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  */
-#ifndef _di_f_type_array_lengthss_increase_by_
-  extern f_status_t f_type_array_lengthss_increase_by(const f_array_length_t amount, f_array_lengthss_t *lengthss);
-#endif // _di_f_type_array_lengthss_increase_by_
+#ifndef _di_f_array_lengthss_increase_by_
+  extern f_status_t f_array_lengthss_increase_by(const f_array_length_t amount, f_array_lengthss_t *lengthss);
+#endif // _di_f_array_lengthss_increase_by_
 
 /**
  * Resize the string lengthss array.
@@ -344,9 +344,9 @@ extern "C" {
  *   Errors (with error bit) from: f_memory_delete().
  *   Errors (with error bit) from: f_memory_resize().
  */
-#ifndef _di_f_type_array_lengthss_resize_
-  extern f_status_t f_type_array_lengthss_resize(const f_array_length_t length, f_array_lengthss_t *lengthss);
-#endif // _di_f_type_array_lengthss_resize_
+#ifndef _di_f_array_lengthss_resize_
+  extern f_status_t f_array_lengthss_resize(const f_array_length_t length, f_array_lengthss_t *lengthss);
+#endif // _di_f_array_lengthss_resize_
 
 #ifdef __cplusplus
 } // extern "C"
index d4e937d0d65551b5216c541774f9be6a06f5b647..d47f130bbef56bda034d6d767a7909e2544b8d92 100644 (file)
@@ -6,60 +6,60 @@
 extern "C" {
 #endif
 
-#ifndef _di_f_type_cells_adjust_
-  f_status_t f_type_cells_adjust(const f_array_length_t length, f_cells_t *cells) {
+#ifndef _di_f_cells_adjust_
+  f_status_t f_cells_adjust(const f_array_length_t length, f_cells_t *cells) {
     #ifndef _di_level_0_parameter_checking_
       if (!cells) return F_status_set_error(F_parameter);
     #endif // _di_level_0_parameter_checking_
 
-    return private_f_type_cells_adjust(length, cells);
+    return private_f_cells_adjust(length, cells);
   }
-#endif // _di_f_type_cells_adjust_
+#endif // _di_f_cells_adjust_
 
-#ifndef _di_f_type_cells_append_
-  f_status_t f_type_cells_append(const f_cells_t source, f_cells_t *destination) {
+#ifndef _di_f_cells_append_
+  f_status_t f_cells_append(const f_cells_t source, f_cells_t *destination) {
     #ifndef _di_level_0_parameter_checking_
       if (!destination) return F_status_set_error(F_parameter);
     #endif // _di_level_0_parameter_checking_
 
     if (!source.used) return F_data_not;
 
-    return private_f_type_cells_append(source, destination);
+    return private_f_cells_append(source, destination);
   }
-#endif // _di_f_type_cells_append_
+#endif // _di_f_cells_append_
 
-#ifndef _di_f_type_cells_decimate_by_
-  f_status_t f_type_cells_decimate_by(const f_array_length_t amount, f_cells_t *cells) {
+#ifndef _di_f_cells_decimate_by_
+  f_status_t f_cells_decimate_by(const f_array_length_t amount, f_cells_t *cells) {
     #ifndef _di_level_0_parameter_checking_
       if (!amount) return F_status_set_error(F_parameter);
       if (!cells) return F_status_set_error(F_parameter);
     #endif // _di_level_0_parameter_checking_
 
     if (cells->size - amount > 0) {
-      return private_f_type_cells_adjust(cells->size - amount, cells);
+      return private_f_cells_adjust(cells->size - amount, cells);
     }
 
-    return private_f_type_cells_adjust(0, cells);
+    return private_f_cells_adjust(0, cells);
   }
-#endif // _di_f_type_cells_decimate_by_
+#endif // _di_f_cells_decimate_by_
 
-#ifndef _di_f_type_cells_decrease_by_
-  f_status_t f_type_cells_decrease_by(const f_array_length_t amount, f_cells_t *cells) {
+#ifndef _di_f_cells_decrease_by_
+  f_status_t f_cells_decrease_by(const f_array_length_t amount, f_cells_t *cells) {
     #ifndef _di_level_0_parameter_checking_
       if (!amount) return F_status_set_error(F_parameter);
       if (!cells) return F_status_set_error(F_parameter);
     #endif // _di_level_0_parameter_checking_
 
     if (cells->size - amount > 0) {
-      return private_f_type_cells_resize(cells->size - amount, cells);
+      return private_f_cells_resize(cells->size - amount, cells);
     }
 
-    return private_f_type_cells_resize(0, cells);
+    return private_f_cells_resize(0, cells);
   }
-#endif // _di_f_type_cells_decrease_by_
+#endif // _di_f_cells_decrease_by_
 
-#ifndef _di_f_type_cells_increase_
-  f_status_t f_type_cells_increase(const uint16_t step, f_cells_t *cells) {
+#ifndef _di_f_cells_increase_
+  f_status_t f_cells_increase(const uint16_t step, f_cells_t *cells) {
     #ifndef _di_level_0_parameter_checking_
       if (!step) return F_status_set_error(F_parameter);
       if (!cells) return F_status_set_error(F_parameter);
@@ -76,15 +76,15 @@ extern "C" {
         size = F_array_length_t_size_d;
       }
 
-      return private_f_type_cells_resize(size, cells);
+      return private_f_cells_resize(size, cells);
     }
 
     return F_data_not;
   }
-#endif // _di_f_type_cells_increase_
+#endif // _di_f_cells_increase_
 
-#ifndef _di_f_type_cells_increase_by_
-  f_status_t f_type_cells_increase_by(const f_array_length_t amount, f_cells_t *cells) {
+#ifndef _di_f_cells_increase_by_
+  f_status_t f_cells_increase_by(const f_array_length_t amount, f_cells_t *cells) {
     #ifndef _di_level_0_parameter_checking_
       if (!amount) return F_status_set_error(F_parameter);
       if (!cells) return F_status_set_error(F_parameter);
@@ -95,35 +95,35 @@ extern "C" {
         return F_status_set_error(F_array_too_large);
       }
 
-      return private_f_type_cells_resize(cells->used + amount, cells);
+      return private_f_cells_resize(cells->used + amount, cells);
     }
 
     return F_data_not;
   }
-#endif // _di_f_type_cells_increase_by_
+#endif // _di_f_cells_increase_by_
 
-#ifndef _di_f_type_cells_resize_
-  f_status_t f_type_cells_resize(const f_array_length_t length, f_cells_t *cells) {
+#ifndef _di_f_cells_resize_
+  f_status_t f_cells_resize(const f_array_length_t length, f_cells_t *cells) {
     #ifndef _di_level_0_parameter_checking_
       if (!cells) return F_status_set_error(F_parameter);
     #endif // _di_level_0_parameter_checking_
 
-    return private_f_type_cells_resize(length, cells);
+    return private_f_cells_resize(length, cells);
   }
-#endif // _di_f_type_cells_resize_
+#endif // _di_f_cells_resize_
 
-#ifndef _di_f_type_cellss_adjust_
-  f_status_t f_type_cellss_adjust(const f_array_length_t length, f_cellss_t *cellss) {
+#ifndef _di_f_cellss_adjust_
+  f_status_t f_cellss_adjust(const f_array_length_t length, f_cellss_t *cellss) {
     #ifndef _di_level_0_parameter_checking_
       if (!cellss) return F_status_set_error(F_parameter);
     #endif // _di_level_0_parameter_checking_
 
-    return private_f_type_cellss_adjust(length, cellss);
+    return private_f_cellss_adjust(length, cellss);
   }
-#endif // _di_f_type_cellss_adjust_
+#endif // _di_f_cellss_adjust_
 
-#ifndef _di_f_type_cellss_append_
-  f_status_t f_type_cellss_append(const f_cellss_t source, f_cellss_t *destination) {
+#ifndef _di_f_cellss_append_
+  f_status_t f_cellss_append(const f_cellss_t source, f_cellss_t *destination) {
     #ifndef _di_level_0_parameter_checking_
       if (!destination) return F_status_set_error(F_parameter);
     #endif // _di_level_0_parameter_checking_
@@ -133,51 +133,51 @@ extern "C" {
     f_status_t status = F_none;
 
     if (destination->used + source.used > destination->size) {
-      status = private_f_type_cellss_resize(destination->used + source.used, destination);
+      status = private_f_cellss_resize(destination->used + source.used, destination);
       if (F_status_is_error(status)) return status;
     }
 
     for (f_array_length_t i = 0; i < source.used; ++i, ++destination->used) {
-      status = private_f_type_cells_append(source.array[i], &destination->array[destination->used]);
+      status = private_f_cells_append(source.array[i], &destination->array[destination->used]);
       if (F_status_is_error(status)) return status;
     } // for
 
     return F_none;
   }
-#endif // _di_f_type_cellss_append_
+#endif // _di_f_cellss_append_
 
-#ifndef _di_f_type_cellss_decimate_by_
-  f_status_t f_type_cellss_decimate_by(const f_array_length_t amount, f_cellss_t *cellss) {
+#ifndef _di_f_cellss_decimate_by_
+  f_status_t f_cellss_decimate_by(const f_array_length_t amount, f_cellss_t *cellss) {
     #ifndef _di_level_0_parameter_checking_
       if (!amount) return F_status_set_error(F_parameter);
       if (!cellss) return F_status_set_error(F_parameter);
     #endif // _di_level_0_parameter_checking_
 
     if (cellss->size - amount > 0) {
-      return private_f_type_cellss_adjust(cellss->size - amount, cellss);
+      return private_f_cellss_adjust(cellss->size - amount, cellss);
     }
 
-    return private_f_type_cellss_adjust(0, cellss);
+    return private_f_cellss_adjust(0, cellss);
   }
-#endif // _di_f_type_cellss_decimate_by_
+#endif // _di_f_cellss_decimate_by_
 
-#ifndef _di_f_type_cellss_decrease_by_
-  f_status_t f_type_cellss_decrease_by(const f_array_length_t amount, f_cellss_t *cellss) {
+#ifndef _di_f_cellss_decrease_by_
+  f_status_t f_cellss_decrease_by(const f_array_length_t amount, f_cellss_t *cellss) {
     #ifndef _di_level_0_parameter_checking_
       if (!amount) return F_status_set_error(F_parameter);
       if (!cellss) return F_status_set_error(F_parameter);
     #endif // _di_level_0_parameter_checking_
 
     if (cellss->size - amount > 0) {
-      return private_f_type_cellss_resize(cellss->size - amount, cellss);
+      return private_f_cellss_resize(cellss->size - amount, cellss);
     }
 
-    return private_f_type_cellss_resize(0, cellss);
+    return private_f_cellss_resize(0, cellss);
   }
-#endif // _di_f_type_cellss_decrease_by_
+#endif // _di_f_cellss_decrease_by_
 
-#ifndef _di_f_type_cellss_increase_
-  f_status_t f_type_cellss_increase(const uint16_t step, f_cellss_t *cellss) {
+#ifndef _di_f_cellss_increase_
+  f_status_t f_cellss_increase(const uint16_t step, f_cellss_t *cellss) {
     #ifndef _di_level_0_parameter_checking_
       if (!step) return F_status_set_error(F_parameter);
       if (!cellss) return F_status_set_error(F_parameter);
@@ -194,15 +194,15 @@ extern "C" {
         size = F_array_length_t_size_d;
       }
 
-      return private_f_type_cellss_resize(size, cellss);
+      return private_f_cellss_resize(size, cellss);
     }
 
     return F_data_not;
   }
-#endif // _di_f_type_cellss_increase_
+#endif // _di_f_cellss_increase_
 
-#ifndef _di_f_type_cellss_increase_by_
-  f_status_t f_type_cellss_increase_by(const f_array_length_t amount, f_cellss_t *cellss) {
+#ifndef _di_f_cellss_increase_by_
+  f_status_t f_cellss_increase_by(const f_array_length_t amount, f_cellss_t *cellss) {
     #ifndef _di_level_0_parameter_checking_
       if (!amount) return F_status_set_error(F_parameter);
       if (!cellss) return F_status_set_error(F_parameter);
@@ -213,22 +213,22 @@ extern "C" {
         return F_status_set_error(F_array_too_large);
       }
 
-      return private_f_type_cellss_resize(cellss->used + amount, cellss);
+      return private_f_cellss_resize(cellss->used + amount, cellss);
     }
 
     return F_data_not;
   }
-#endif // _di_f_type_cellss_increase_by_
+#endif // _di_f_cellss_increase_by_
 
-#ifndef _di_f_type_cellss_resize_
-  f_status_t f_type_cellss_resize(const f_array_length_t length, f_cellss_t *cellss) {
+#ifndef _di_f_cellss_resize_
+  f_status_t f_cellss_resize(const f_array_length_t length, f_cellss_t *cellss) {
     #ifndef _di_level_0_parameter_checking_
       if (!cellss) return F_status_set_error(F_parameter);
     #endif // _di_level_0_parameter_checking_
 
-    return private_f_type_cellss_resize(length, cellss);
+    return private_f_cellss_resize(length, cellss);
   }
-#endif // _di_f_type_cellss_resize_
+#endif // _di_f_cellss_resize_
 
 #ifdef __cplusplus
 } // extern "C"
index 80f4cd031c5678ba720cbbcef9eef2bddaf2d62c..16b72320bb7c6bc3184797d3d121bb54d2fb2019 100644 (file)
@@ -31,9 +31,9 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_adjust().
  */
-#ifndef _di_f_type_cells_adjust_
-  extern f_status_t f_type_cells_adjust(const f_array_length_t length, f_cells_t *cells);
-#endif // _di_f_type_cells_adjust_
+#ifndef _di_f_cells_adjust_
+  extern f_status_t f_cells_adjust(const f_array_length_t length, f_cells_t *cells);
+#endif // _di_f_cells_adjust_
 
 /**
  * Append the source cells onto the destination.
@@ -51,9 +51,9 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  */
-#ifndef _di_f_type_cells_append_
-  extern f_status_t f_type_cells_append(const f_cells_t source, f_cells_t *destination);
-#endif // _di_f_type_cells_append_
+#ifndef _di_f_cells_append_
+  extern f_status_t f_cells_append(const f_cells_t source, f_cells_t *destination);
+#endif // _di_f_cells_append_
 
 /**
  * Resize the string cells array to a smaller size.
@@ -74,9 +74,9 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_adjust().
  */
-#ifndef _di_f_type_cells_decimate_by_
-  extern f_status_t f_type_cells_decimate_by(const f_array_length_t amount, f_cells_t *cells);
-#endif // _di_f_type_cells_decimate_by_
+#ifndef _di_f_cells_decimate_by_
+  extern f_status_t f_cells_decimate_by(const f_array_length_t amount, f_cells_t *cells);
+#endif // _di_f_cells_decimate_by_
 
 /**
  * Resize the string cells array to a smaller size.
@@ -97,9 +97,9 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  */
-#ifndef _di_f_type_cells_decrease_by_
-  extern f_status_t f_type_cells_decrease_by(const f_array_length_t amount, f_cells_t *cells);
-#endif // _di_f_type_cells_decrease_by_
+#ifndef _di_f_cells_decrease_by_
+  extern f_status_t f_cells_decrease_by(const f_array_length_t amount, f_cells_t *cells);
+#endif // _di_f_cells_decrease_by_
 
 /**
  * Increase the size of the string cells array, but only if necesary.
@@ -122,9 +122,9 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  */
-#ifndef _di_f_type_cells_increase_
-  extern f_status_t f_type_cells_increase(const uint16_t step, f_cells_t *cells);
-#endif // _di_f_type_cells_increase_
+#ifndef _di_f_cells_increase_
+  extern f_status_t f_cells_increase(const uint16_t step, f_cells_t *cells);
+#endif // _di_f_cells_increase_
 
 /**
  * Resize the string cells array to a larger size.
@@ -147,9 +147,9 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  */
-#ifndef _di_f_type_cells_increase_by_
-  extern f_status_t f_type_cells_increase_by(const f_array_length_t amount, f_cells_t *cells);
-#endif // _di_f_type_cells_increase_by_
+#ifndef _di_f_cells_increase_by_
+  extern f_status_t f_cells_increase_by(const f_array_length_t amount, f_cells_t *cells);
+#endif // _di_f_cells_increase_by_
 
 /**
  * Resize the string cells array.
@@ -166,9 +166,9 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  */
-#ifndef _di_f_type_cells_resize_
-  extern f_status_t f_type_cells_resize(const f_array_length_t length, f_cells_t *cells);
-#endif // _di_f_type_cells_resize_
+#ifndef _di_f_cells_resize_
+  extern f_status_t f_cells_resize(const f_array_length_t length, f_cells_t *cells);
+#endif // _di_f_cells_resize_
 
 /**
  * Resize the string cellss array.
@@ -186,9 +186,9 @@ extern "C" {
  *   Errors (with error bit) from: f_memory_adjust().
  *   Errors (with error bit) from: f_memory_destroy().
  */
-#ifndef _di_f_type_cellss_adjust_
-  extern f_status_t f_type_cellss_adjust(const f_array_length_t length, f_cellss_t *cellss);
-#endif // _di_f_type_cellss_adjust_
+#ifndef _di_f_cellss_adjust_
+  extern f_status_t f_cellss_adjust(const f_array_length_t length, f_cellss_t *cellss);
+#endif // _di_f_cellss_adjust_
 
 /**
  * Append the source cellss onto the destination.
@@ -206,9 +206,9 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  */
-#ifndef _di_f_type_cellss_append_
-  extern f_status_t f_type_cellss_append(const f_cellss_t source, f_cellss_t *destination);
-#endif // _di_f_type_cellss_append_
+#ifndef _di_f_cellss_append_
+  extern f_status_t f_cellss_append(const f_cellss_t source, f_cellss_t *destination);
+#endif // _di_f_cellss_append_
 
 /**
  * Resize the string cellss array.
@@ -226,9 +226,9 @@ extern "C" {
  *   Errors (with error bit) from: f_memory_adjust().
  *   Errors (with error bit) from: f_memory_destroy().
  */
-#ifndef _di_f_type_cellss_adjust_
-  extern f_status_t f_type_cellss_adjust(const f_array_length_t length, f_cellss_t *cellss);
-#endif // _di_f_type_cellss_adjust_
+#ifndef _di_f_cellss_adjust_
+  extern f_status_t f_cellss_adjust(const f_array_length_t length, f_cellss_t *cellss);
+#endif // _di_f_cellss_adjust_
 
 /**
  * Resize the string cellss array to a smaller size.
@@ -250,9 +250,9 @@ extern "C" {
  *   Errors (with error bit) from: f_memory_adjust().
  *   Errors (with error bit) from: f_memory_destroy().
  */
-#ifndef _di_f_type_cellss_decimate_by_
-  extern f_status_t f_type_cellss_decimate_by(const f_array_length_t amount, f_cellss_t *cellss);
-#endif // _di_f_type_cellss_decimate_by_
+#ifndef _di_f_cellss_decimate_by_
+  extern f_status_t f_cellss_decimate_by(const f_array_length_t amount, f_cellss_t *cellss);
+#endif // _di_f_cellss_decimate_by_
 
 /**
  * Resize the string cellss array to a smaller size.
@@ -274,9 +274,9 @@ extern "C" {
  *   Errors (with error bit) from: f_memory_delete().
  *   Errors (with error bit) from: f_memory_resize().
  */
-#ifndef _di_f_type_cellss_decrease_by_
-  extern f_status_t f_type_cellss_decrease_by(const f_array_length_t amount, f_cellss_t *cellss);
-#endif // _di_f_type_cellss_decrease_by_
+#ifndef _di_f_cellss_decrease_by_
+  extern f_status_t f_cellss_decrease_by(const f_array_length_t amount, f_cellss_t *cellss);
+#endif // _di_f_cellss_decrease_by_
 
 /**
  * Increase the size of the string cellss array, but only if necessary.
@@ -299,9 +299,9 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  */
-#ifndef _di_f_type_cellss_increase_
-  extern f_status_t f_type_cellss_increase(const uint16_t step, f_cellss_t *cellss);
-#endif // _di_f_type_cellss_increase_
+#ifndef _di_f_cellss_increase_
+  extern f_status_t f_cellss_increase(const uint16_t step, f_cellss_t *cellss);
+#endif // _di_f_cellss_increase_
 
 /**
  * Resize the string cellss array to a larger size.
@@ -324,9 +324,9 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  */
-#ifndef _di_f_type_cellss_increase_by_
-  extern f_status_t f_type_cellss_increase_by(const f_array_length_t amount, f_cellss_t *cellss);
-#endif // _di_f_type_cellss_increase_by_
+#ifndef _di_f_cellss_increase_by_
+  extern f_status_t f_cellss_increase_by(const f_array_length_t amount, f_cellss_t *cellss);
+#endif // _di_f_cellss_increase_by_
 
 /**
  * Resize the string cellss array.
@@ -344,9 +344,9 @@ extern "C" {
  *   Errors (with error bit) from: f_memory_delete().
  *   Errors (with error bit) from: f_memory_resize().
  */
-#ifndef _di_f_type_cellss_resize_
-  extern f_status_t f_type_cellss_resize(const f_array_length_t length, f_cellss_t *cellss);
-#endif // _di_f_type_cellss_resize_
+#ifndef _di_f_cellss_resize_
+  extern f_status_t f_cellss_resize(const f_array_length_t length, f_cellss_t *cellss);
+#endif // _di_f_cellss_resize_
 
 #ifdef __cplusplus
 } // extern "C"
index d2c2c9c94d0ebcb5067f3130707a14f6eee33a93..fa5c6c511eb4a6a893f0eb572c9cae851cd0f559 100644 (file)
@@ -6,60 +6,60 @@
 extern "C" {
 #endif
 
-#ifndef _di_f_type_fll_ids_adjust_
-  f_status_t f_type_fll_ids_adjust(const f_array_length_t length, f_fll_ids_t *ids) {
+#ifndef _di_f_fll_ids_adjust_
+  f_status_t f_fll_ids_adjust(const f_array_length_t length, f_fll_ids_t *ids) {
     #ifndef _di_level_0_parameter_checking_
       if (!ids) return F_status_set_error(F_parameter);
     #endif // _di_level_0_parameter_checking_
 
-    return private_f_type_fll_ids_adjust(length, ids);
+    return private_f_fll_ids_adjust(length, ids);
   }
-#endif // _di_f_type_fll_ids_adjust_
+#endif // _di_f_fll_ids_adjust_
 
-#ifndef _di_f_type_fll_ids_append_
-  f_status_t f_type_fll_ids_append(const f_fll_ids_t source, f_fll_ids_t *destination) {
+#ifndef _di_f_fll_ids_append_
+  f_status_t f_fll_ids_append(const f_fll_ids_t source, f_fll_ids_t *destination) {
     #ifndef _di_level_0_parameter_checking_
       if (!destination) return F_status_set_error(F_parameter);
     #endif // _di_level_0_parameter_checking_
 
     if (!source.used) return F_data_not;
 
-    return private_f_type_fll_ids_append(source, destination);
+    return private_f_fll_ids_append(source, destination);
   }
-#endif // _di_f_type_fll_ids_append_
+#endif // _di_f_fll_ids_append_
 
-#ifndef _di_f_type_fll_ids_decimate_by_
-  f_status_t f_type_fll_ids_decimate_by(const f_array_length_t amount, f_fll_ids_t *ids) {
+#ifndef _di_f_fll_ids_decimate_by_
+  f_status_t f_fll_ids_decimate_by(const f_array_length_t amount, f_fll_ids_t *ids) {
     #ifndef _di_level_0_parameter_checking_
       if (!amount) return F_status_set_error(F_parameter);
       if (!ids) return F_status_set_error(F_parameter);
     #endif // _di_level_0_parameter_checking_
 
     if (ids->size - amount > 0) {
-      return private_f_type_fll_ids_adjust(ids->size - amount, ids);
+      return private_f_fll_ids_adjust(ids->size - amount, ids);
     }
 
-    return private_f_type_fll_ids_adjust(0, ids);
+    return private_f_fll_ids_adjust(0, ids);
   }
-#endif // _di_f_type_fll_ids_decimate_by_
+#endif // _di_f_fll_ids_decimate_by_
 
-#ifndef _di_f_type_fll_ids_decrease_by_
-  f_status_t f_type_fll_ids_decrease_by(const f_array_length_t amount, f_fll_ids_t *ids) {
+#ifndef _di_f_fll_ids_decrease_by_
+  f_status_t f_fll_ids_decrease_by(const f_array_length_t amount, f_fll_ids_t *ids) {
     #ifndef _di_level_0_parameter_checking_
       if (!amount) return F_status_set_error(F_parameter);
       if (!ids) return F_status_set_error(F_parameter);
     #endif // _di_level_0_parameter_checking_
 
     if (ids->size - amount > 0) {
-      return private_f_type_fll_ids_resize(ids->size - amount, ids);
+      return private_f_fll_ids_resize(ids->size - amount, ids);
     }
 
-    return private_f_type_fll_ids_resize(0, ids);
+    return private_f_fll_ids_resize(0, ids);
   }
-#endif // _di_f_type_fll_ids_decrease_by_
+#endif // _di_f_fll_ids_decrease_by_
 
-#ifndef _di_f_type_fll_ids_increase_
-  f_status_t f_type_fll_ids_increase(const uint16_t step, f_fll_ids_t *ids) {
+#ifndef _di_f_fll_ids_increase_
+  f_status_t f_fll_ids_increase(const uint16_t step, f_fll_ids_t *ids) {
     #ifndef _di_level_0_parameter_checking_
       if (!step) return F_status_set_error(F_parameter);
       if (!ids) return F_status_set_error(F_parameter);
@@ -76,15 +76,15 @@ extern "C" {
         size = F_array_length_t_size_d;
       }
 
-      return private_f_type_fll_ids_resize(size, ids);
+      return private_f_fll_ids_resize(size, ids);
     }
 
     return F_data_not;
   }
-#endif // _di_f_type_fll_ids_increase_
+#endif // _di_f_fll_ids_increase_
 
-#ifndef _di_f_type_fll_ids_increase_by_
-  f_status_t f_type_fll_ids_increase_by(const f_array_length_t amount, f_fll_ids_t *ids) {
+#ifndef _di_f_fll_ids_increase_by_
+  f_status_t f_fll_ids_increase_by(const f_array_length_t amount, f_fll_ids_t *ids) {
     #ifndef _di_level_0_parameter_checking_
       if (!amount) return F_status_set_error(F_parameter);
       if (!ids) return F_status_set_error(F_parameter);
@@ -95,35 +95,35 @@ extern "C" {
         return F_status_set_error(F_array_too_large);
       }
 
-      return private_f_type_fll_ids_resize(ids->used + amount, ids);
+      return private_f_fll_ids_resize(ids->used + amount, ids);
     }
 
     return F_data_not;
   }
-#endif // _di_f_type_fll_ids_increase_by_
+#endif // _di_f_fll_ids_increase_by_
 
-#ifndef _di_f_type_fll_ids_resize_
-  f_status_t f_type_fll_ids_resize(const f_array_length_t length, f_fll_ids_t *ids) {
+#ifndef _di_f_fll_ids_resize_
+  f_status_t f_fll_ids_resize(const f_array_length_t length, f_fll_ids_t *ids) {
     #ifndef _di_level_0_parameter_checking_
       if (!ids) return F_status_set_error(F_parameter);
     #endif // _di_level_0_parameter_checking_
 
-    return private_f_type_fll_ids_resize(length, ids);
+    return private_f_fll_ids_resize(length, ids);
   }
-#endif // _di_f_type_fll_ids_resize_
+#endif // _di_f_fll_ids_resize_
 
-#ifndef _di_f_type_fll_idss_adjust_
-  f_status_t f_type_fll_idss_adjust(const f_array_length_t length, f_fll_idss_t *idss) {
+#ifndef _di_f_fll_idss_adjust_
+  f_status_t f_fll_idss_adjust(const f_array_length_t length, f_fll_idss_t *idss) {
     #ifndef _di_level_0_parameter_checking_
       if (!idss) return F_status_set_error(F_parameter);
     #endif // _di_level_0_parameter_checking_
 
-    return private_f_type_fll_idss_adjust(length, idss);
+    return private_f_fll_idss_adjust(length, idss);
   }
-#endif // _di_f_type_fll_idss_adjust_
+#endif // _di_f_fll_idss_adjust_
 
-#ifndef _di_f_type_fll_idss_append_
-  f_status_t f_type_fll_idss_append(const f_fll_idss_t source, f_fll_idss_t *destination) {
+#ifndef _di_f_fll_idss_append_
+  f_status_t f_fll_idss_append(const f_fll_idss_t source, f_fll_idss_t *destination) {
     #ifndef _di_level_0_parameter_checking_
       if (!destination) return F_status_set_error(F_parameter);
     #endif // _di_level_0_parameter_checking_
@@ -133,51 +133,51 @@ extern "C" {
     f_status_t status = F_none;
 
     if (destination->used + source.used > destination->size) {
-      status = private_f_type_fll_idss_resize(destination->used + source.used, destination);
+      status = private_f_fll_idss_resize(destination->used + source.used, destination);
       if (F_status_is_error(status)) return status;
     }
 
     for (f_array_length_t i = 0; i < source.used; ++i, ++destination->used) {
-      status = private_f_type_fll_ids_append(source.array[i], &destination->array[destination->used]);
+      status = private_f_fll_ids_append(source.array[i], &destination->array[destination->used]);
       if (F_status_is_error(status)) return status;
     } // for
 
     return F_none;
   }
-#endif // _di_f_type_fll_idss_append_
+#endif // _di_f_fll_idss_append_
 
-#ifndef _di_f_type_fll_idss_decimate_by_
-  f_status_t f_type_fll_idss_decimate_by(const f_array_length_t amount, f_fll_idss_t *idss) {
+#ifndef _di_f_fll_idss_decimate_by_
+  f_status_t f_fll_idss_decimate_by(const f_array_length_t amount, f_fll_idss_t *idss) {
     #ifndef _di_level_0_parameter_checking_
       if (!amount) return F_status_set_error(F_parameter);
       if (!idss) return F_status_set_error(F_parameter);
     #endif // _di_level_0_parameter_checking_
 
     if (idss->size - amount > 0) {
-      return private_f_type_fll_idss_adjust(idss->size - amount, idss);
+      return private_f_fll_idss_adjust(idss->size - amount, idss);
     }
 
-    return private_f_type_fll_idss_adjust(0, idss);
+    return private_f_fll_idss_adjust(0, idss);
   }
-#endif // _di_f_type_fll_idss_decimate_by_
+#endif // _di_f_fll_idss_decimate_by_
 
-#ifndef _di_f_type_fll_idss_decrease_by_
-  f_status_t f_type_fll_idss_decrease_by(const f_array_length_t amount, f_fll_idss_t *idss) {
+#ifndef _di_f_fll_idss_decrease_by_
+  f_status_t f_fll_idss_decrease_by(const f_array_length_t amount, f_fll_idss_t *idss) {
     #ifndef _di_level_0_parameter_checking_
       if (!amount) return F_status_set_error(F_parameter);
       if (!idss) return F_status_set_error(F_parameter);
     #endif // _di_level_0_parameter_checking_
 
     if (idss->size - amount > 0) {
-      return private_f_type_fll_idss_resize(idss->size - amount, idss);
+      return private_f_fll_idss_resize(idss->size - amount, idss);
     }
 
-    return private_f_type_fll_idss_resize(0, idss);
+    return private_f_fll_idss_resize(0, idss);
   }
-#endif // _di_f_type_fll_idss_decrease_by_
+#endif // _di_f_fll_idss_decrease_by_
 
-#ifndef _di_f_type_fll_idss_increase_
-  f_status_t f_type_fll_idss_increase(const uint16_t step, f_fll_idss_t *idss) {
+#ifndef _di_f_fll_idss_increase_
+  f_status_t f_fll_idss_increase(const uint16_t step, f_fll_idss_t *idss) {
     #ifndef _di_level_0_parameter_checking_
       if (!step) return F_status_set_error(F_parameter);
       if (!idss) return F_status_set_error(F_parameter);
@@ -194,15 +194,15 @@ extern "C" {
         size = F_array_length_t_size_d;
       }
 
-      return private_f_type_fll_idss_resize(size, idss);
+      return private_f_fll_idss_resize(size, idss);
     }
 
     return F_data_not;
   }
-#endif // _di_f_type_fll_idss_increase_
+#endif // _di_f_fll_idss_increase_
 
-#ifndef _di_f_type_fll_idss_increase_by_
-  f_status_t f_type_fll_idss_increase_by(const f_array_length_t amount, f_fll_idss_t *idss) {
+#ifndef _di_f_fll_idss_increase_by_
+  f_status_t f_fll_idss_increase_by(const f_array_length_t amount, f_fll_idss_t *idss) {
     #ifndef _di_level_0_parameter_checking_
       if (!amount) return F_status_set_error(F_parameter);
       if (!idss) return F_status_set_error(F_parameter);
@@ -213,22 +213,22 @@ extern "C" {
         return F_status_set_error(F_array_too_large);
       }
 
-      return private_f_type_fll_idss_resize(idss->used + amount, idss);
+      return private_f_fll_idss_resize(idss->used + amount, idss);
     }
 
     return F_data_not;
   }
-#endif // _di_f_type_fll_idss_increase_by_
+#endif // _di_f_fll_idss_increase_by_
 
-#ifndef _di_f_type_fll_idss_resize_
-  f_status_t f_type_fll_idss_resize(const f_array_length_t length, f_fll_idss_t *idss) {
+#ifndef _di_f_fll_idss_resize_
+  f_status_t f_fll_idss_resize(const f_array_length_t length, f_fll_idss_t *idss) {
     #ifndef _di_level_0_parameter_checking_
       if (!idss) return F_status_set_error(F_parameter);
     #endif // _di_level_0_parameter_checking_
 
-    return private_f_type_fll_idss_resize(length, idss);
+    return private_f_fll_idss_resize(length, idss);
   }
-#endif // _di_f_type_fll_idss_resize_
+#endif // _di_f_fll_idss_resize_
 
 #ifdef __cplusplus
 } // extern "C"
index 74a937b2aa57e99899865bb6dcb0218613702e2a..129e8cb1c632c6657d7159a5ec27cdf1ed190792 100644 (file)
@@ -31,9 +31,9 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_adjust().
  */
-#ifndef _di_f_type_fll_ids_adjust_
-  extern f_status_t f_type_fll_ids_adjust(const f_array_length_t length, f_fll_ids_t *ids);
-#endif // _di_f_type_fll_ids_adjust_
+#ifndef _di_f_fll_ids_adjust_
+  extern f_status_t f_fll_ids_adjust(const f_array_length_t length, f_fll_ids_t *ids);
+#endif // _di_f_fll_ids_adjust_
 
 /**
  * Append the source ids onto the destination.
@@ -51,9 +51,9 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  */
-#ifndef _di_f_type_fll_ids_append_
-  extern f_status_t f_type_fll_ids_append(const f_fll_ids_t source, f_fll_ids_t *destination);
-#endif // _di_f_type_fll_ids_append_
+#ifndef _di_f_fll_ids_append_
+  extern f_status_t f_fll_ids_append(const f_fll_ids_t source, f_fll_ids_t *destination);
+#endif // _di_f_fll_ids_append_
 
 /**
  * Resize the string ids array to a smaller size.
@@ -74,9 +74,9 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_adjust().
  */
-#ifndef _di_f_type_fll_ids_decimate_by_
-  extern f_status_t f_type_fll_ids_decimate_by(const f_array_length_t amount, f_fll_ids_t *ids);
-#endif // _di_f_type_fll_ids_decimate_by_
+#ifndef _di_f_fll_ids_decimate_by_
+  extern f_status_t f_fll_ids_decimate_by(const f_array_length_t amount, f_fll_ids_t *ids);
+#endif // _di_f_fll_ids_decimate_by_
 
 /**
  * Resize the string ids array to a smaller size.
@@ -97,9 +97,9 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  */
-#ifndef _di_f_type_fll_ids_decrease_by_
-  extern f_status_t f_type_fll_ids_decrease_by(const f_array_length_t amount, f_fll_ids_t *ids);
-#endif // _di_f_type_fll_ids_decrease_by_
+#ifndef _di_f_fll_ids_decrease_by_
+  extern f_status_t f_fll_ids_decrease_by(const f_array_length_t amount, f_fll_ids_t *ids);
+#endif // _di_f_fll_ids_decrease_by_
 
 /**
  * Increase the size of the string ids array, but only if necesary.
@@ -122,9 +122,9 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  */
-#ifndef _di_f_type_fll_ids_increase_
-  extern f_status_t f_type_fll_ids_increase(const uint16_t step, f_fll_ids_t *ids);
-#endif // _di_f_type_fll_ids_increase_
+#ifndef _di_f_fll_ids_increase_
+  extern f_status_t f_fll_ids_increase(const uint16_t step, f_fll_ids_t *ids);
+#endif // _di_f_fll_ids_increase_
 
 /**
  * Resize the string ids array to a larger size.
@@ -147,9 +147,9 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  */
-#ifndef _di_f_type_fll_ids_increase_by_
-  extern f_status_t f_type_fll_ids_increase_by(const f_array_length_t amount, f_fll_ids_t *ids);
-#endif // _di_f_type_fll_ids_increase_by_
+#ifndef _di_f_fll_ids_increase_by_
+  extern f_status_t f_fll_ids_increase_by(const f_array_length_t amount, f_fll_ids_t *ids);
+#endif // _di_f_fll_ids_increase_by_
 
 /**
  * Resize the string ids array.
@@ -166,9 +166,9 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  */
-#ifndef _di_f_type_fll_ids_resize_
-  extern f_status_t f_type_fll_ids_resize(const f_array_length_t length, f_fll_ids_t *ids);
-#endif // _di_f_type_fll_ids_resize_
+#ifndef _di_f_fll_ids_resize_
+  extern f_status_t f_fll_ids_resize(const f_array_length_t length, f_fll_ids_t *ids);
+#endif // _di_f_fll_ids_resize_
 
 /**
  * Resize the string idss array.
@@ -186,9 +186,9 @@ extern "C" {
  *   Errors (with error bit) from: f_memory_adjust().
  *   Errors (with error bit) from: f_memory_destroy().
  */
-#ifndef _di_f_type_fll_idss_adjust_
-  extern f_status_t f_type_fll_idss_adjust(const f_array_length_t length, f_fll_idss_t *idss);
-#endif // _di_f_type_fll_idss_adjust_
+#ifndef _di_f_fll_idss_adjust_
+  extern f_status_t f_fll_idss_adjust(const f_array_length_t length, f_fll_idss_t *idss);
+#endif // _di_f_fll_idss_adjust_
 
 /**
  * Append the source idss onto the destination.
@@ -206,9 +206,9 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  */
-#ifndef _di_f_type_fll_idss_append_
-  extern f_status_t f_type_fll_idss_append(const f_fll_idss_t source, f_fll_idss_t *destination);
-#endif // _di_f_type_fll_idss_append_
+#ifndef _di_f_fll_idss_append_
+  extern f_status_t f_fll_idss_append(const f_fll_idss_t source, f_fll_idss_t *destination);
+#endif // _di_f_fll_idss_append_
 
 /**
  * Resize the string idss array.
@@ -226,9 +226,9 @@ extern "C" {
  *   Errors (with error bit) from: f_memory_adjust().
  *   Errors (with error bit) from: f_memory_destroy().
  */
-#ifndef _di_f_type_fll_idss_adjust_
-  extern f_status_t f_type_fll_idss_adjust(const f_array_length_t length, f_fll_idss_t *idss);
-#endif // _di_f_type_fll_idss_adjust_
+#ifndef _di_f_fll_idss_adjust_
+  extern f_status_t f_fll_idss_adjust(const f_array_length_t length, f_fll_idss_t *idss);
+#endif // _di_f_fll_idss_adjust_
 
 /**
  * Resize the string idss array to a smaller size.
@@ -250,9 +250,9 @@ extern "C" {
  *   Errors (with error bit) from: f_memory_adjust().
  *   Errors (with error bit) from: f_memory_destroy().
  */
-#ifndef _di_f_type_fll_idss_decimate_by_
-  extern f_status_t f_type_fll_idss_decimate_by(const f_array_length_t amount, f_fll_idss_t *idss);
-#endif // _di_f_type_fll_idss_decimate_by_
+#ifndef _di_f_fll_idss_decimate_by_
+  extern f_status_t f_fll_idss_decimate_by(const f_array_length_t amount, f_fll_idss_t *idss);
+#endif // _di_f_fll_idss_decimate_by_
 
 /**
  * Resize the string idss array to a smaller size.
@@ -274,9 +274,9 @@ extern "C" {
  *   Errors (with error bit) from: f_memory_delete().
  *   Errors (with error bit) from: f_memory_resize().
  */
-#ifndef _di_f_type_fll_idss_decrease_by_
-  extern f_status_t f_type_fll_idss_decrease_by(const f_array_length_t amount, f_fll_idss_t *idss);
-#endif // _di_f_type_fll_idss_decrease_by_
+#ifndef _di_f_fll_idss_decrease_by_
+  extern f_status_t f_fll_idss_decrease_by(const f_array_length_t amount, f_fll_idss_t *idss);
+#endif // _di_f_fll_idss_decrease_by_
 
 /**
  * Increase the size of the string idss array, but only if necessary.
@@ -299,9 +299,9 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  */
-#ifndef _di_f_type_fll_idss_increase_
-  extern f_status_t f_type_fll_idss_increase(const uint16_t step, f_fll_idss_t *idss);
-#endif // _di_f_type_fll_idss_increase_
+#ifndef _di_f_fll_idss_increase_
+  extern f_status_t f_fll_idss_increase(const uint16_t step, f_fll_idss_t *idss);
+#endif // _di_f_fll_idss_increase_
 
 /**
  * Resize the string idss array to a larger size.
@@ -324,9 +324,9 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  */
-#ifndef _di_f_type_fll_idss_increase_by_
-  extern f_status_t f_type_fll_idss_increase_by(const f_array_length_t amount, f_fll_idss_t *idss);
-#endif // _di_f_type_fll_idss_increase_by_
+#ifndef _di_f_fll_idss_increase_by_
+  extern f_status_t f_fll_idss_increase_by(const f_array_length_t amount, f_fll_idss_t *idss);
+#endif // _di_f_fll_idss_increase_by_
 
 /**
  * Resize the string idss array.
@@ -344,9 +344,9 @@ extern "C" {
  *   Errors (with error bit) from: f_memory_delete().
  *   Errors (with error bit) from: f_memory_resize().
  */
-#ifndef _di_f_type_fll_idss_resize_
-  extern f_status_t f_type_fll_idss_resize(const f_array_length_t length, f_fll_idss_t *idss);
-#endif // _di_f_type_fll_idss_resize_
+#ifndef _di_f_fll_idss_resize_
+  extern f_status_t f_fll_idss_resize(const f_array_length_t length, f_fll_idss_t *idss);
+#endif // _di_f_fll_idss_resize_
 
 #ifdef __cplusplus
 } // extern "C"
index 8a62baa8fbd5fca36eb3ae7f3ab39221bb54e9f2..5f0b80129c5c78eb607984d014a2ea54670625c4 100644 (file)
@@ -6,60 +6,60 @@
 extern "C" {
 #endif
 
-#ifndef _di_f_type_int128s_adjust_
-  f_status_t f_type_int128s_adjust(const f_array_length_t length, f_int128s_t *int128s) {
+#ifndef _di_f_int128s_adjust_
+  f_status_t f_int128s_adjust(const f_array_length_t length, f_int128s_t *int128s) {
     #ifndef _di_level_0_parameter_checking_
       if (!int128s) return F_status_set_error(F_parameter);
     #endif // _di_level_0_parameter_checking_
 
-    return private_f_type_int128s_adjust(length, int128s);
+    return private_f_int128s_adjust(length, int128s);
   }
-#endif // _di_f_type_int128s_adjust_
+#endif // _di_f_int128s_adjust_
 
-#ifndef _di_f_type_int128s_append_
-  f_status_t f_type_int128s_append(const f_int128s_t source, f_int128s_t *destination) {
+#ifndef _di_f_int128s_append_
+  f_status_t f_int128s_append(const f_int128s_t source, f_int128s_t *destination) {
     #ifndef _di_level_0_parameter_checking_
       if (!destination) return F_status_set_error(F_parameter);
     #endif // _di_level_0_parameter_checking_
 
     if (!source.used) return F_data_not;
 
-    return private_f_type_int128s_append(source, destination);
+    return private_f_int128s_append(source, destination);
   }
-#endif // _di_f_type_int128s_append_
+#endif // _di_f_int128s_append_
 
-#ifndef _di_f_type_int128s_decimate_by_
-  f_status_t f_type_int128s_decimate_by(const f_array_length_t amount, f_int128s_t *int128s) {
+#ifndef _di_f_int128s_decimate_by_
+  f_status_t f_int128s_decimate_by(const f_array_length_t amount, f_int128s_t *int128s) {
     #ifndef _di_level_0_parameter_checking_
       if (!amount) return F_status_set_error(F_parameter);
       if (!int128s) return F_status_set_error(F_parameter);
     #endif // _di_level_0_parameter_checking_
 
     if (int128s->size - amount > 0) {
-      return private_f_type_int128s_adjust(int128s->size - amount, int128s);
+      return private_f_int128s_adjust(int128s->size - amount, int128s);
     }
 
-    return private_f_type_int128s_adjust(0, int128s);
+    return private_f_int128s_adjust(0, int128s);
   }
-#endif // _di_f_type_int128s_decimate_by_
+#endif // _di_f_int128s_decimate_by_
 
-#ifndef _di_f_type_int128s_decrease_by_
-  f_status_t f_type_int128s_decrease_by(const f_array_length_t amount, f_int128s_t *int128s) {
+#ifndef _di_f_int128s_decrease_by_
+  f_status_t f_int128s_decrease_by(const f_array_length_t amount, f_int128s_t *int128s) {
     #ifndef _di_level_0_parameter_checking_
       if (!amount) return F_status_set_error(F_parameter);
       if (!int128s) return F_status_set_error(F_parameter);
     #endif // _di_level_0_parameter_checking_
 
     if (int128s->size - amount > 0) {
-      return private_f_type_int128s_resize(int128s->size - amount, int128s);
+      return private_f_int128s_resize(int128s->size - amount, int128s);
     }
 
-    return private_f_type_int128s_resize(0, int128s);
+    return private_f_int128s_resize(0, int128s);
   }
-#endif // _di_f_type_int128s_decrease_by_
+#endif // _di_f_int128s_decrease_by_
 
-#ifndef _di_f_type_int128s_increase_
-  f_status_t f_type_int128s_increase(const uint16_t step, f_int128s_t *int128s) {
+#ifndef _di_f_int128s_increase_
+  f_status_t f_int128s_increase(const uint16_t step, f_int128s_t *int128s) {
     #ifndef _di_level_0_parameter_checking_
       if (!step) return F_status_set_error(F_parameter);
       if (!int128s) return F_status_set_error(F_parameter);
@@ -76,15 +76,15 @@ extern "C" {
         size = F_array_length_t_size_d;
       }
 
-      return private_f_type_int128s_resize(size, int128s);
+      return private_f_int128s_resize(size, int128s);
     }
 
     return F_data_not;
   }
-#endif // _di_f_type_int128s_increase_
+#endif // _di_f_int128s_increase_
 
-#ifndef _di_f_type_int128s_increase_by_
-  f_status_t f_type_int128s_increase_by(const f_array_length_t amount, f_int128s_t *int128s) {
+#ifndef _di_f_int128s_increase_by_
+  f_status_t f_int128s_increase_by(const f_array_length_t amount, f_int128s_t *int128s) {
     #ifndef _di_level_0_parameter_checking_
       if (!amount) return F_status_set_error(F_parameter);
       if (!int128s) return F_status_set_error(F_parameter);
@@ -95,35 +95,35 @@ extern "C" {
         return F_status_set_error(F_array_too_large);
       }
 
-      return private_f_type_int128s_resize(int128s->used + amount, int128s);
+      return private_f_int128s_resize(int128s->used + amount, int128s);
     }
 
     return F_data_not;
   }
-#endif // _di_f_type_int128s_increase_by_
+#endif // _di_f_int128s_increase_by_
 
-#ifndef _di_f_type_int128s_resize_
-  f_status_t f_type_int128s_resize(const f_array_length_t length, f_int128s_t *int128s) {
+#ifndef _di_f_int128s_resize_
+  f_status_t f_int128s_resize(const f_array_length_t length, f_int128s_t *int128s) {
     #ifndef _di_level_0_parameter_checking_
       if (!int128s) return F_status_set_error(F_parameter);
     #endif // _di_level_0_parameter_checking_
 
-    return private_f_type_int128s_resize(length, int128s);
+    return private_f_int128s_resize(length, int128s);
   }
-#endif // _di_f_type_int128s_resize_
+#endif // _di_f_int128s_resize_
 
-#ifndef _di_f_type_int128ss_adjust_
-  f_status_t f_type_int128ss_adjust(const f_array_length_t length, f_int128ss_t *int128ss) {
+#ifndef _di_f_int128ss_adjust_
+  f_status_t f_int128ss_adjust(const f_array_length_t length, f_int128ss_t *int128ss) {
     #ifndef _di_level_0_parameter_checking_
       if (!int128ss) return F_status_set_error(F_parameter);
     #endif // _di_level_0_parameter_checking_
 
-    return private_f_type_int128ss_adjust(length, int128ss);
+    return private_f_int128ss_adjust(length, int128ss);
   }
-#endif // _di_f_type_int128ss_adjust_
+#endif // _di_f_int128ss_adjust_
 
-#ifndef _di_f_type_int128ss_append_
-  f_status_t f_type_int128ss_append(const f_int128ss_t source, f_int128ss_t *destination) {
+#ifndef _di_f_int128ss_append_
+  f_status_t f_int128ss_append(const f_int128ss_t source, f_int128ss_t *destination) {
     #ifndef _di_level_0_parameter_checking_
       if (!destination) return F_status_set_error(F_parameter);
     #endif // _di_level_0_parameter_checking_
@@ -133,51 +133,51 @@ extern "C" {
     f_status_t status = F_none;
 
     if (destination->used + source.used > destination->size) {
-      status = private_f_type_int128ss_resize(destination->used + source.used, destination);
+      status = private_f_int128ss_resize(destination->used + source.used, destination);
       if (F_status_is_error(status)) return status;
     }
 
     for (f_array_length_t i = 0; i < source.used; ++i, ++destination->used) {
-      status = private_f_type_int128s_append(source.array[i], &destination->array[destination->used]);
+      status = private_f_int128s_append(source.array[i], &destination->array[destination->used]);
       if (F_status_is_error(status)) return status;
     } // for
 
     return F_none;
   }
-#endif // _di_f_type_int128ss_append_
+#endif // _di_f_int128ss_append_
 
-#ifndef _di_f_type_int128ss_decimate_by_
-  f_status_t f_type_int128ss_decimate_by(const f_array_length_t amount, f_int128ss_t *int128ss) {
+#ifndef _di_f_int128ss_decimate_by_
+  f_status_t f_int128ss_decimate_by(const f_array_length_t amount, f_int128ss_t *int128ss) {
     #ifndef _di_level_0_parameter_checking_
       if (!amount) return F_status_set_error(F_parameter);
       if (!int128ss) return F_status_set_error(F_parameter);
     #endif // _di_level_0_parameter_checking_
 
     if (int128ss->size - amount > 0) {
-      return private_f_type_int128ss_adjust(int128ss->size - amount, int128ss);
+      return private_f_int128ss_adjust(int128ss->size - amount, int128ss);
     }
 
-    return private_f_type_int128ss_adjust(0, int128ss);
+    return private_f_int128ss_adjust(0, int128ss);
   }
-#endif // _di_f_type_int128ss_decimate_by_
+#endif // _di_f_int128ss_decimate_by_
 
-#ifndef _di_f_type_int128ss_decrease_by_
-  f_status_t f_type_int128ss_decrease_by(const f_array_length_t amount, f_int128ss_t *int128ss) {
+#ifndef _di_f_int128ss_decrease_by_
+  f_status_t f_int128ss_decrease_by(const f_array_length_t amount, f_int128ss_t *int128ss) {
     #ifndef _di_level_0_parameter_checking_
       if (!amount) return F_status_set_error(F_parameter);
       if (!int128ss) return F_status_set_error(F_parameter);
     #endif // _di_level_0_parameter_checking_
 
     if (int128ss->size - amount > 0) {
-      return private_f_type_int128ss_resize(int128ss->size - amount, int128ss);
+      return private_f_int128ss_resize(int128ss->size - amount, int128ss);
     }
 
-    return private_f_type_int128ss_resize(0, int128ss);
+    return private_f_int128ss_resize(0, int128ss);
   }
-#endif // _di_f_type_int128ss_decrease_by_
+#endif // _di_f_int128ss_decrease_by_
 
-#ifndef _di_f_type_int128ss_increase_
-  f_status_t f_type_int128ss_increase(const uint16_t step, f_int128ss_t *int128ss) {
+#ifndef _di_f_int128ss_increase_
+  f_status_t f_int128ss_increase(const uint16_t step, f_int128ss_t *int128ss) {
     #ifndef _di_level_0_parameter_checking_
       if (!step) return F_status_set_error(F_parameter);
       if (!int128ss) return F_status_set_error(F_parameter);
@@ -194,15 +194,15 @@ extern "C" {
         size = F_array_length_t_size_d;
       }
 
-      return private_f_type_int128ss_resize(size, int128ss);
+      return private_f_int128ss_resize(size, int128ss);
     }
 
     return F_data_not;
   }
-#endif // _di_f_type_int128ss_increase_
+#endif // _di_f_int128ss_increase_
 
-#ifndef _di_f_type_int128ss_increase_by_
-  f_status_t f_type_int128ss_increase_by(const f_array_length_t amount, f_int128ss_t *int128ss) {
+#ifndef _di_f_int128ss_increase_by_
+  f_status_t f_int128ss_increase_by(const f_array_length_t amount, f_int128ss_t *int128ss) {
     #ifndef _di_level_0_parameter_checking_
       if (!amount) return F_status_set_error(F_parameter);
       if (!int128ss) return F_status_set_error(F_parameter);
@@ -213,77 +213,77 @@ extern "C" {
         return F_status_set_error(F_array_too_large);
       }
 
-      return private_f_type_int128ss_resize(int128ss->used + amount, int128ss);
+      return private_f_int128ss_resize(int128ss->used + amount, int128ss);
     }
 
     return F_data_not;
   }
-#endif // _di_f_type_int128ss_increase_by_
+#endif // _di_f_int128ss_increase_by_
 
-#ifndef _di_f_type_int128ss_resize_
-  f_status_t f_type_int128ss_resize(const f_array_length_t length, f_int128ss_t *int128ss) {
+#ifndef _di_f_int128ss_resize_
+  f_status_t f_int128ss_resize(const f_array_length_t length, f_int128ss_t *int128ss) {
     #ifndef _di_level_0_parameter_checking_
       if (!int128ss) return F_status_set_error(F_parameter);
     #endif // _di_level_0_parameter_checking_
 
-    return private_f_type_int128ss_resize(length, int128ss);
+    return private_f_int128ss_resize(length, int128ss);
   }
-#endif // _di_f_type_int128ss_resize_
+#endif // _di_f_int128ss_resize_
 
-#ifndef _di_f_type_uint128s_adjust_
-  f_status_t f_type_uint128s_adjust(const f_array_length_t length, f_uint128s_t *uint128s) {
+#ifndef _di_f_uint128s_adjust_
+  f_status_t f_uint128s_adjust(const f_array_length_t length, f_uint128s_t *uint128s) {
     #ifndef _di_level_0_parameter_checking_
       if (!uint128s) return F_status_set_error(F_parameter);
     #endif // _di_level_0_parameter_checking_
 
-    return private_f_type_uint128s_adjust(length, uint128s);
+    return private_f_uint128s_adjust(length, uint128s);
   }
-#endif // _di_f_type_uint128s_adjust_
+#endif // _di_f_uint128s_adjust_
 
-#ifndef _di_f_type_uint128s_append_
-  f_status_t f_type_uint128s_append(const f_uint128s_t source, f_uint128s_t *destination) {
+#ifndef _di_f_uint128s_append_
+  f_status_t f_uint128s_append(const f_uint128s_t source, f_uint128s_t *destination) {
     #ifndef _di_level_0_parameter_checking_
       if (!destination) return F_status_set_error(F_parameter);
     #endif // _di_level_0_parameter_checking_
 
     if (!source.used) return F_data_not;
 
-    return private_f_type_uint128s_append(source, destination);
+    return private_f_uint128s_append(source, destination);
   }
-#endif // _di_f_type_uint128s_append_
+#endif // _di_f_uint128s_append_
 
-#ifndef _di_f_type_uint128s_decimate_by_
-  f_status_t f_type_uint128s_decimate_by(const f_array_length_t amount, f_uint128s_t *uint128s) {
+#ifndef _di_f_uint128s_decimate_by_
+  f_status_t f_uint128s_decimate_by(const f_array_length_t amount, f_uint128s_t *uint128s) {
     #ifndef _di_level_0_parameter_checking_
       if (!amount) return F_status_set_error(F_parameter);
       if (!uint128s) return F_status_set_error(F_parameter);
     #endif // _di_level_0_parameter_checking_
 
     if (uint128s->size - amount > 0) {
-      return private_f_type_uint128s_adjust(uint128s->size - amount, uint128s);
+      return private_f_uint128s_adjust(uint128s->size - amount, uint128s);
     }
 
-    return private_f_type_uint128s_adjust(0, uint128s);
+    return private_f_uint128s_adjust(0, uint128s);
   }
-#endif // _di_f_type_uint128s_decimate_by_
+#endif // _di_f_uint128s_decimate_by_
 
-#ifndef _di_f_type_uint128s_decrease_by_
-  f_status_t f_type_uint128s_decrease_by(const f_array_length_t amount, f_uint128s_t *uint128s) {
+#ifndef _di_f_uint128s_decrease_by_
+  f_status_t f_uint128s_decrease_by(const f_array_length_t amount, f_uint128s_t *uint128s) {
     #ifndef _di_level_0_parameter_checking_
       if (!amount) return F_status_set_error(F_parameter);
       if (!uint128s) return F_status_set_error(F_parameter);
     #endif // _di_level_0_parameter_checking_
 
     if (uint128s->size - amount > 0) {
-      return private_f_type_uint128s_resize(uint128s->size - amount, uint128s);
+      return private_f_uint128s_resize(uint128s->size - amount, uint128s);
     }
 
-    return private_f_type_uint128s_resize(0, uint128s);
+    return private_f_uint128s_resize(0, uint128s);
   }
-#endif // _di_f_type_uint128s_decrease_by_
+#endif // _di_f_uint128s_decrease_by_
 
-#ifndef _di_f_type_uint128s_increase_
-  f_status_t f_type_uint128s_increase(const uint16_t step, f_uint128s_t *uint128s) {
+#ifndef _di_f_uint128s_increase_
+  f_status_t f_uint128s_increase(const uint16_t step, f_uint128s_t *uint128s) {
     #ifndef _di_level_0_parameter_checking_
       if (!step) return F_status_set_error(F_parameter);
       if (!uint128s) return F_status_set_error(F_parameter);
@@ -300,15 +300,15 @@ extern "C" {
         size = F_array_length_t_size_d;
       }
 
-      return private_f_type_uint128s_resize(size, uint128s);
+      return private_f_uint128s_resize(size, uint128s);
     }
 
     return F_data_not;
   }
-#endif // _di_f_type_uint128s_increase_
+#endif // _di_f_uint128s_increase_
 
-#ifndef _di_f_type_uint128s_increase_by_
-  f_status_t f_type_uint128s_increase_by(const f_array_length_t amount, f_uint128s_t *uint128s) {
+#ifndef _di_f_uint128s_increase_by_
+  f_status_t f_uint128s_increase_by(const f_array_length_t amount, f_uint128s_t *uint128s) {
     #ifndef _di_level_0_parameter_checking_
       if (!amount) return F_status_set_error(F_parameter);
       if (!uint128s) return F_status_set_error(F_parameter);
@@ -319,35 +319,35 @@ extern "C" {
         return F_status_set_error(F_array_too_large);
       }
 
-      return private_f_type_uint128s_resize(uint128s->used + amount, uint128s);
+      return private_f_uint128s_resize(uint128s->used + amount, uint128s);
     }
 
     return F_data_not;
   }
-#endif // _di_f_type_uint128s_increase_by_
+#endif // _di_f_uint128s_increase_by_
 
-#ifndef _di_f_type_uint128s_resize_
-  f_status_t f_type_uint128s_resize(const f_array_length_t length, f_uint128s_t *uint128s) {
+#ifndef _di_f_uint128s_resize_
+  f_status_t f_uint128s_resize(const f_array_length_t length, f_uint128s_t *uint128s) {
     #ifndef _di_level_0_parameter_checking_
       if (!uint128s) return F_status_set_error(F_parameter);
     #endif // _di_level_0_parameter_checking_
 
-    return private_f_type_uint128s_resize(length, uint128s);
+    return private_f_uint128s_resize(length, uint128s);
   }
-#endif // _di_f_type_uint128s_resize_
+#endif // _di_f_uint128s_resize_
 
-#ifndef _di_f_type_uint128ss_adjust_
-  f_status_t f_type_uint128ss_adjust(const f_array_length_t length, f_uint128ss_t *uint128ss) {
+#ifndef _di_f_uint128ss_adjust_
+  f_status_t f_uint128ss_adjust(const f_array_length_t length, f_uint128ss_t *uint128ss) {
     #ifndef _di_level_0_parameter_checking_
       if (!uint128ss) return F_status_set_error(F_parameter);
     #endif // _di_level_0_parameter_checking_
 
-    return private_f_type_uint128ss_adjust(length, uint128ss);
+    return private_f_uint128ss_adjust(length, uint128ss);
   }
-#endif // _di_f_type_uint128ss_adjust_
+#endif // _di_f_uint128ss_adjust_
 
-#ifndef _di_f_type_uint128ss_append_
-  f_status_t f_type_uint128ss_append(const f_uint128ss_t source, f_uint128ss_t *destination) {
+#ifndef _di_f_uint128ss_append_
+  f_status_t f_uint128ss_append(const f_uint128ss_t source, f_uint128ss_t *destination) {
     #ifndef _di_level_0_parameter_checking_
       if (!destination) return F_status_set_error(F_parameter);
     #endif // _di_level_0_parameter_checking_
@@ -357,51 +357,51 @@ extern "C" {
     f_status_t status = F_none;
 
     if (destination->used + source.used > destination->size) {
-      status = private_f_type_uint128ss_resize(destination->used + source.used, destination);
+      status = private_f_uint128ss_resize(destination->used + source.used, destination);
       if (F_status_is_error(status)) return status;
     }
 
     for (f_array_length_t i = 0; i < source.used; ++i, ++destination->used) {
-      status = private_f_type_uint128s_append(source.array[i], &destination->array[destination->used]);
+      status = private_f_uint128s_append(source.array[i], &destination->array[destination->used]);
       if (F_status_is_error(status)) return status;
     } // for
 
     return F_none;
   }
-#endif // _di_f_type_uint128ss_append_
+#endif // _di_f_uint128ss_append_
 
-#ifndef _di_f_type_uint128ss_decimate_by_
-  f_status_t f_type_uint128ss_decimate_by(const f_array_length_t amount, f_uint128ss_t *uint128ss) {
+#ifndef _di_f_uint128ss_decimate_by_
+  f_status_t f_uint128ss_decimate_by(const f_array_length_t amount, f_uint128ss_t *uint128ss) {
     #ifndef _di_level_0_parameter_checking_
       if (!amount) return F_status_set_error(F_parameter);
       if (!uint128ss) return F_status_set_error(F_parameter);
     #endif // _di_level_0_parameter_checking_
 
     if (uint128ss->size - amount > 0) {
-      return private_f_type_uint128ss_adjust(uint128ss->size - amount, uint128ss);
+      return private_f_uint128ss_adjust(uint128ss->size - amount, uint128ss);
     }
 
-    return private_f_type_uint128ss_adjust(0, uint128ss);
+    return private_f_uint128ss_adjust(0, uint128ss);
   }
-#endif // _di_f_type_uint128ss_decimate_by_
+#endif // _di_f_uint128ss_decimate_by_
 
-#ifndef _di_f_type_uint128ss_decrease_by_
-  f_status_t f_type_uint128ss_decrease_by(const f_array_length_t amount, f_uint128ss_t *uint128ss) {
+#ifndef _di_f_uint128ss_decrease_by_
+  f_status_t f_uint128ss_decrease_by(const f_array_length_t amount, f_uint128ss_t *uint128ss) {
     #ifndef _di_level_0_parameter_checking_
       if (!amount) return F_status_set_error(F_parameter);
       if (!uint128ss) return F_status_set_error(F_parameter);
     #endif // _di_level_0_parameter_checking_
 
     if (uint128ss->size - amount > 0) {
-      return private_f_type_uint128ss_resize(uint128ss->size - amount, uint128ss);
+      return private_f_uint128ss_resize(uint128ss->size - amount, uint128ss);
     }
 
-    return private_f_type_uint128ss_resize(0, uint128ss);
+    return private_f_uint128ss_resize(0, uint128ss);
   }
-#endif // _di_f_type_uint128ss_decrease_by_
+#endif // _di_f_uint128ss_decrease_by_
 
-#ifndef _di_f_type_uint128ss_increase_
-  f_status_t f_type_uint128ss_increase(const uint16_t step, f_uint128ss_t *uint128ss) {
+#ifndef _di_f_uint128ss_increase_
+  f_status_t f_uint128ss_increase(const uint16_t step, f_uint128ss_t *uint128ss) {
     #ifndef _di_level_0_parameter_checking_
       if (!step) return F_status_set_error(F_parameter);
       if (!uint128ss) return F_status_set_error(F_parameter);
@@ -418,15 +418,15 @@ extern "C" {
         size = F_array_length_t_size_d;
       }
 
-      return private_f_type_uint128ss_resize(size, uint128ss);
+      return private_f_uint128ss_resize(size, uint128ss);
     }
 
     return F_data_not;
   }
-#endif // _di_f_type_uint128ss_increase_
+#endif // _di_f_uint128ss_increase_
 
-#ifndef _di_f_type_uint128ss_increase_by_
-  f_status_t f_type_uint128ss_increase_by(const f_array_length_t amount, f_uint128ss_t *uint128ss) {
+#ifndef _di_f_uint128ss_increase_by_
+  f_status_t f_uint128ss_increase_by(const f_array_length_t amount, f_uint128ss_t *uint128ss) {
     #ifndef _di_level_0_parameter_checking_
       if (!amount) return F_status_set_error(F_parameter);
       if (!uint128ss) return F_status_set_error(F_parameter);
@@ -437,22 +437,22 @@ extern "C" {
         return F_status_set_error(F_array_too_large);
       }
 
-      return private_f_type_uint128ss_resize(uint128ss->used + amount, uint128ss);
+      return private_f_uint128ss_resize(uint128ss->used + amount, uint128ss);
     }
 
     return F_data_not;
   }
-#endif // _di_f_type_uint128ss_increase_by_
+#endif // _di_f_uint128ss_increase_by_
 
-#ifndef _di_f_type_uint128ss_resize_
-  f_status_t f_type_uint128ss_resize(const f_array_length_t length, f_uint128ss_t *uint128ss) {
+#ifndef _di_f_uint128ss_resize_
+  f_status_t f_uint128ss_resize(const f_array_length_t length, f_uint128ss_t *uint128ss) {
     #ifndef _di_level_0_parameter_checking_
       if (!uint128ss) return F_status_set_error(F_parameter);
     #endif // _di_level_0_parameter_checking_
 
-    return private_f_type_uint128ss_resize(length, uint128ss);
+    return private_f_uint128ss_resize(length, uint128ss);
   }
-#endif // _di_f_type_uint128ss_resize_
+#endif // _di_f_uint128ss_resize_
 
 #ifdef __cplusplus
 } // extern "C"
index 43372e55fb94644534b7ed9d6d397cdfed54701d..7c1527f1ad46f26f438b5fe15234281a3d464531 100644 (file)
@@ -31,9 +31,9 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_adjust().
  */
-#ifndef _di_f_type_int128s_adjust_
-  extern f_status_t f_type_int128s_adjust(const f_array_length_t length, f_int128s_t *int128s);
-#endif // _di_f_type_int128s_adjust_
+#ifndef _di_f_int128s_adjust_
+  extern f_status_t f_int128s_adjust(const f_array_length_t length, f_int128s_t *int128s);
+#endif // _di_f_int128s_adjust_
 
 /**
  * Append the source int128s onto the destination.
@@ -51,9 +51,9 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  */
-#ifndef _di_f_type_int128s_append_
-  extern f_status_t f_type_int128s_append(const f_int128s_t source, f_int128s_t *destination);
-#endif // _di_f_type_int128s_append_
+#ifndef _di_f_int128s_append_
+  extern f_status_t f_int128s_append(const f_int128s_t source, f_int128s_t *destination);
+#endif // _di_f_int128s_append_
 
 /**
  * Resize the int128s array to a smaller size.
@@ -74,9 +74,9 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_adjust().
  */
-#ifndef _di_f_type_int128s_decimate_by_
-  extern f_status_t f_type_int128s_decimate_by(const f_array_length_t amount, f_int128s_t *int128s);
-#endif // _di_f_type_int128s_decimate_by_
+#ifndef _di_f_int128s_decimate_by_
+  extern f_status_t f_int128s_decimate_by(const f_array_length_t amount, f_int128s_t *int128s);
+#endif // _di_f_int128s_decimate_by_
 
 /**
  * Resize the int128s array to a smaller size.
@@ -97,9 +97,9 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  */
-#ifndef _di_f_type_int128s_decrease_by_
-  extern f_status_t f_type_int128s_decrease_by(const f_array_length_t amount, f_int128s_t *int128s);
-#endif // _di_f_type_int128s_decrease_by_
+#ifndef _di_f_int128s_decrease_by_
+  extern f_status_t f_int128s_decrease_by(const f_array_length_t amount, f_int128s_t *int128s);
+#endif // _di_f_int128s_decrease_by_
 
 /**
  * Increase the size of the int128s array, but only if necesary.
@@ -122,9 +122,9 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  */
-#ifndef _di_f_type_int128s_increase_
-  extern f_status_t f_type_int128s_increase(const uint16_t step, f_int128s_t *int128s);
-#endif // _di_f_type_int128s_increase_
+#ifndef _di_f_int128s_increase_
+  extern f_status_t f_int128s_increase(const uint16_t step, f_int128s_t *int128s);
+#endif // _di_f_int128s_increase_
 
 /**
  * Resize the int128s array to a larger size.
@@ -147,9 +147,9 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  */
-#ifndef _di_f_type_int128s_increase_by_
-  extern f_status_t f_type_int128s_increase_by(const f_array_length_t amount, f_int128s_t *int128s);
-#endif // _di_f_type_int128s_increase_by_
+#ifndef _di_f_int128s_increase_by_
+  extern f_status_t f_int128s_increase_by(const f_array_length_t amount, f_int128s_t *int128s);
+#endif // _di_f_int128s_increase_by_
 
 /**
  * Resize the int128s array.
@@ -166,9 +166,9 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  */
-#ifndef _di_f_type_int128s_resize_
-  extern f_status_t f_type_int128s_resize(const f_array_length_t length, f_int128s_t *int128s);
-#endif // _di_f_type_int128s_resize_
+#ifndef _di_f_int128s_resize_
+  extern f_status_t f_int128s_resize(const f_array_length_t length, f_int128s_t *int128s);
+#endif // _di_f_int128s_resize_
 
 /**
  * Resize the int128ss array.
@@ -186,9 +186,9 @@ extern "C" {
  *   Errors (with error bit) from: f_memory_adjust().
  *   Errors (with error bit) from: f_memory_destroy().
  */
-#ifndef _di_f_type_int128ss_adjust_
-  extern f_status_t f_type_int128ss_adjust(const f_array_length_t length, f_int128ss_t *int128ss);
-#endif // _di_f_type_int128ss_adjust_
+#ifndef _di_f_int128ss_adjust_
+  extern f_status_t f_int128ss_adjust(const f_array_length_t length, f_int128ss_t *int128ss);
+#endif // _di_f_int128ss_adjust_
 
 /**
  * Append the source int128ss onto the destination.
@@ -206,9 +206,9 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  */
-#ifndef _di_f_type_int128ss_append_
-  extern f_status_t f_type_int128ss_append(const f_int128ss_t source, f_int128ss_t *destination);
-#endif // _di_f_type_int128ss_append_
+#ifndef _di_f_int128ss_append_
+  extern f_status_t f_int128ss_append(const f_int128ss_t source, f_int128ss_t *destination);
+#endif // _di_f_int128ss_append_
 
 /**
  * Resize the int128ss array.
@@ -226,9 +226,9 @@ extern "C" {
  *   Errors (with error bit) from: f_memory_adjust().
  *   Errors (with error bit) from: f_memory_destroy().
  */
-#ifndef _di_f_type_int128ss_adjust_
-  extern f_status_t f_type_int128ss_adjust(const f_array_length_t length, f_int128ss_t *int128ss);
-#endif // _di_f_type_int128ss_adjust_
+#ifndef _di_f_int128ss_adjust_
+  extern f_status_t f_int128ss_adjust(const f_array_length_t length, f_int128ss_t *int128ss);
+#endif // _di_f_int128ss_adjust_
 
 /**
  * Resize the int128ss array to a smaller size.
@@ -250,9 +250,9 @@ extern "C" {
  *   Errors (with error bit) from: f_memory_adjust().
  *   Errors (with error bit) from: f_memory_destroy().
  */
-#ifndef _di_f_type_int128ss_decimate_by_
-  extern f_status_t f_type_int128ss_decimate_by(const f_array_length_t amount, f_int128ss_t *int128ss);
-#endif // _di_f_type_int128ss_decimate_by_
+#ifndef _di_f_int128ss_decimate_by_
+  extern f_status_t f_int128ss_decimate_by(const f_array_length_t amount, f_int128ss_t *int128ss);
+#endif // _di_f_int128ss_decimate_by_
 
 /**
  * Resize the int128ss array to a smaller size.
@@ -274,9 +274,9 @@ extern "C" {
  *   Errors (with error bit) from: f_memory_delete().
  *   Errors (with error bit) from: f_memory_resize().
  */
-#ifndef _di_f_type_int128ss_decrease_by_
-  extern f_status_t f_type_int128ss_decrease_by(const f_array_length_t amount, f_int128ss_t *int128ss);
-#endif // _di_f_type_int128ss_decrease_by_
+#ifndef _di_f_int128ss_decrease_by_
+  extern f_status_t f_int128ss_decrease_by(const f_array_length_t amount, f_int128ss_t *int128ss);
+#endif // _di_f_int128ss_decrease_by_
 
 /**
  * Increase the size of the int128ss array, but only if necessary.
@@ -299,9 +299,9 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  */
-#ifndef _di_f_type_int128ss_increase_
-  extern f_status_t f_type_int128ss_increase(const uint16_t step, f_int128ss_t *int128ss);
-#endif // _di_f_type_int128ss_increase_
+#ifndef _di_f_int128ss_increase_
+  extern f_status_t f_int128ss_increase(const uint16_t step, f_int128ss_t *int128ss);
+#endif // _di_f_int128ss_increase_
 
 /**
  * Resize the int128ss array to a larger size.
@@ -324,9 +324,9 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  */
-#ifndef _di_f_type_int128ss_increase_by_
-  extern f_status_t f_type_int128ss_increase_by(const f_array_length_t amount, f_int128ss_t *int128ss);
-#endif // _di_f_type_int128ss_increase_by_
+#ifndef _di_f_int128ss_increase_by_
+  extern f_status_t f_int128ss_increase_by(const f_array_length_t amount, f_int128ss_t *int128ss);
+#endif // _di_f_int128ss_increase_by_
 
 /**
  * Resize the int128ss array.
@@ -344,9 +344,9 @@ extern "C" {
  *   Errors (with error bit) from: f_memory_delete().
  *   Errors (with error bit) from: f_memory_resize().
  */
-#ifndef _di_f_type_int128ss_resize_
-  extern f_status_t f_type_int128ss_resize(const f_array_length_t length, f_int128ss_t *int128ss);
-#endif // _di_f_type_int128ss_resize_
+#ifndef _di_f_int128ss_resize_
+  extern f_status_t f_int128ss_resize(const f_array_length_t length, f_int128ss_t *int128ss);
+#endif // _di_f_int128ss_resize_
 
 /**
  * Resize the string uint128s array.
@@ -363,9 +363,9 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_adjust().
  */
-#ifndef _di_f_type_uint128s_adjust_
-  extern f_status_t f_type_uint128s_adjust(const f_array_length_t length, f_uint128s_t *uint128s);
-#endif // _di_f_type_uint128s_adjust_
+#ifndef _di_f_uint128s_adjust_
+  extern f_status_t f_uint128s_adjust(const f_array_length_t length, f_uint128s_t *uint128s);
+#endif // _di_f_uint128s_adjust_
 
 /**
  * Append the source uint128s onto the destination.
@@ -383,9 +383,9 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  */
-#ifndef _di_f_type_uint128s_append_
-  extern f_status_t f_type_uint128s_append(const f_uint128s_t source, f_uint128s_t *destination);
-#endif // _di_f_type_uint128s_append_
+#ifndef _di_f_uint128s_append_
+  extern f_status_t f_uint128s_append(const f_uint128s_t source, f_uint128s_t *destination);
+#endif // _di_f_uint128s_append_
 
 /**
  * Resize the string uint128s array to a smaller size.
@@ -406,9 +406,9 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_adjust().
  */
-#ifndef _di_f_type_uint128s_decimate_by_
-  extern f_status_t f_type_uint128s_decimate_by(const f_array_length_t amount, f_uint128s_t *uint128s);
-#endif // _di_f_type_uint128s_decimate_by_
+#ifndef _di_f_uint128s_decimate_by_
+  extern f_status_t f_uint128s_decimate_by(const f_array_length_t amount, f_uint128s_t *uint128s);
+#endif // _di_f_uint128s_decimate_by_
 
 /**
  * Resize the string uint128s array to a smaller size.
@@ -429,9 +429,9 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  */
-#ifndef _di_f_type_uint128s_decrease_by_
-  extern f_status_t f_type_uint128s_decrease_by(const f_array_length_t amount, f_uint128s_t *uint128s);
-#endif // _di_f_type_uint128s_decrease_by_
+#ifndef _di_f_uint128s_decrease_by_
+  extern f_status_t f_uint128s_decrease_by(const f_array_length_t amount, f_uint128s_t *uint128s);
+#endif // _di_f_uint128s_decrease_by_
 
 /**
  * Increase the size of the string uint128s array, but only if necesary.
@@ -454,9 +454,9 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  */
-#ifndef _di_f_type_uint128s_increase_
-  extern f_status_t f_type_uint128s_increase(const uint16_t step, f_uint128s_t *uint128s);
-#endif // _di_f_type_uint128s_increase_
+#ifndef _di_f_uint128s_increase_
+  extern f_status_t f_uint128s_increase(const uint16_t step, f_uint128s_t *uint128s);
+#endif // _di_f_uint128s_increase_
 
 /**
  * Resize the string uint128s array to a larger size.
@@ -479,9 +479,9 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  */
-#ifndef _di_f_type_uint128s_increase_by_
-  extern f_status_t f_type_uint128s_increase_by(const f_array_length_t amount, f_uint128s_t *uint128s);
-#endif // _di_f_type_uint128s_increase_by_
+#ifndef _di_f_uint128s_increase_by_
+  extern f_status_t f_uint128s_increase_by(const f_array_length_t amount, f_uint128s_t *uint128s);
+#endif // _di_f_uint128s_increase_by_
 
 /**
  * Resize the string uint128s array.
@@ -498,9 +498,9 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  */
-#ifndef _di_f_type_uint128s_resize_
-  extern f_status_t f_type_uint128s_resize(const f_array_length_t length, f_uint128s_t *uint128s);
-#endif // _di_f_type_uint128s_resize_
+#ifndef _di_f_uint128s_resize_
+  extern f_status_t f_uint128s_resize(const f_array_length_t length, f_uint128s_t *uint128s);
+#endif // _di_f_uint128s_resize_
 
 /**
  * Resize the string uint128ss array.
@@ -518,9 +518,9 @@ extern "C" {
  *   Errors (with error bit) from: f_memory_adjust().
  *   Errors (with error bit) from: f_memory_destroy().
  */
-#ifndef _di_f_type_uint128ss_adjust_
-  extern f_status_t f_type_uint128ss_adjust(const f_array_length_t length, f_uint128ss_t *uint128ss);
-#endif // _di_f_type_uint128ss_adjust_
+#ifndef _di_f_uint128ss_adjust_
+  extern f_status_t f_uint128ss_adjust(const f_array_length_t length, f_uint128ss_t *uint128ss);
+#endif // _di_f_uint128ss_adjust_
 
 /**
  * Append the source uint128ss onto the destination.
@@ -538,9 +538,9 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  */
-#ifndef _di_f_type_uint128ss_append_
-  extern f_status_t f_type_uint128ss_append(const f_uint128ss_t source, f_uint128ss_t *destination);
-#endif // _di_f_type_uint128ss_append_
+#ifndef _di_f_uint128ss_append_
+  extern f_status_t f_uint128ss_append(const f_uint128ss_t source, f_uint128ss_t *destination);
+#endif // _di_f_uint128ss_append_
 
 /**
  * Resize the string uint128ss array.
@@ -558,9 +558,9 @@ extern "C" {
  *   Errors (with error bit) from: f_memory_adjust().
  *   Errors (with error bit) from: f_memory_destroy().
  */
-#ifndef _di_f_type_uint128ss_adjust_
-  extern f_status_t f_type_uint128ss_adjust(const f_array_length_t length, f_uint128ss_t *uint128ss);
-#endif // _di_f_type_uint128ss_adjust_
+#ifndef _di_f_uint128ss_adjust_
+  extern f_status_t f_uint128ss_adjust(const f_array_length_t length, f_uint128ss_t *uint128ss);
+#endif // _di_f_uint128ss_adjust_
 
 /**
  * Resize the string uint128ss array to a smaller size.
@@ -582,9 +582,9 @@ extern "C" {
  *   Errors (with error bit) from: f_memory_adjust().
  *   Errors (with error bit) from: f_memory_destroy().
  */
-#ifndef _di_f_type_uint128ss_decimate_by_
-  extern f_status_t f_type_uint128ss_decimate_by(const f_array_length_t amount, f_uint128ss_t *uint128ss);
-#endif // _di_f_type_uint128ss_decimate_by_
+#ifndef _di_f_uint128ss_decimate_by_
+  extern f_status_t f_uint128ss_decimate_by(const f_array_length_t amount, f_uint128ss_t *uint128ss);
+#endif // _di_f_uint128ss_decimate_by_
 
 /**
  * Resize the string uint128ss array to a smaller size.
@@ -606,9 +606,9 @@ extern "C" {
  *   Errors (with error bit) from: f_memory_delete().
  *   Errors (with error bit) from: f_memory_resize().
  */
-#ifndef _di_f_type_uint128ss_decrease_by_
-  extern f_status_t f_type_uint128ss_decrease_by(const f_array_length_t amount, f_uint128ss_t *uint128ss);
-#endif // _di_f_type_uint128ss_decrease_by_
+#ifndef _di_f_uint128ss_decrease_by_
+  extern f_status_t f_uint128ss_decrease_by(const f_array_length_t amount, f_uint128ss_t *uint128ss);
+#endif // _di_f_uint128ss_decrease_by_
 
 /**
  * Increase the size of the string uint128ss array, but only if necessary.
@@ -631,9 +631,9 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  */
-#ifndef _di_f_type_uint128ss_increase_
-  extern f_status_t f_type_uint128ss_increase(const uint16_t step, f_uint128ss_t *uint128ss);
-#endif // _di_f_type_uint128ss_increase_
+#ifndef _di_f_uint128ss_increase_
+  extern f_status_t f_uint128ss_increase(const uint16_t step, f_uint128ss_t *uint128ss);
+#endif // _di_f_uint128ss_increase_
 
 /**
  * Resize the string uint128ss array to a larger size.
@@ -656,9 +656,9 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  */
-#ifndef _di_f_type_uint128ss_increase_by_
-  extern f_status_t f_type_uint128ss_increase_by(const f_array_length_t amount, f_uint128ss_t *uint128ss);
-#endif // _di_f_type_uint128ss_increase_by_
+#ifndef _di_f_uint128ss_increase_by_
+  extern f_status_t f_uint128ss_increase_by(const f_array_length_t amount, f_uint128ss_t *uint128ss);
+#endif // _di_f_uint128ss_increase_by_
 
 /**
  * Resize the string uint128ss array.
@@ -676,9 +676,9 @@ extern "C" {
  *   Errors (with error bit) from: f_memory_delete().
  *   Errors (with error bit) from: f_memory_resize().
  */
-#ifndef _di_f_type_uint128ss_resize_
-  extern f_status_t f_type_uint128ss_resize(const f_array_length_t length, f_uint128ss_t *uint128ss);
-#endif // _di_f_type_uint128ss_resize_
+#ifndef _di_f_uint128ss_resize_
+  extern f_status_t f_uint128ss_resize(const f_array_length_t length, f_uint128ss_t *uint128ss);
+#endif // _di_f_uint128ss_resize_
 
 #ifdef __cplusplus
 } // extern "C"
index 109a3974b0b58436cdde2f66f1b76bd21f8ef18d..ab7d74f0848d2d5a2812449db2dabc9661e368a6 100644 (file)
@@ -6,60 +6,60 @@
 extern "C" {
 #endif
 
-#ifndef _di_f_type_int16s_adjust_
-  f_status_t f_type_int16s_adjust(const f_array_length_t length, f_int16s_t *int16s) {
+#ifndef _di_f_int16s_adjust_
+  f_status_t f_int16s_adjust(const f_array_length_t length, f_int16s_t *int16s) {
     #ifndef _di_level_0_parameter_checking_
       if (!int16s) return F_status_set_error(F_parameter);
     #endif // _di_level_0_parameter_checking_
 
-    return private_f_type_int16s_adjust(length, int16s);
+    return private_f_int16s_adjust(length, int16s);
   }
-#endif // _di_f_type_int16s_adjust_
+#endif // _di_f_int16s_adjust_
 
-#ifndef _di_f_type_int16s_append_
-  f_status_t f_type_int16s_append(const f_int16s_t source, f_int16s_t *destination) {
+#ifndef _di_f_int16s_append_
+  f_status_t f_int16s_append(const f_int16s_t source, f_int16s_t *destination) {
     #ifndef _di_level_0_parameter_checking_
       if (!destination) return F_status_set_error(F_parameter);
     #endif // _di_level_0_parameter_checking_
 
     if (!source.used) return F_data_not;
 
-    return private_f_type_int16s_append(source, destination);
+    return private_f_int16s_append(source, destination);
   }
-#endif // _di_f_type_int16s_append_
+#endif // _di_f_int16s_append_
 
-#ifndef _di_f_type_int16s_decimate_by_
-  f_status_t f_type_int16s_decimate_by(const f_array_length_t amount, f_int16s_t *int16s) {
+#ifndef _di_f_int16s_decimate_by_
+  f_status_t f_int16s_decimate_by(const f_array_length_t amount, f_int16s_t *int16s) {
     #ifndef _di_level_0_parameter_checking_
       if (!amount) return F_status_set_error(F_parameter);
       if (!int16s) return F_status_set_error(F_parameter);
     #endif // _di_level_0_parameter_checking_
 
     if (int16s->size - amount > 0) {
-      return private_f_type_int16s_adjust(int16s->size - amount, int16s);
+      return private_f_int16s_adjust(int16s->size - amount, int16s);
     }
 
-    return private_f_type_int16s_adjust(0, int16s);
+    return private_f_int16s_adjust(0, int16s);
   }
-#endif // _di_f_type_int16s_decimate_by_
+#endif // _di_f_int16s_decimate_by_
 
-#ifndef _di_f_type_int16s_decrease_by_
-  f_status_t f_type_int16s_decrease_by(const f_array_length_t amount, f_int16s_t *int16s) {
+#ifndef _di_f_int16s_decrease_by_
+  f_status_t f_int16s_decrease_by(const f_array_length_t amount, f_int16s_t *int16s) {
     #ifndef _di_level_0_parameter_checking_
       if (!amount) return F_status_set_error(F_parameter);
       if (!int16s) return F_status_set_error(F_parameter);
     #endif // _di_level_0_parameter_checking_
 
     if (int16s->size - amount > 0) {
-      return private_f_type_int16s_resize(int16s->size - amount, int16s);
+      return private_f_int16s_resize(int16s->size - amount, int16s);
     }
 
-    return private_f_type_int16s_resize(0, int16s);
+    return private_f_int16s_resize(0, int16s);
   }
-#endif // _di_f_type_int16s_decrease_by_
+#endif // _di_f_int16s_decrease_by_
 
-#ifndef _di_f_type_int16s_increase_
-  f_status_t f_type_int16s_increase(const uint16_t step, f_int16s_t *int16s) {
+#ifndef _di_f_int16s_increase_
+  f_status_t f_int16s_increase(const uint16_t step, f_int16s_t *int16s) {
     #ifndef _di_level_0_parameter_checking_
       if (!step) return F_status_set_error(F_parameter);
       if (!int16s) return F_status_set_error(F_parameter);
@@ -76,15 +76,15 @@ extern "C" {
         size = F_array_length_t_size_d;
       }
 
-      return private_f_type_int16s_resize(size, int16s);
+      return private_f_int16s_resize(size, int16s);
     }
 
     return F_data_not;
   }
-#endif // _di_f_type_int16s_increase_
+#endif // _di_f_int16s_increase_
 
-#ifndef _di_f_type_int16s_increase_by_
-  f_status_t f_type_int16s_increase_by(const f_array_length_t amount, f_int16s_t *int16s) {
+#ifndef _di_f_int16s_increase_by_
+  f_status_t f_int16s_increase_by(const f_array_length_t amount, f_int16s_t *int16s) {
     #ifndef _di_level_0_parameter_checking_
       if (!amount) return F_status_set_error(F_parameter);
       if (!int16s) return F_status_set_error(F_parameter);
@@ -95,35 +95,35 @@ extern "C" {
         return F_status_set_error(F_array_too_large);
       }
 
-      return private_f_type_int16s_resize(int16s->used + amount, int16s);
+      return private_f_int16s_resize(int16s->used + amount, int16s);
     }
 
     return F_data_not;
   }
-#endif // _di_f_type_int16s_increase_by_
+#endif // _di_f_int16s_increase_by_
 
-#ifndef _di_f_type_int16s_resize_
-  f_status_t f_type_int16s_resize(const f_array_length_t length, f_int16s_t *int16s) {
+#ifndef _di_f_int16s_resize_
+  f_status_t f_int16s_resize(const f_array_length_t length, f_int16s_t *int16s) {
     #ifndef _di_level_0_parameter_checking_
       if (!int16s) return F_status_set_error(F_parameter);
     #endif // _di_level_0_parameter_checking_
 
-    return private_f_type_int16s_resize(length, int16s);
+    return private_f_int16s_resize(length, int16s);
   }
-#endif // _di_f_type_int16s_resize_
+#endif // _di_f_int16s_resize_
 
-#ifndef _di_f_type_int16ss_adjust_
-  f_status_t f_type_int16ss_adjust(const f_array_length_t length, f_int16ss_t *int16ss) {
+#ifndef _di_f_int16ss_adjust_
+  f_status_t f_int16ss_adjust(const f_array_length_t length, f_int16ss_t *int16ss) {
     #ifndef _di_level_0_parameter_checking_
       if (!int16ss) return F_status_set_error(F_parameter);
     #endif // _di_level_0_parameter_checking_
 
-    return private_f_type_int16ss_adjust(length, int16ss);
+    return private_f_int16ss_adjust(length, int16ss);
   }
-#endif // _di_f_type_int16ss_adjust_
+#endif // _di_f_int16ss_adjust_
 
-#ifndef _di_f_type_int16ss_append_
-  f_status_t f_type_int16ss_append(const f_int16ss_t source, f_int16ss_t *destination) {
+#ifndef _di_f_int16ss_append_
+  f_status_t f_int16ss_append(const f_int16ss_t source, f_int16ss_t *destination) {
     #ifndef _di_level_0_parameter_checking_
       if (!destination) return F_status_set_error(F_parameter);
     #endif // _di_level_0_parameter_checking_
@@ -133,51 +133,51 @@ extern "C" {
     f_status_t status = F_none;
 
     if (destination->used + source.used > destination->size) {
-      status = private_f_type_int16ss_resize(destination->used + source.used, destination);
+      status = private_f_int16ss_resize(destination->used + source.used, destination);
       if (F_status_is_error(status)) return status;
     }
 
     for (f_array_length_t i = 0; i < source.used; ++i, ++destination->used) {
-      status = private_f_type_int16s_append(source.array[i], &destination->array[destination->used]);
+      status = private_f_int16s_append(source.array[i], &destination->array[destination->used]);
       if (F_status_is_error(status)) return status;
     } // for
 
     return F_none;
   }
-#endif // _di_f_type_int16ss_append_
+#endif // _di_f_int16ss_append_
 
-#ifndef _di_f_type_int16ss_decimate_by_
-  f_status_t f_type_int16ss_decimate_by(const f_array_length_t amount, f_int16ss_t *int16ss) {
+#ifndef _di_f_int16ss_decimate_by_
+  f_status_t f_int16ss_decimate_by(const f_array_length_t amount, f_int16ss_t *int16ss) {
     #ifndef _di_level_0_parameter_checking_
       if (!amount) return F_status_set_error(F_parameter);
       if (!int16ss) return F_status_set_error(F_parameter);
     #endif // _di_level_0_parameter_checking_
 
     if (int16ss->size - amount > 0) {
-      return private_f_type_int16ss_adjust(int16ss->size - amount, int16ss);
+      return private_f_int16ss_adjust(int16ss->size - amount, int16ss);
     }
 
-    return private_f_type_int16ss_adjust(0, int16ss);
+    return private_f_int16ss_adjust(0, int16ss);
   }
-#endif // _di_f_type_int16ss_decimate_by_
+#endif // _di_f_int16ss_decimate_by_
 
-#ifndef _di_f_type_int16ss_decrease_by_
-  f_status_t f_type_int16ss_decrease_by(const f_array_length_t amount, f_int16ss_t *int16ss) {
+#ifndef _di_f_int16ss_decrease_by_
+  f_status_t f_int16ss_decrease_by(const f_array_length_t amount, f_int16ss_t *int16ss) {
     #ifndef _di_level_0_parameter_checking_
       if (!amount) return F_status_set_error(F_parameter);
       if (!int16ss) return F_status_set_error(F_parameter);
     #endif // _di_level_0_parameter_checking_
 
     if (int16ss->size - amount > 0) {
-      return private_f_type_int16ss_resize(int16ss->size - amount, int16ss);
+      return private_f_int16ss_resize(int16ss->size - amount, int16ss);
     }
 
-    return private_f_type_int16ss_resize(0, int16ss);
+    return private_f_int16ss_resize(0, int16ss);
   }
-#endif // _di_f_type_int16ss_decrease_by_
+#endif // _di_f_int16ss_decrease_by_
 
-#ifndef _di_f_type_int16ss_increase_
-  f_status_t f_type_int16ss_increase(const uint16_t step, f_int16ss_t *int16ss) {
+#ifndef _di_f_int16ss_increase_
+  f_status_t f_int16ss_increase(const uint16_t step, f_int16ss_t *int16ss) {
     #ifndef _di_level_0_parameter_checking_
       if (!step) return F_status_set_error(F_parameter);
       if (!int16ss) return F_status_set_error(F_parameter);
@@ -194,15 +194,15 @@ extern "C" {
         size = F_array_length_t_size_d;
       }
 
-      return private_f_type_int16ss_resize(size, int16ss);
+      return private_f_int16ss_resize(size, int16ss);
     }
 
     return F_data_not;
   }
-#endif // _di_f_type_int16ss_increase_
+#endif // _di_f_int16ss_increase_
 
-#ifndef _di_f_type_int16ss_increase_by_
-  f_status_t f_type_int16ss_increase_by(const f_array_length_t amount, f_int16ss_t *int16ss) {
+#ifndef _di_f_int16ss_increase_by_
+  f_status_t f_int16ss_increase_by(const f_array_length_t amount, f_int16ss_t *int16ss) {
     #ifndef _di_level_0_parameter_checking_
       if (!amount) return F_status_set_error(F_parameter);
       if (!int16ss) return F_status_set_error(F_parameter);
@@ -213,77 +213,77 @@ extern "C" {
         return F_status_set_error(F_array_too_large);
       }
 
-      return private_f_type_int16ss_resize(int16ss->used + amount, int16ss);
+      return private_f_int16ss_resize(int16ss->used + amount, int16ss);
     }
 
     return F_data_not;
   }
-#endif // _di_f_type_int16ss_increase_by_
+#endif // _di_f_int16ss_increase_by_
 
-#ifndef _di_f_type_int16ss_resize_
-  f_status_t f_type_int16ss_resize(const f_array_length_t length, f_int16ss_t *int16ss) {
+#ifndef _di_f_int16ss_resize_
+  f_status_t f_int16ss_resize(const f_array_length_t length, f_int16ss_t *int16ss) {
     #ifndef _di_level_0_parameter_checking_
       if (!int16ss) return F_status_set_error(F_parameter);
     #endif // _di_level_0_parameter_checking_
 
-    return private_f_type_int16ss_resize(length, int16ss);
+    return private_f_int16ss_resize(length, int16ss);
   }
-#endif // _di_f_type_int16ss_resize_
+#endif // _di_f_int16ss_resize_
 
-#ifndef _di_f_type_uint16s_adjust_
-  f_status_t f_type_uint16s_adjust(const f_array_length_t length, f_uint16s_t *uint16s) {
+#ifndef _di_f_uint16s_adjust_
+  f_status_t f_uint16s_adjust(const f_array_length_t length, f_uint16s_t *uint16s) {
     #ifndef _di_level_0_parameter_checking_
       if (!uint16s) return F_status_set_error(F_parameter);
     #endif // _di_level_0_parameter_checking_
 
-    return private_f_type_uint16s_adjust(length, uint16s);
+    return private_f_uint16s_adjust(length, uint16s);
   }
-#endif // _di_f_type_uint16s_adjust_
+#endif // _di_f_uint16s_adjust_
 
-#ifndef _di_f_type_uint16s_append_
-  f_status_t f_type_uint16s_append(const f_uint16s_t source, f_uint16s_t *destination) {
+#ifndef _di_f_uint16s_append_
+  f_status_t f_uint16s_append(const f_uint16s_t source, f_uint16s_t *destination) {
     #ifndef _di_level_0_parameter_checking_
       if (!destination) return F_status_set_error(F_parameter);
     #endif // _di_level_0_parameter_checking_
 
     if (!source.used) return F_data_not;
 
-    return private_f_type_uint16s_append(source, destination);
+    return private_f_uint16s_append(source, destination);
   }
-#endif // _di_f_type_uint16s_append_
+#endif // _di_f_uint16s_append_
 
-#ifndef _di_f_type_uint16s_decimate_by_
-  f_status_t f_type_uint16s_decimate_by(const f_array_length_t amount, f_uint16s_t *uint16s) {
+#ifndef _di_f_uint16s_decimate_by_
+  f_status_t f_uint16s_decimate_by(const f_array_length_t amount, f_uint16s_t *uint16s) {
     #ifndef _di_level_0_parameter_checking_
       if (!amount) return F_status_set_error(F_parameter);
       if (!uint16s) return F_status_set_error(F_parameter);
     #endif // _di_level_0_parameter_checking_
 
     if (uint16s->size - amount > 0) {
-      return private_f_type_uint16s_adjust(uint16s->size - amount, uint16s);
+      return private_f_uint16s_adjust(uint16s->size - amount, uint16s);
     }
 
-    return private_f_type_uint16s_adjust(0, uint16s);
+    return private_f_uint16s_adjust(0, uint16s);
   }
-#endif // _di_f_type_uint16s_decimate_by_
+#endif // _di_f_uint16s_decimate_by_
 
-#ifndef _di_f_type_uint16s_decrease_by_
-  f_status_t f_type_uint16s_decrease_by(const f_array_length_t amount, f_uint16s_t *uint16s) {
+#ifndef _di_f_uint16s_decrease_by_
+  f_status_t f_uint16s_decrease_by(const f_array_length_t amount, f_uint16s_t *uint16s) {
     #ifndef _di_level_0_parameter_checking_
       if (!amount) return F_status_set_error(F_parameter);
       if (!uint16s) return F_status_set_error(F_parameter);
     #endif // _di_level_0_parameter_checking_
 
     if (uint16s->size - amount > 0) {
-      return private_f_type_uint16s_resize(uint16s->size - amount, uint16s);
+      return private_f_uint16s_resize(uint16s->size - amount, uint16s);
     }
 
-    return private_f_type_uint16s_resize(0, uint16s);
+    return private_f_uint16s_resize(0, uint16s);
   }
-#endif // _di_f_type_uint16s_decrease_by_
+#endif // _di_f_uint16s_decrease_by_
 
-#ifndef _di_f_type_uint16s_increase_
-  f_status_t f_type_uint16s_increase(const uint16_t step, f_uint16s_t *uint16s) {
+#ifndef _di_f_uint16s_increase_
+  f_status_t f_uint16s_increase(const uint16_t step, f_uint16s_t *uint16s) {
     #ifndef _di_level_0_parameter_checking_
       if (!step) return F_status_set_error(F_parameter);
       if (!uint16s) return F_status_set_error(F_parameter);
@@ -300,15 +300,15 @@ extern "C" {
         size = F_array_length_t_size_d;
       }
 
-      return private_f_type_uint16s_resize(size, uint16s);
+      return private_f_uint16s_resize(size, uint16s);
     }
 
     return F_data_not;
   }
-#endif // _di_f_type_uint16s_increase_
+#endif // _di_f_uint16s_increase_
 
-#ifndef _di_f_type_uint16s_increase_by_
-  f_status_t f_type_uint16s_increase_by(const f_array_length_t amount, f_uint16s_t *uint16s) {
+#ifndef _di_f_uint16s_increase_by_
+  f_status_t f_uint16s_increase_by(const f_array_length_t amount, f_uint16s_t *uint16s) {
     #ifndef _di_level_0_parameter_checking_
       if (!amount) return F_status_set_error(F_parameter);
       if (!uint16s) return F_status_set_error(F_parameter);
@@ -319,35 +319,35 @@ extern "C" {
         return F_status_set_error(F_array_too_large);
       }
 
-      return private_f_type_uint16s_resize(uint16s->used + amount, uint16s);
+      return private_f_uint16s_resize(uint16s->used + amount, uint16s);
     }
 
     return F_data_not;
   }
-#endif // _di_f_type_uint16s_increase_by_
+#endif // _di_f_uint16s_increase_by_
 
-#ifndef _di_f_type_uint16s_resize_
-  f_status_t f_type_uint16s_resize(const f_array_length_t length, f_uint16s_t *uint16s) {
+#ifndef _di_f_uint16s_resize_
+  f_status_t f_uint16s_resize(const f_array_length_t length, f_uint16s_t *uint16s) {
     #ifndef _di_level_0_parameter_checking_
       if (!uint16s) return F_status_set_error(F_parameter);
     #endif // _di_level_0_parameter_checking_
 
-    return private_f_type_uint16s_resize(length, uint16s);
+    return private_f_uint16s_resize(length, uint16s);
   }
-#endif // _di_f_type_uint16s_resize_
+#endif // _di_f_uint16s_resize_
 
-#ifndef _di_f_type_uint16ss_adjust_
-  f_status_t f_type_uint16ss_adjust(const f_array_length_t length, f_uint16ss_t *uint16ss) {
+#ifndef _di_f_uint16ss_adjust_
+  f_status_t f_uint16ss_adjust(const f_array_length_t length, f_uint16ss_t *uint16ss) {
     #ifndef _di_level_0_parameter_checking_
       if (!uint16ss) return F_status_set_error(F_parameter);
     #endif // _di_level_0_parameter_checking_
 
-    return private_f_type_uint16ss_adjust(length, uint16ss);
+    return private_f_uint16ss_adjust(length, uint16ss);
   }
-#endif // _di_f_type_uint16ss_adjust_
+#endif // _di_f_uint16ss_adjust_
 
-#ifndef _di_f_type_uint16ss_append_
-  f_status_t f_type_uint16ss_append(const f_uint16ss_t source, f_uint16ss_t *destination) {
+#ifndef _di_f_uint16ss_append_
+  f_status_t f_uint16ss_append(const f_uint16ss_t source, f_uint16ss_t *destination) {
     #ifndef _di_level_0_parameter_checking_
       if (!destination) return F_status_set_error(F_parameter);
     #endif // _di_level_0_parameter_checking_
@@ -357,51 +357,51 @@ extern "C" {
     f_status_t status = F_none;
 
     if (destination->used + source.used > destination->size) {
-      status = private_f_type_uint16ss_resize(destination->used + source.used, destination);
+      status = private_f_uint16ss_resize(destination->used + source.used, destination);
       if (F_status_is_error(status)) return status;
     }
 
     for (f_array_length_t i = 0; i < source.used; ++i, ++destination->used) {
-      status = private_f_type_uint16s_append(source.array[i], &destination->array[destination->used]);
+      status = private_f_uint16s_append(source.array[i], &destination->array[destination->used]);
       if (F_status_is_error(status)) return status;
     } // for
 
     return F_none;
   }
-#endif // _di_f_type_uint16ss_append_
+#endif // _di_f_uint16ss_append_
 
-#ifndef _di_f_type_uint16ss_decimate_by_
-  f_status_t f_type_uint16ss_decimate_by(const f_array_length_t amount, f_uint16ss_t *uint16ss) {
+#ifndef _di_f_uint16ss_decimate_by_
+  f_status_t f_uint16ss_decimate_by(const f_array_length_t amount, f_uint16ss_t *uint16ss) {
     #ifndef _di_level_0_parameter_checking_
       if (!amount) return F_status_set_error(F_parameter);
       if (!uint16ss) return F_status_set_error(F_parameter);
     #endif // _di_level_0_parameter_checking_
 
     if (uint16ss->size - amount > 0) {
-      return private_f_type_uint16ss_adjust(uint16ss->size - amount, uint16ss);
+      return private_f_uint16ss_adjust(uint16ss->size - amount, uint16ss);
     }
 
-    return private_f_type_uint16ss_adjust(0, uint16ss);
+    return private_f_uint16ss_adjust(0, uint16ss);
   }
-#endif // _di_f_type_uint16ss_decimate_by_
+#endif // _di_f_uint16ss_decimate_by_
 
-#ifndef _di_f_type_uint16ss_decrease_by_
-  f_status_t f_type_uint16ss_decrease_by(const f_array_length_t amount, f_uint16ss_t *uint16ss) {
+#ifndef _di_f_uint16ss_decrease_by_
+  f_status_t f_uint16ss_decrease_by(const f_array_length_t amount, f_uint16ss_t *uint16ss) {
     #ifndef _di_level_0_parameter_checking_
       if (!amount) return F_status_set_error(F_parameter);
       if (!uint16ss) return F_status_set_error(F_parameter);
     #endif // _di_level_0_parameter_checking_
 
     if (uint16ss->size - amount > 0) {
-      return private_f_type_uint16ss_resize(uint16ss->size - amount, uint16ss);
+      return private_f_uint16ss_resize(uint16ss->size - amount, uint16ss);
     }
 
-    return private_f_type_uint16ss_resize(0, uint16ss);
+    return private_f_uint16ss_resize(0, uint16ss);
   }
-#endif // _di_f_type_uint16ss_decrease_by_
+#endif // _di_f_uint16ss_decrease_by_
 
-#ifndef _di_f_type_uint16ss_increase_
-  f_status_t f_type_uint16ss_increase(const uint16_t step, f_uint16ss_t *uint16ss) {
+#ifndef _di_f_uint16ss_increase_
+  f_status_t f_uint16ss_increase(const uint16_t step, f_uint16ss_t *uint16ss) {
     #ifndef _di_level_0_parameter_checking_
       if (!step) return F_status_set_error(F_parameter);
       if (!uint16ss) return F_status_set_error(F_parameter);
@@ -418,15 +418,15 @@ extern "C" {
         size = F_array_length_t_size_d;
       }
 
-      return private_f_type_uint16ss_resize(size, uint16ss);
+      return private_f_uint16ss_resize(size, uint16ss);
     }
 
     return F_data_not;
   }
-#endif // _di_f_type_uint16ss_increase_
+#endif // _di_f_uint16ss_increase_
 
-#ifndef _di_f_type_uint16ss_increase_by_
-  f_status_t f_type_uint16ss_increase_by(const f_array_length_t amount, f_uint16ss_t *uint16ss) {
+#ifndef _di_f_uint16ss_increase_by_
+  f_status_t f_uint16ss_increase_by(const f_array_length_t amount, f_uint16ss_t *uint16ss) {
     #ifndef _di_level_0_parameter_checking_
       if (!amount) return F_status_set_error(F_parameter);
       if (!uint16ss) return F_status_set_error(F_parameter);
@@ -437,22 +437,22 @@ extern "C" {
         return F_status_set_error(F_array_too_large);
       }
 
-      return private_f_type_uint16ss_resize(uint16ss->used + amount, uint16ss);
+      return private_f_uint16ss_resize(uint16ss->used + amount, uint16ss);
     }
 
     return F_data_not;
   }
-#endif // _di_f_type_uint16ss_increase_by_
+#endif // _di_f_uint16ss_increase_by_
 
-#ifndef _di_f_type_uint16ss_resize_
-  f_status_t f_type_uint16ss_resize(const f_array_length_t length, f_uint16ss_t *uint16ss) {
+#ifndef _di_f_uint16ss_resize_
+  f_status_t f_uint16ss_resize(const f_array_length_t length, f_uint16ss_t *uint16ss) {
     #ifndef _di_level_0_parameter_checking_
       if (!uint16ss) return F_status_set_error(F_parameter);
     #endif // _di_level_0_parameter_checking_
 
-    return private_f_type_uint16ss_resize(length, uint16ss);
+    return private_f_uint16ss_resize(length, uint16ss);
   }
-#endif // _di_f_type_uint16ss_resize_
+#endif // _di_f_uint16ss_resize_
 
 #ifdef __cplusplus
 } // extern "C"
index 15c2a05081113ef2349bb5d317205dde7561df64..01ecf8baa8f49ffe9d9077e3b3fcd3fd07289c5b 100644 (file)
@@ -31,9 +31,9 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_adjust().
  */
-#ifndef _di_f_type_int16s_adjust_
-  extern f_status_t f_type_int16s_adjust(const f_array_length_t length, f_int16s_t *int16s);
-#endif // _di_f_type_int16s_adjust_
+#ifndef _di_f_int16s_adjust_
+  extern f_status_t f_int16s_adjust(const f_array_length_t length, f_int16s_t *int16s);
+#endif // _di_f_int16s_adjust_
 
 /**
  * Append the source int16s onto the destination.
@@ -51,9 +51,9 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  */
-#ifndef _di_f_type_int16s_append_
-  extern f_status_t f_type_int16s_append(const f_int16s_t source, f_int16s_t *destination);
-#endif // _di_f_type_int16s_append_
+#ifndef _di_f_int16s_append_
+  extern f_status_t f_int16s_append(const f_int16s_t source, f_int16s_t *destination);
+#endif // _di_f_int16s_append_
 
 /**
  * Resize the int16s array to a smaller size.
@@ -74,9 +74,9 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_adjust().
  */
-#ifndef _di_f_type_int16s_decimate_by_
-  extern f_status_t f_type_int16s_decimate_by(const f_array_length_t amount, f_int16s_t *int16s);
-#endif // _di_f_type_int16s_decimate_by_
+#ifndef _di_f_int16s_decimate_by_
+  extern f_status_t f_int16s_decimate_by(const f_array_length_t amount, f_int16s_t *int16s);
+#endif // _di_f_int16s_decimate_by_
 
 /**
  * Resize the int16s array to a smaller size.
@@ -97,9 +97,9 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  */
-#ifndef _di_f_type_int16s_decrease_by_
-  extern f_status_t f_type_int16s_decrease_by(const f_array_length_t amount, f_int16s_t *int16s);
-#endif // _di_f_type_int16s_decrease_by_
+#ifndef _di_f_int16s_decrease_by_
+  extern f_status_t f_int16s_decrease_by(const f_array_length_t amount, f_int16s_t *int16s);
+#endif // _di_f_int16s_decrease_by_
 
 /**
  * Increase the size of the int16s array, but only if necesary.
@@ -122,9 +122,9 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  */
-#ifndef _di_f_type_int16s_increase_
-  extern f_status_t f_type_int16s_increase(const uint16_t step, f_int16s_t *int16s);
-#endif // _di_f_type_int16s_increase_
+#ifndef _di_f_int16s_increase_
+  extern f_status_t f_int16s_increase(const uint16_t step, f_int16s_t *int16s);
+#endif // _di_f_int16s_increase_
 
 /**
  * Resize the int16s array to a larger size.
@@ -147,9 +147,9 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  */
-#ifndef _di_f_type_int16s_increase_by_
-  extern f_status_t f_type_int16s_increase_by(const f_array_length_t amount, f_int16s_t *int16s);
-#endif // _di_f_type_int16s_increase_by_
+#ifndef _di_f_int16s_increase_by_
+  extern f_status_t f_int16s_increase_by(const f_array_length_t amount, f_int16s_t *int16s);
+#endif // _di_f_int16s_increase_by_
 
 /**
  * Resize the int16s array.
@@ -166,9 +166,9 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  */
-#ifndef _di_f_type_int16s_resize_
-  extern f_status_t f_type_int16s_resize(const f_array_length_t length, f_int16s_t *int16s);
-#endif // _di_f_type_int16s_resize_
+#ifndef _di_f_int16s_resize_
+  extern f_status_t f_int16s_resize(const f_array_length_t length, f_int16s_t *int16s);
+#endif // _di_f_int16s_resize_
 
 /**
  * Resize the int16ss array.
@@ -186,9 +186,9 @@ extern "C" {
  *   Errors (with error bit) from: f_memory_adjust().
  *   Errors (with error bit) from: f_memory_destroy().
  */
-#ifndef _di_f_type_int16ss_adjust_
-  extern f_status_t f_type_int16ss_adjust(const f_array_length_t length, f_int16ss_t *int16ss);
-#endif // _di_f_type_int16ss_adjust_
+#ifndef _di_f_int16ss_adjust_
+  extern f_status_t f_int16ss_adjust(const f_array_length_t length, f_int16ss_t *int16ss);
+#endif // _di_f_int16ss_adjust_
 
 /**
  * Append the source int16ss onto the destination.
@@ -206,9 +206,9 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  */
-#ifndef _di_f_type_int16ss_append_
-  extern f_status_t f_type_int16ss_append(const f_int16ss_t source, f_int16ss_t *destination);
-#endif // _di_f_type_int16ss_append_
+#ifndef _di_f_int16ss_append_
+  extern f_status_t f_int16ss_append(const f_int16ss_t source, f_int16ss_t *destination);
+#endif // _di_f_int16ss_append_
 
 /**
  * Resize the int16ss array.
@@ -226,9 +226,9 @@ extern "C" {
  *   Errors (with error bit) from: f_memory_adjust().
  *   Errors (with error bit) from: f_memory_destroy().
  */
-#ifndef _di_f_type_int16ss_adjust_
-  extern f_status_t f_type_int16ss_adjust(const f_array_length_t length, f_int16ss_t *int16ss);
-#endif // _di_f_type_int16ss_adjust_
+#ifndef _di_f_int16ss_adjust_
+  extern f_status_t f_int16ss_adjust(const f_array_length_t length, f_int16ss_t *int16ss);
+#endif // _di_f_int16ss_adjust_
 
 /**
  * Resize the int16ss array to a smaller size.
@@ -250,9 +250,9 @@ extern "C" {
  *   Errors (with error bit) from: f_memory_adjust().
  *   Errors (with error bit) from: f_memory_destroy().
  */
-#ifndef _di_f_type_int16ss_decimate_by_
-  extern f_status_t f_type_int16ss_decimate_by(const f_array_length_t amount, f_int16ss_t *int16ss);
-#endif // _di_f_type_int16ss_decimate_by_
+#ifndef _di_f_int16ss_decimate_by_
+  extern f_status_t f_int16ss_decimate_by(const f_array_length_t amount, f_int16ss_t *int16ss);
+#endif // _di_f_int16ss_decimate_by_
 
 /**
  * Resize the int16ss array to a smaller size.
@@ -274,9 +274,9 @@ extern "C" {
  *   Errors (with error bit) from: f_memory_delete().
  *   Errors (with error bit) from: f_memory_resize().
  */
-#ifndef _di_f_type_int16ss_decrease_by_
-  extern f_status_t f_type_int16ss_decrease_by(const f_array_length_t amount, f_int16ss_t *int16ss);
-#endif // _di_f_type_int16ss_decrease_by_
+#ifndef _di_f_int16ss_decrease_by_
+  extern f_status_t f_int16ss_decrease_by(const f_array_length_t amount, f_int16ss_t *int16ss);
+#endif // _di_f_int16ss_decrease_by_
 
 /**
  * Increase the size of the int16ss array, but only if necessary.
@@ -299,9 +299,9 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  */
-#ifndef _di_f_type_int16ss_increase_
-  extern f_status_t f_type_int16ss_increase(const uint16_t step, f_int16ss_t *int16ss);
-#endif // _di_f_type_int16ss_increase_
+#ifndef _di_f_int16ss_increase_
+  extern f_status_t f_int16ss_increase(const uint16_t step, f_int16ss_t *int16ss);
+#endif // _di_f_int16ss_increase_
 
 /**
  * Resize the int16ss array to a larger size.
@@ -324,9 +324,9 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  */
-#ifndef _di_f_type_int16ss_increase_by_
-  extern f_status_t f_type_int16ss_increase_by(const f_array_length_t amount, f_int16ss_t *int16ss);
-#endif // _di_f_type_int16ss_increase_by_
+#ifndef _di_f_int16ss_increase_by_
+  extern f_status_t f_int16ss_increase_by(const f_array_length_t amount, f_int16ss_t *int16ss);
+#endif // _di_f_int16ss_increase_by_
 
 /**
  * Resize the int16ss array.
@@ -344,9 +344,9 @@ extern "C" {
  *   Errors (with error bit) from: f_memory_delete().
  *   Errors (with error bit) from: f_memory_resize().
  */
-#ifndef _di_f_type_int16ss_resize_
-  extern f_status_t f_type_int16ss_resize(const f_array_length_t length, f_int16ss_t *int16ss);
-#endif // _di_f_type_int16ss_resize_
+#ifndef _di_f_int16ss_resize_
+  extern f_status_t f_int16ss_resize(const f_array_length_t length, f_int16ss_t *int16ss);
+#endif // _di_f_int16ss_resize_
 
 /**
  * Resize the string uint16s array.
@@ -363,9 +363,9 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_adjust().
  */
-#ifndef _di_f_type_uint16s_adjust_
-  extern f_status_t f_type_uint16s_adjust(const f_array_length_t length, f_uint16s_t *uint16s);
-#endif // _di_f_type_uint16s_adjust_
+#ifndef _di_f_uint16s_adjust_
+  extern f_status_t f_uint16s_adjust(const f_array_length_t length, f_uint16s_t *uint16s);
+#endif // _di_f_uint16s_adjust_
 
 /**
  * Append the source uint16s onto the destination.
@@ -383,9 +383,9 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  */
-#ifndef _di_f_type_uint16s_append_
-  extern f_status_t f_type_uint16s_append(const f_uint16s_t source, f_uint16s_t *destination);
-#endif // _di_f_type_uint16s_append_
+#ifndef _di_f_uint16s_append_
+  extern f_status_t f_uint16s_append(const f_uint16s_t source, f_uint16s_t *destination);
+#endif // _di_f_uint16s_append_
 
 /**
  * Resize the string uint16s array to a smaller size.
@@ -406,9 +406,9 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_adjust().
  */
-#ifndef _di_f_type_uint16s_decimate_by_
-  extern f_status_t f_type_uint16s_decimate_by(const f_array_length_t amount, f_uint16s_t *uint16s);
-#endif // _di_f_type_uint16s_decimate_by_
+#ifndef _di_f_uint16s_decimate_by_
+  extern f_status_t f_uint16s_decimate_by(const f_array_length_t amount, f_uint16s_t *uint16s);
+#endif // _di_f_uint16s_decimate_by_
 
 /**
  * Resize the string uint16s array to a smaller size.
@@ -429,9 +429,9 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  */
-#ifndef _di_f_type_uint16s_decrease_by_
-  extern f_status_t f_type_uint16s_decrease_by(const f_array_length_t amount, f_uint16s_t *uint16s);
-#endif // _di_f_type_uint16s_decrease_by_
+#ifndef _di_f_uint16s_decrease_by_
+  extern f_status_t f_uint16s_decrease_by(const f_array_length_t amount, f_uint16s_t *uint16s);
+#endif // _di_f_uint16s_decrease_by_
 
 /**
  * Increase the size of the string uint16s array, but only if necesary.
@@ -454,9 +454,9 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  */
-#ifndef _di_f_type_uint16s_increase_
-  extern f_status_t f_type_uint16s_increase(const uint16_t step, f_uint16s_t *uint16s);
-#endif // _di_f_type_uint16s_increase_
+#ifndef _di_f_uint16s_increase_
+  extern f_status_t f_uint16s_increase(const uint16_t step, f_uint16s_t *uint16s);
+#endif // _di_f_uint16s_increase_
 
 /**
  * Resize the string uint16s array to a larger size.
@@ -479,9 +479,9 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  */
-#ifndef _di_f_type_uint16s_increase_by_
-  extern f_status_t f_type_uint16s_increase_by(const f_array_length_t amount, f_uint16s_t *uint16s);
-#endif // _di_f_type_uint16s_increase_by_
+#ifndef _di_f_uint16s_increase_by_
+  extern f_status_t f_uint16s_increase_by(const f_array_length_t amount, f_uint16s_t *uint16s);
+#endif // _di_f_uint16s_increase_by_
 
 /**
  * Resize the string uint16s array.
@@ -498,9 +498,9 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  */
-#ifndef _di_f_type_uint16s_resize_
-  extern f_status_t f_type_uint16s_resize(const f_array_length_t length, f_uint16s_t *uint16s);
-#endif // _di_f_type_uint16s_resize_
+#ifndef _di_f_uint16s_resize_
+  extern f_status_t f_uint16s_resize(const f_array_length_t length, f_uint16s_t *uint16s);
+#endif // _di_f_uint16s_resize_
 
 /**
  * Resize the string uint16ss array.
@@ -518,9 +518,9 @@ extern "C" {
  *   Errors (with error bit) from: f_memory_adjust().
  *   Errors (with error bit) from: f_memory_destroy().
  */
-#ifndef _di_f_type_uint16ss_adjust_
-  extern f_status_t f_type_uint16ss_adjust(const f_array_length_t length, f_uint16ss_t *uint16ss);
-#endif // _di_f_type_uint16ss_adjust_
+#ifndef _di_f_uint16ss_adjust_
+  extern f_status_t f_uint16ss_adjust(const f_array_length_t length, f_uint16ss_t *uint16ss);
+#endif // _di_f_uint16ss_adjust_
 
 /**
  * Append the source uint16ss onto the destination.
@@ -538,9 +538,9 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  */
-#ifndef _di_f_type_uint16ss_append_
-  extern f_status_t f_type_uint16ss_append(const f_uint16ss_t source, f_uint16ss_t *destination);
-#endif // _di_f_type_uint16ss_append_
+#ifndef _di_f_uint16ss_append_
+  extern f_status_t f_uint16ss_append(const f_uint16ss_t source, f_uint16ss_t *destination);
+#endif // _di_f_uint16ss_append_
 
 /**
  * Resize the string uint16ss array.
@@ -558,9 +558,9 @@ extern "C" {
  *   Errors (with error bit) from: f_memory_adjust().
  *   Errors (with error bit) from: f_memory_destroy().
  */
-#ifndef _di_f_type_uint16ss_adjust_
-  extern f_status_t f_type_uint16ss_adjust(const f_array_length_t length, f_uint16ss_t *uint16ss);
-#endif // _di_f_type_uint16ss_adjust_
+#ifndef _di_f_uint16ss_adjust_
+  extern f_status_t f_uint16ss_adjust(const f_array_length_t length, f_uint16ss_t *uint16ss);
+#endif // _di_f_uint16ss_adjust_
 
 /**
  * Resize the string uint16ss array to a smaller size.
@@ -582,9 +582,9 @@ extern "C" {
  *   Errors (with error bit) from: f_memory_adjust().
  *   Errors (with error bit) from: f_memory_destroy().
  */
-#ifndef _di_f_type_uint16ss_decimate_by_
-  extern f_status_t f_type_uint16ss_decimate_by(const f_array_length_t amount, f_uint16ss_t *uint16ss);
-#endif // _di_f_type_uint16ss_decimate_by_
+#ifndef _di_f_uint16ss_decimate_by_
+  extern f_status_t f_uint16ss_decimate_by(const f_array_length_t amount, f_uint16ss_t *uint16ss);
+#endif // _di_f_uint16ss_decimate_by_
 
 /**
  * Resize the string uint16ss array to a smaller size.
@@ -606,9 +606,9 @@ extern "C" {
  *   Errors (with error bit) from: f_memory_delete().
  *   Errors (with error bit) from: f_memory_resize().
  */
-#ifndef _di_f_type_uint16ss_decrease_by_
-  extern f_status_t f_type_uint16ss_decrease_by(const f_array_length_t amount, f_uint16ss_t *uint16ss);
-#endif // _di_f_type_uint16ss_decrease_by_
+#ifndef _di_f_uint16ss_decrease_by_
+  extern f_status_t f_uint16ss_decrease_by(const f_array_length_t amount, f_uint16ss_t *uint16ss);
+#endif // _di_f_uint16ss_decrease_by_
 
 /**
  * Increase the size of the string uint16ss array, but only if necessary.
@@ -631,9 +631,9 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  */
-#ifndef _di_f_type_uint16ss_increase_
-  extern f_status_t f_type_uint16ss_increase(const uint16_t step, f_uint16ss_t *uint16ss);
-#endif // _di_f_type_uint16ss_increase_
+#ifndef _di_f_uint16ss_increase_
+  extern f_status_t f_uint16ss_increase(const uint16_t step, f_uint16ss_t *uint16ss);
+#endif // _di_f_uint16ss_increase_
 
 /**
  * Resize the string uint16ss array to a larger size.
@@ -656,9 +656,9 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  */
-#ifndef _di_f_type_uint16ss_increase_by_
-  extern f_status_t f_type_uint16ss_increase_by(const f_array_length_t amount, f_uint16ss_t *uint16ss);
-#endif // _di_f_type_uint16ss_increase_by_
+#ifndef _di_f_uint16ss_increase_by_
+  extern f_status_t f_uint16ss_increase_by(const f_array_length_t amount, f_uint16ss_t *uint16ss);
+#endif // _di_f_uint16ss_increase_by_
 
 /**
  * Resize the string uint16ss array.
@@ -676,9 +676,9 @@ extern "C" {
  *   Errors (with error bit) from: f_memory_delete().
  *   Errors (with error bit) from: f_memory_resize().
  */
-#ifndef _di_f_type_uint16ss_resize_
-  extern f_status_t f_type_uint16ss_resize(const f_array_length_t length, f_uint16ss_t *uint16ss);
-#endif // _di_f_type_uint16ss_resize_
+#ifndef _di_f_uint16ss_resize_
+  extern f_status_t f_uint16ss_resize(const f_array_length_t length, f_uint16ss_t *uint16ss);
+#endif // _di_f_uint16ss_resize_
 
 #ifdef __cplusplus
 } // extern "C"
index 43194438f055a21d2598b5fd068efd60af018913..1cc48dd083113d3bdab2426230b85fecc78f6366 100644 (file)
@@ -6,60 +6,60 @@
 extern "C" {
 #endif
 
-#ifndef _di_f_type_int32s_adjust_
-  f_status_t f_type_int32s_adjust(const f_array_length_t length, f_int32s_t *int32s) {
+#ifndef _di_f_int32s_adjust_
+  f_status_t f_int32s_adjust(const f_array_length_t length, f_int32s_t *int32s) {
     #ifndef _di_level_0_parameter_checking_
       if (!int32s) return F_status_set_error(F_parameter);
     #endif // _di_level_0_parameter_checking_
 
-    return private_f_type_int32s_adjust(length, int32s);
+    return private_f_int32s_adjust(length, int32s);
   }
-#endif // _di_f_type_int32s_adjust_
+#endif // _di_f_int32s_adjust_
 
-#ifndef _di_f_type_int32s_append_
-  f_status_t f_type_int32s_append(const f_int32s_t source, f_int32s_t *destination) {
+#ifndef _di_f_int32s_append_
+  f_status_t f_int32s_append(const f_int32s_t source, f_int32s_t *destination) {
     #ifndef _di_level_0_parameter_checking_
       if (!destination) return F_status_set_error(F_parameter);
     #endif // _di_level_0_parameter_checking_
 
     if (!source.used) return F_data_not;
 
-    return private_f_type_int32s_append(source, destination);
+    return private_f_int32s_append(source, destination);
   }
-#endif // _di_f_type_int32s_append_
+#endif // _di_f_int32s_append_
 
-#ifndef _di_f_type_int32s_decimate_by_
-  f_status_t f_type_int32s_decimate_by(const f_array_length_t amount, f_int32s_t *int32s) {
+#ifndef _di_f_int32s_decimate_by_
+  f_status_t f_int32s_decimate_by(const f_array_length_t amount, f_int32s_t *int32s) {
     #ifndef _di_level_0_parameter_checking_
       if (!amount) return F_status_set_error(F_parameter);
       if (!int32s) return F_status_set_error(F_parameter);
     #endif // _di_level_0_parameter_checking_
 
     if (int32s->size - amount > 0) {
-      return private_f_type_int32s_adjust(int32s->size - amount, int32s);
+      return private_f_int32s_adjust(int32s->size - amount, int32s);
     }
 
-    return private_f_type_int32s_adjust(0, int32s);
+    return private_f_int32s_adjust(0, int32s);
   }
-#endif // _di_f_type_int32s_decimate_by_
+#endif // _di_f_int32s_decimate_by_
 
-#ifndef _di_f_type_int32s_decrease_by_
-  f_status_t f_type_int32s_decrease_by(const f_array_length_t amount, f_int32s_t *int32s) {
+#ifndef _di_f_int32s_decrease_by_
+  f_status_t f_int32s_decrease_by(const f_array_length_t amount, f_int32s_t *int32s) {
     #ifndef _di_level_0_parameter_checking_
       if (!amount) return F_status_set_error(F_parameter);
       if (!int32s) return F_status_set_error(F_parameter);
     #endif // _di_level_0_parameter_checking_
 
     if (int32s->size - amount > 0) {
-      return private_f_type_int32s_resize(int32s->size - amount, int32s);
+      return private_f_int32s_resize(int32s->size - amount, int32s);
     }
 
-    return private_f_type_int32s_resize(0, int32s);
+    return private_f_int32s_resize(0, int32s);
   }
-#endif // _di_f_type_int32s_decrease_by_
+#endif // _di_f_int32s_decrease_by_
 
-#ifndef _di_f_type_int32s_increase_
-  f_status_t f_type_int32s_increase(const uint16_t step, f_int32s_t *int32s) {
+#ifndef _di_f_int32s_increase_
+  f_status_t f_int32s_increase(const uint16_t step, f_int32s_t *int32s) {
     #ifndef _di_level_0_parameter_checking_
       if (!step) return F_status_set_error(F_parameter);
       if (!int32s) return F_status_set_error(F_parameter);
@@ -76,15 +76,15 @@ extern "C" {
         size = F_array_length_t_size_d;
       }
 
-      return private_f_type_int32s_resize(size, int32s);
+      return private_f_int32s_resize(size, int32s);
     }
 
     return F_data_not;
   }
-#endif // _di_f_type_int32s_increase_
+#endif // _di_f_int32s_increase_
 
-#ifndef _di_f_type_int32s_increase_by_
-  f_status_t f_type_int32s_increase_by(const f_array_length_t amount, f_int32s_t *int32s) {
+#ifndef _di_f_int32s_increase_by_
+  f_status_t f_int32s_increase_by(const f_array_length_t amount, f_int32s_t *int32s) {
     #ifndef _di_level_0_parameter_checking_
       if (!amount) return F_status_set_error(F_parameter);
       if (!int32s) return F_status_set_error(F_parameter);
@@ -95,35 +95,35 @@ extern "C" {
         return F_status_set_error(F_array_too_large);
       }
 
-      return private_f_type_int32s_resize(int32s->used + amount, int32s);
+      return private_f_int32s_resize(int32s->used + amount, int32s);
     }
 
     return F_data_not;
   }
-#endif // _di_f_type_int32s_increase_by_
+#endif // _di_f_int32s_increase_by_
 
-#ifndef _di_f_type_int32s_resize_
-  f_status_t f_type_int32s_resize(const f_array_length_t length, f_int32s_t *int32s) {
+#ifndef _di_f_int32s_resize_
+  f_status_t f_int32s_resize(const f_array_length_t length, f_int32s_t *int32s) {
     #ifndef _di_level_0_parameter_checking_
       if (!int32s) return F_status_set_error(F_parameter);
     #endif // _di_level_0_parameter_checking_
 
-    return private_f_type_int32s_resize(length, int32s);
+    return private_f_int32s_resize(length, int32s);
   }
-#endif // _di_f_type_int32s_resize_
+#endif // _di_f_int32s_resize_
 
-#ifndef _di_f_type_int32ss_adjust_
-  f_status_t f_type_int32ss_adjust(const f_array_length_t length, f_int32ss_t *int32ss) {
+#ifndef _di_f_int32ss_adjust_
+  f_status_t f_int32ss_adjust(const f_array_length_t length, f_int32ss_t *int32ss) {
     #ifndef _di_level_0_parameter_checking_
       if (!int32ss) return F_status_set_error(F_parameter);
     #endif // _di_level_0_parameter_checking_
 
-    return private_f_type_int32ss_adjust(length, int32ss);
+    return private_f_int32ss_adjust(length, int32ss);
   }
-#endif // _di_f_type_int32ss_adjust_
+#endif // _di_f_int32ss_adjust_
 
-#ifndef _di_f_type_int32ss_append_
-  f_status_t f_type_int32ss_append(const f_int32ss_t source, f_int32ss_t *destination) {
+#ifndef _di_f_int32ss_append_
+  f_status_t f_int32ss_append(const f_int32ss_t source, f_int32ss_t *destination) {
     #ifndef _di_level_0_parameter_checking_
       if (!destination) return F_status_set_error(F_parameter);
     #endif // _di_level_0_parameter_checking_
@@ -133,51 +133,51 @@ extern "C" {
     f_status_t status = F_none;
 
     if (destination->used + source.used > destination->size) {
-      status = private_f_type_int32ss_resize(destination->used + source.used, destination);
+      status = private_f_int32ss_resize(destination->used + source.used, destination);
       if (F_status_is_error(status)) return status;
     }
 
     for (f_array_length_t i = 0; i < source.used; ++i, ++destination->used) {
-      status = private_f_type_int32s_append(source.array[i], &destination->array[destination->used]);
+      status = private_f_int32s_append(source.array[i], &destination->array[destination->used]);
       if (F_status_is_error(status)) return status;
     } // for
 
     return F_none;
   }
-#endif // _di_f_type_int32ss_append_
+#endif // _di_f_int32ss_append_
 
-#ifndef _di_f_type_int32ss_decimate_by_
-  f_status_t f_type_int32ss_decimate_by(const f_array_length_t amount, f_int32ss_t *int32ss) {
+#ifndef _di_f_int32ss_decimate_by_
+  f_status_t f_int32ss_decimate_by(const f_array_length_t amount, f_int32ss_t *int32ss) {
     #ifndef _di_level_0_parameter_checking_
       if (!amount) return F_status_set_error(F_parameter);
       if (!int32ss) return F_status_set_error(F_parameter);
     #endif // _di_level_0_parameter_checking_
 
     if (int32ss->size - amount > 0) {
-      return private_f_type_int32ss_adjust(int32ss->size - amount, int32ss);
+      return private_f_int32ss_adjust(int32ss->size - amount, int32ss);
     }
 
-    return private_f_type_int32ss_adjust(0, int32ss);
+    return private_f_int32ss_adjust(0, int32ss);
   }
-#endif // _di_f_type_int32ss_decimate_by_
+#endif // _di_f_int32ss_decimate_by_
 
-#ifndef _di_f_type_int32ss_decrease_by_
-  f_status_t f_type_int32ss_decrease_by(const f_array_length_t amount, f_int32ss_t *int32ss) {
+#ifndef _di_f_int32ss_decrease_by_
+  f_status_t f_int32ss_decrease_by(const f_array_length_t amount, f_int32ss_t *int32ss) {
     #ifndef _di_level_0_parameter_checking_
       if (!amount) return F_status_set_error(F_parameter);
       if (!int32ss) return F_status_set_error(F_parameter);
     #endif // _di_level_0_parameter_checking_
 
     if (int32ss->size - amount > 0) {
-      return private_f_type_int32ss_resize(int32ss->size - amount, int32ss);
+      return private_f_int32ss_resize(int32ss->size - amount, int32ss);
     }
 
-    return private_f_type_int32ss_resize(0, int32ss);
+    return private_f_int32ss_resize(0, int32ss);
   }
-#endif // _di_f_type_int32ss_decrease_by_
+#endif // _di_f_int32ss_decrease_by_
 
-#ifndef _di_f_type_int32ss_increase_
-  f_status_t f_type_int32ss_increase(const uint16_t step, f_int32ss_t *int32ss) {
+#ifndef _di_f_int32ss_increase_
+  f_status_t f_int32ss_increase(const uint16_t step, f_int32ss_t *int32ss) {
     #ifndef _di_level_0_parameter_checking_
       if (!step) return F_status_set_error(F_parameter);
       if (!int32ss) return F_status_set_error(F_parameter);
@@ -194,15 +194,15 @@ extern "C" {
         size = F_array_length_t_size_d;
       }
 
-      return private_f_type_int32ss_resize(size, int32ss);
+      return private_f_int32ss_resize(size, int32ss);
     }
 
     return F_data_not;
   }
-#endif // _di_f_type_int32ss_increase_
+#endif // _di_f_int32ss_increase_
 
-#ifndef _di_f_type_int32ss_increase_by_
-  f_status_t f_type_int32ss_increase_by(const f_array_length_t amount, f_int32ss_t *int32ss) {
+#ifndef _di_f_int32ss_increase_by_
+  f_status_t f_int32ss_increase_by(const f_array_length_t amount, f_int32ss_t *int32ss) {
     #ifndef _di_level_0_parameter_checking_
       if (!amount) return F_status_set_error(F_parameter);
       if (!int32ss) return F_status_set_error(F_parameter);
@@ -213,77 +213,77 @@ extern "C" {
         return F_status_set_error(F_array_too_large);
       }
 
-      return private_f_type_int32ss_resize(int32ss->used + amount, int32ss);
+      return private_f_int32ss_resize(int32ss->used + amount, int32ss);
     }
 
     return F_data_not;
   }
-#endif // _di_f_type_int32ss_increase_by_
+#endif // _di_f_int32ss_increase_by_
 
-#ifndef _di_f_type_int32ss_resize_
-  f_status_t f_type_int32ss_resize(const f_array_length_t length, f_int32ss_t *int32ss) {
+#ifndef _di_f_int32ss_resize_
+  f_status_t f_int32ss_resize(const f_array_length_t length, f_int32ss_t *int32ss) {
     #ifndef _di_level_0_parameter_checking_
       if (!int32ss) return F_status_set_error(F_parameter);
     #endif // _di_level_0_parameter_checking_
 
-    return private_f_type_int32ss_resize(length, int32ss);
+    return private_f_int32ss_resize(length, int32ss);
   }
-#endif // _di_f_type_int32ss_resize_
+#endif // _di_f_int32ss_resize_
 
-#ifndef _di_f_type_uint32s_adjust_
-  f_status_t f_type_uint32s_adjust(const f_array_length_t length, f_uint32s_t *uint32s) {
+#ifndef _di_f_uint32s_adjust_
+  f_status_t f_uint32s_adjust(const f_array_length_t length, f_uint32s_t *uint32s) {
     #ifndef _di_level_0_parameter_checking_
       if (!uint32s) return F_status_set_error(F_parameter);
     #endif // _di_level_0_parameter_checking_
 
-    return private_f_type_uint32s_adjust(length, uint32s);
+    return private_f_uint32s_adjust(length, uint32s);
   }
-#endif // _di_f_type_uint32s_adjust_
+#endif // _di_f_uint32s_adjust_
 
-#ifndef _di_f_type_uint32s_append_
-  f_status_t f_type_uint32s_append(const f_uint32s_t source, f_uint32s_t *destination) {
+#ifndef _di_f_uint32s_append_
+  f_status_t f_uint32s_append(const f_uint32s_t source, f_uint32s_t *destination) {
     #ifndef _di_level_0_parameter_checking_
       if (!destination) return F_status_set_error(F_parameter);
     #endif // _di_level_0_parameter_checking_
 
     if (!source.used) return F_data_not;
 
-    return private_f_type_uint32s_append(source, destination);
+    return private_f_uint32s_append(source, destination);
   }
-#endif // _di_f_type_uint32s_append_
+#endif // _di_f_uint32s_append_
 
-#ifndef _di_f_type_uint32s_decimate_by_
-  f_status_t f_type_uint32s_decimate_by(const f_array_length_t amount, f_uint32s_t *uint32s) {
+#ifndef _di_f_uint32s_decimate_by_
+  f_status_t f_uint32s_decimate_by(const f_array_length_t amount, f_uint32s_t *uint32s) {
     #ifndef _di_level_0_parameter_checking_
       if (!amount) return F_status_set_error(F_parameter);
       if (!uint32s) return F_status_set_error(F_parameter);
     #endif // _di_level_0_parameter_checking_
 
     if (uint32s->size - amount > 0) {
-      return private_f_type_uint32s_adjust(uint32s->size - amount, uint32s);
+      return private_f_uint32s_adjust(uint32s->size - amount, uint32s);
     }
 
-    return private_f_type_uint32s_adjust(0, uint32s);
+    return private_f_uint32s_adjust(0, uint32s);
   }
-#endif // _di_f_type_uint32s_decimate_by_
+#endif // _di_f_uint32s_decimate_by_
 
-#ifndef _di_f_type_uint32s_decrease_by_
-  f_status_t f_type_uint32s_decrease_by(const f_array_length_t amount, f_uint32s_t *uint32s) {
+#ifndef _di_f_uint32s_decrease_by_
+  f_status_t f_uint32s_decrease_by(const f_array_length_t amount, f_uint32s_t *uint32s) {
     #ifndef _di_level_0_parameter_checking_
       if (!amount) return F_status_set_error(F_parameter);
       if (!uint32s) return F_status_set_error(F_parameter);
     #endif // _di_level_0_parameter_checking_
 
     if (uint32s->size - amount > 0) {
-      return private_f_type_uint32s_resize(uint32s->size - amount, uint32s);
+      return private_f_uint32s_resize(uint32s->size - amount, uint32s);
     }
 
-    return private_f_type_uint32s_resize(0, uint32s);
+    return private_f_uint32s_resize(0, uint32s);
   }
-#endif // _di_f_type_uint32s_decrease_by_
+#endif // _di_f_uint32s_decrease_by_
 
-#ifndef _di_f_type_uint32s_increase_
-  f_status_t f_type_uint32s_increase(const uint16_t step, f_uint32s_t *uint32s) {
+#ifndef _di_f_uint32s_increase_
+  f_status_t f_uint32s_increase(const uint16_t step, f_uint32s_t *uint32s) {
     #ifndef _di_level_0_parameter_checking_
       if (!step) return F_status_set_error(F_parameter);
       if (!uint32s) return F_status_set_error(F_parameter);
@@ -300,15 +300,15 @@ extern "C" {
         size = F_array_length_t_size_d;
       }
 
-      return private_f_type_uint32s_resize(size, uint32s);
+      return private_f_uint32s_resize(size, uint32s);
     }
 
     return F_data_not;
   }
-#endif // _di_f_type_uint32s_increase_
+#endif // _di_f_uint32s_increase_
 
-#ifndef _di_f_type_uint32s_increase_by_
-  f_status_t f_type_uint32s_increase_by(const f_array_length_t amount, f_uint32s_t *uint32s) {
+#ifndef _di_f_uint32s_increase_by_
+  f_status_t f_uint32s_increase_by(const f_array_length_t amount, f_uint32s_t *uint32s) {
     #ifndef _di_level_0_parameter_checking_
       if (!amount) return F_status_set_error(F_parameter);
       if (!uint32s) return F_status_set_error(F_parameter);
@@ -319,35 +319,35 @@ extern "C" {
         return F_status_set_error(F_array_too_large);
       }
 
-      return private_f_type_uint32s_resize(uint32s->used + amount, uint32s);
+      return private_f_uint32s_resize(uint32s->used + amount, uint32s);
     }
 
     return F_data_not;
   }
-#endif // _di_f_type_uint32s_increase_by_
+#endif // _di_f_uint32s_increase_by_
 
-#ifndef _di_f_type_uint32s_resize_
-  f_status_t f_type_uint32s_resize(const f_array_length_t length, f_uint32s_t *uint32s) {
+#ifndef _di_f_uint32s_resize_
+  f_status_t f_uint32s_resize(const f_array_length_t length, f_uint32s_t *uint32s) {
     #ifndef _di_level_0_parameter_checking_
       if (!uint32s) return F_status_set_error(F_parameter);
     #endif // _di_level_0_parameter_checking_
 
-    return private_f_type_uint32s_resize(length, uint32s);
+    return private_f_uint32s_resize(length, uint32s);
   }
-#endif // _di_f_type_uint32s_resize_
+#endif // _di_f_uint32s_resize_
 
-#ifndef _di_f_type_uint32ss_adjust_
-  f_status_t f_type_uint32ss_adjust(const f_array_length_t length, f_uint32ss_t *uint32ss) {
+#ifndef _di_f_uint32ss_adjust_
+  f_status_t f_uint32ss_adjust(const f_array_length_t length, f_uint32ss_t *uint32ss) {
     #ifndef _di_level_0_parameter_checking_
       if (!uint32ss) return F_status_set_error(F_parameter);
     #endif // _di_level_0_parameter_checking_
 
-    return private_f_type_uint32ss_adjust(length, uint32ss);
+    return private_f_uint32ss_adjust(length, uint32ss);
   }
-#endif // _di_f_type_uint32ss_adjust_
+#endif // _di_f_uint32ss_adjust_
 
-#ifndef _di_f_type_uint32ss_append_
-  f_status_t f_type_uint32ss_append(const f_uint32ss_t source, f_uint32ss_t *destination) {
+#ifndef _di_f_uint32ss_append_
+  f_status_t f_uint32ss_append(const f_uint32ss_t source, f_uint32ss_t *destination) {
     #ifndef _di_level_0_parameter_checking_
       if (!destination) return F_status_set_error(F_parameter);
     #endif // _di_level_0_parameter_checking_
@@ -357,51 +357,51 @@ extern "C" {
     f_status_t status = F_none;
 
     if (destination->used + source.used > destination->size) {
-      status = private_f_type_uint32ss_resize(destination->used + source.used, destination);
+      status = private_f_uint32ss_resize(destination->used + source.used, destination);
       if (F_status_is_error(status)) return status;
     }
 
     for (f_array_length_t i = 0; i < source.used; ++i, ++destination->used) {
-      status = private_f_type_uint32s_append(source.array[i], &destination->array[destination->used]);
+      status = private_f_uint32s_append(source.array[i], &destination->array[destination->used]);
       if (F_status_is_error(status)) return status;
     } // for
 
     return F_none;
   }
-#endif // _di_f_type_uint32ss_append_
+#endif // _di_f_uint32ss_append_
 
-#ifndef _di_f_type_uint32ss_decimate_by_
-  f_status_t f_type_uint32ss_decimate_by(const f_array_length_t amount, f_uint32ss_t *uint32ss) {
+#ifndef _di_f_uint32ss_decimate_by_
+  f_status_t f_uint32ss_decimate_by(const f_array_length_t amount, f_uint32ss_t *uint32ss) {
     #ifndef _di_level_0_parameter_checking_
       if (!amount) return F_status_set_error(F_parameter);
       if (!uint32ss) return F_status_set_error(F_parameter);
     #endif // _di_level_0_parameter_checking_
 
     if (uint32ss->size - amount > 0) {
-      return private_f_type_uint32ss_adjust(uint32ss->size - amount, uint32ss);
+      return private_f_uint32ss_adjust(uint32ss->size - amount, uint32ss);
     }
 
-    return private_f_type_uint32ss_adjust(0, uint32ss);
+    return private_f_uint32ss_adjust(0, uint32ss);
   }
-#endif // _di_f_type_uint32ss_decimate_by_
+#endif // _di_f_uint32ss_decimate_by_
 
-#ifndef _di_f_type_uint32ss_decrease_by_
-  f_status_t f_type_uint32ss_decrease_by(const f_array_length_t amount, f_uint32ss_t *uint32ss) {
+#ifndef _di_f_uint32ss_decrease_by_
+  f_status_t f_uint32ss_decrease_by(const f_array_length_t amount, f_uint32ss_t *uint32ss) {
     #ifndef _di_level_0_parameter_checking_
       if (!amount) return F_status_set_error(F_parameter);
       if (!uint32ss) return F_status_set_error(F_parameter);
     #endif // _di_level_0_parameter_checking_
 
     if (uint32ss->size - amount > 0) {
-      return private_f_type_uint32ss_resize(uint32ss->size - amount, uint32ss);
+      return private_f_uint32ss_resize(uint32ss->size - amount, uint32ss);
     }
 
-    return private_f_type_uint32ss_resize(0, uint32ss);
+    return private_f_uint32ss_resize(0, uint32ss);
   }
-#endif // _di_f_type_uint32ss_decrease_by_
+#endif // _di_f_uint32ss_decrease_by_
 
-#ifndef _di_f_type_uint32ss_increase_
-  f_status_t f_type_uint32ss_increase(const uint16_t step, f_uint32ss_t *uint32ss) {
+#ifndef _di_f_uint32ss_increase_
+  f_status_t f_uint32ss_increase(const uint16_t step, f_uint32ss_t *uint32ss) {
     #ifndef _di_level_0_parameter_checking_
       if (!step) return F_status_set_error(F_parameter);
       if (!uint32ss) return F_status_set_error(F_parameter);
@@ -418,15 +418,15 @@ extern "C" {
         size = F_array_length_t_size_d;
       }
 
-      return private_f_type_uint32ss_resize(size, uint32ss);
+      return private_f_uint32ss_resize(size, uint32ss);
     }
 
     return F_data_not;
   }
-#endif // _di_f_type_uint32ss_increase_
+#endif // _di_f_uint32ss_increase_
 
-#ifndef _di_f_type_uint32ss_increase_by_
-  f_status_t f_type_uint32ss_increase_by(const f_array_length_t amount, f_uint32ss_t *uint32ss) {
+#ifndef _di_f_uint32ss_increase_by_
+  f_status_t f_uint32ss_increase_by(const f_array_length_t amount, f_uint32ss_t *uint32ss) {
     #ifndef _di_level_0_parameter_checking_
       if (!amount) return F_status_set_error(F_parameter);
       if (!uint32ss) return F_status_set_error(F_parameter);
@@ -437,22 +437,22 @@ extern "C" {
         return F_status_set_error(F_array_too_large);
       }
 
-      return private_f_type_uint32ss_resize(uint32ss->used + amount, uint32ss);
+      return private_f_uint32ss_resize(uint32ss->used + amount, uint32ss);
     }
 
     return F_data_not;
   }
-#endif // _di_f_type_uint32ss_increase_by_
+#endif // _di_f_uint32ss_increase_by_
 
-#ifndef _di_f_type_uint32ss_resize_
-  f_status_t f_type_uint32ss_resize(const f_array_length_t length, f_uint32ss_t *uint32ss) {
+#ifndef _di_f_uint32ss_resize_
+  f_status_t f_uint32ss_resize(const f_array_length_t length, f_uint32ss_t *uint32ss) {
     #ifndef _di_level_0_parameter_checking_
       if (!uint32ss) return F_status_set_error(F_parameter);
     #endif // _di_level_0_parameter_checking_
 
-    return private_f_type_uint32ss_resize(length, uint32ss);
+    return private_f_uint32ss_resize(length, uint32ss);
   }
-#endif // _di_f_type_uint32ss_resize_
+#endif // _di_f_uint32ss_resize_
 
 #ifdef __cplusplus
 } // extern "C"
index 10a07625d6e12e7408be8dd2e7a029b4ef895d77..5e1fe91269e1c1b797d9e17f0fa28ec163dd42d4 100644 (file)
@@ -31,9 +31,9 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_adjust().
  */
-#ifndef _di_f_type_int32s_adjust_
-  extern f_status_t f_type_int32s_adjust(const f_array_length_t length, f_int32s_t *int32s);
-#endif // _di_f_type_int32s_adjust_
+#ifndef _di_f_int32s_adjust_
+  extern f_status_t f_int32s_adjust(const f_array_length_t length, f_int32s_t *int32s);
+#endif // _di_f_int32s_adjust_
 
 /**
  * Append the source int32s onto the destination.
@@ -51,9 +51,9 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  */
-#ifndef _di_f_type_int32s_append_
-  extern f_status_t f_type_int32s_append(const f_int32s_t source, f_int32s_t *destination);
-#endif // _di_f_type_int32s_append_
+#ifndef _di_f_int32s_append_
+  extern f_status_t f_int32s_append(const f_int32s_t source, f_int32s_t *destination);
+#endif // _di_f_int32s_append_
 
 /**
  * Resize the int32s array to a smaller size.
@@ -74,9 +74,9 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_adjust().
  */
-#ifndef _di_f_type_int32s_decimate_by_
-  extern f_status_t f_type_int32s_decimate_by(const f_array_length_t amount, f_int32s_t *int32s);
-#endif // _di_f_type_int32s_decimate_by_
+#ifndef _di_f_int32s_decimate_by_
+  extern f_status_t f_int32s_decimate_by(const f_array_length_t amount, f_int32s_t *int32s);
+#endif // _di_f_int32s_decimate_by_
 
 /**
  * Resize the int32s array to a smaller size.
@@ -97,9 +97,9 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  */
-#ifndef _di_f_type_int32s_decrease_by_
-  extern f_status_t f_type_int32s_decrease_by(const f_array_length_t amount, f_int32s_t *int32s);
-#endif // _di_f_type_int32s_decrease_by_
+#ifndef _di_f_int32s_decrease_by_
+  extern f_status_t f_int32s_decrease_by(const f_array_length_t amount, f_int32s_t *int32s);
+#endif // _di_f_int32s_decrease_by_
 
 /**
  * Increase the size of the int32s array, but only if necesary.
@@ -122,9 +122,9 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  */
-#ifndef _di_f_type_int32s_increase_
-  extern f_status_t f_type_int32s_increase(const uint16_t step, f_int32s_t *int32s);
-#endif // _di_f_type_int32s_increase_
+#ifndef _di_f_int32s_increase_
+  extern f_status_t f_int32s_increase(const uint16_t step, f_int32s_t *int32s);
+#endif // _di_f_int32s_increase_
 
 /**
  * Resize the int32s array to a larger size.
@@ -147,9 +147,9 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  */
-#ifndef _di_f_type_int32s_increase_by_
-  extern f_status_t f_type_int32s_increase_by(const f_array_length_t amount, f_int32s_t *int32s);
-#endif // _di_f_type_int32s_increase_by_
+#ifndef _di_f_int32s_increase_by_
+  extern f_status_t f_int32s_increase_by(const f_array_length_t amount, f_int32s_t *int32s);
+#endif // _di_f_int32s_increase_by_
 
 /**
  * Resize the int32s array.
@@ -166,9 +166,9 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  */
-#ifndef _di_f_type_int32s_resize_
-  extern f_status_t f_type_int32s_resize(const f_array_length_t length, f_int32s_t *int32s);
-#endif // _di_f_type_int32s_resize_
+#ifndef _di_f_int32s_resize_
+  extern f_status_t f_int32s_resize(const f_array_length_t length, f_int32s_t *int32s);
+#endif // _di_f_int32s_resize_
 
 /**
  * Resize the int32ss array.
@@ -186,9 +186,9 @@ extern "C" {
  *   Errors (with error bit) from: f_memory_adjust().
  *   Errors (with error bit) from: f_memory_destroy().
  */
-#ifndef _di_f_type_int32ss_adjust_
-  extern f_status_t f_type_int32ss_adjust(const f_array_length_t length, f_int32ss_t *int32ss);
-#endif // _di_f_type_int32ss_adjust_
+#ifndef _di_f_int32ss_adjust_
+  extern f_status_t f_int32ss_adjust(const f_array_length_t length, f_int32ss_t *int32ss);
+#endif // _di_f_int32ss_adjust_
 
 /**
  * Append the source int32ss onto the destination.
@@ -206,9 +206,9 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  */
-#ifndef _di_f_type_int32ss_append_
-  extern f_status_t f_type_int32ss_append(const f_int32ss_t source, f_int32ss_t *destination);
-#endif // _di_f_type_int32ss_append_
+#ifndef _di_f_int32ss_append_
+  extern f_status_t f_int32ss_append(const f_int32ss_t source, f_int32ss_t *destination);
+#endif // _di_f_int32ss_append_
 
 /**
  * Resize the int32ss array.
@@ -226,9 +226,9 @@ extern "C" {
  *   Errors (with error bit) from: f_memory_adjust().
  *   Errors (with error bit) from: f_memory_destroy().
  */
-#ifndef _di_f_type_int32ss_adjust_
-  extern f_status_t f_type_int32ss_adjust(const f_array_length_t length, f_int32ss_t *int32ss);
-#endif // _di_f_type_int32ss_adjust_
+#ifndef _di_f_int32ss_adjust_
+  extern f_status_t f_int32ss_adjust(const f_array_length_t length, f_int32ss_t *int32ss);
+#endif // _di_f_int32ss_adjust_
 
 /**
  * Resize the int32ss array to a smaller size.
@@ -250,9 +250,9 @@ extern "C" {
  *   Errors (with error bit) from: f_memory_adjust().
  *   Errors (with error bit) from: f_memory_destroy().
  */
-#ifndef _di_f_type_int32ss_decimate_by_
-  extern f_status_t f_type_int32ss_decimate_by(const f_array_length_t amount, f_int32ss_t *int32ss);
-#endif // _di_f_type_int32ss_decimate_by_
+#ifndef _di_f_int32ss_decimate_by_
+  extern f_status_t f_int32ss_decimate_by(const f_array_length_t amount, f_int32ss_t *int32ss);
+#endif // _di_f_int32ss_decimate_by_
 
 /**
  * Resize the int32ss array to a smaller size.
@@ -274,9 +274,9 @@ extern "C" {
  *   Errors (with error bit) from: f_memory_delete().
  *   Errors (with error bit) from: f_memory_resize().
  */
-#ifndef _di_f_type_int32ss_decrease_by_
-  extern f_status_t f_type_int32ss_decrease_by(const f_array_length_t amount, f_int32ss_t *int32ss);
-#endif // _di_f_type_int32ss_decrease_by_
+#ifndef _di_f_int32ss_decrease_by_
+  extern f_status_t f_int32ss_decrease_by(const f_array_length_t amount, f_int32ss_t *int32ss);
+#endif // _di_f_int32ss_decrease_by_
 
 /**
  * Increase the size of the int32ss array, but only if necessary.
@@ -299,9 +299,9 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  */
-#ifndef _di_f_type_int32ss_increase_
-  extern f_status_t f_type_int32ss_increase(const uint16_t step, f_int32ss_t *int32ss);
-#endif // _di_f_type_int32ss_increase_
+#ifndef _di_f_int32ss_increase_
+  extern f_status_t f_int32ss_increase(const uint16_t step, f_int32ss_t *int32ss);
+#endif // _di_f_int32ss_increase_
 
 /**
  * Resize the int32ss array to a larger size.
@@ -324,9 +324,9 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  */
-#ifndef _di_f_type_int32ss_increase_by_
-  extern f_status_t f_type_int32ss_increase_by(const f_array_length_t amount, f_int32ss_t *int32ss);
-#endif // _di_f_type_int32ss_increase_by_
+#ifndef _di_f_int32ss_increase_by_
+  extern f_status_t f_int32ss_increase_by(const f_array_length_t amount, f_int32ss_t *int32ss);
+#endif // _di_f_int32ss_increase_by_
 
 /**
  * Resize the int32ss array.
@@ -344,9 +344,9 @@ extern "C" {
  *   Errors (with error bit) from: f_memory_delete().
  *   Errors (with error bit) from: f_memory_resize().
  */
-#ifndef _di_f_type_int32ss_resize_
-  extern f_status_t f_type_int32ss_resize(const f_array_length_t length, f_int32ss_t *int32ss);
-#endif // _di_f_type_int32ss_resize_
+#ifndef _di_f_int32ss_resize_
+  extern f_status_t f_int32ss_resize(const f_array_length_t length, f_int32ss_t *int32ss);
+#endif // _di_f_int32ss_resize_
 
 /**
  * Resize the string uint32s array.
@@ -363,9 +363,9 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_adjust().
  */
-#ifndef _di_f_type_uint32s_adjust_
-  extern f_status_t f_type_uint32s_adjust(const f_array_length_t length, f_uint32s_t *uint32s);
-#endif // _di_f_type_uint32s_adjust_
+#ifndef _di_f_uint32s_adjust_
+  extern f_status_t f_uint32s_adjust(const f_array_length_t length, f_uint32s_t *uint32s);
+#endif // _di_f_uint32s_adjust_
 
 /**
  * Append the source uint32s onto the destination.
@@ -383,9 +383,9 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  */
-#ifndef _di_f_type_uint32s_append_
-  extern f_status_t f_type_uint32s_append(const f_uint32s_t source, f_uint32s_t *destination);
-#endif // _di_f_type_uint32s_append_
+#ifndef _di_f_uint32s_append_
+  extern f_status_t f_uint32s_append(const f_uint32s_t source, f_uint32s_t *destination);
+#endif // _di_f_uint32s_append_
 
 /**
  * Resize the string uint32s array to a smaller size.
@@ -406,9 +406,9 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_adjust().
  */
-#ifndef _di_f_type_uint32s_decimate_by_
-  extern f_status_t f_type_uint32s_decimate_by(const f_array_length_t amount, f_uint32s_t *uint32s);
-#endif // _di_f_type_uint32s_decimate_by_
+#ifndef _di_f_uint32s_decimate_by_
+  extern f_status_t f_uint32s_decimate_by(const f_array_length_t amount, f_uint32s_t *uint32s);
+#endif // _di_f_uint32s_decimate_by_
 
 /**
  * Resize the string uint32s array to a smaller size.
@@ -429,9 +429,9 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  */
-#ifndef _di_f_type_uint32s_decrease_by_
-  extern f_status_t f_type_uint32s_decrease_by(const f_array_length_t amount, f_uint32s_t *uint32s);
-#endif // _di_f_type_uint32s_decrease_by_
+#ifndef _di_f_uint32s_decrease_by_
+  extern f_status_t f_uint32s_decrease_by(const f_array_length_t amount, f_uint32s_t *uint32s);
+#endif // _di_f_uint32s_decrease_by_
 
 /**
  * Increase the size of the string uint32s array, but only if necesary.
@@ -454,9 +454,9 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  */
-#ifndef _di_f_type_uint32s_increase_
-  extern f_status_t f_type_uint32s_increase(const uint16_t step, f_uint32s_t *uint32s);
-#endif // _di_f_type_uint32s_increase_
+#ifndef _di_f_uint32s_increase_
+  extern f_status_t f_uint32s_increase(const uint16_t step, f_uint32s_t *uint32s);
+#endif // _di_f_uint32s_increase_
 
 /**
  * Resize the string uint32s array to a larger size.
@@ -479,9 +479,9 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  */
-#ifndef _di_f_type_uint32s_increase_by_
-  extern f_status_t f_type_uint32s_increase_by(const f_array_length_t amount, f_uint32s_t *uint32s);
-#endif // _di_f_type_uint32s_increase_by_
+#ifndef _di_f_uint32s_increase_by_
+  extern f_status_t f_uint32s_increase_by(const f_array_length_t amount, f_uint32s_t *uint32s);
+#endif // _di_f_uint32s_increase_by_
 
 /**
  * Resize the string uint32s array.
@@ -498,9 +498,9 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  */
-#ifndef _di_f_type_uint32s_resize_
-  extern f_status_t f_type_uint32s_resize(const f_array_length_t length, f_uint32s_t *uint32s);
-#endif // _di_f_type_uint32s_resize_
+#ifndef _di_f_uint32s_resize_
+  extern f_status_t f_uint32s_resize(const f_array_length_t length, f_uint32s_t *uint32s);
+#endif // _di_f_uint32s_resize_
 
 /**
  * Resize the string uint32ss array.
@@ -518,9 +518,9 @@ extern "C" {
  *   Errors (with error bit) from: f_memory_adjust().
  *   Errors (with error bit) from: f_memory_destroy().
  */
-#ifndef _di_f_type_uint32ss_adjust_
-  extern f_status_t f_type_uint32ss_adjust(const f_array_length_t length, f_uint32ss_t *uint32ss);
-#endif // _di_f_type_uint32ss_adjust_
+#ifndef _di_f_uint32ss_adjust_
+  extern f_status_t f_uint32ss_adjust(const f_array_length_t length, f_uint32ss_t *uint32ss);
+#endif // _di_f_uint32ss_adjust_
 
 /**
  * Append the source uint32ss onto the destination.
@@ -538,9 +538,9 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  */
-#ifndef _di_f_type_uint32ss_append_
-  extern f_status_t f_type_uint32ss_append(const f_uint32ss_t source, f_uint32ss_t *destination);
-#endif // _di_f_type_uint32ss_append_
+#ifndef _di_f_uint32ss_append_
+  extern f_status_t f_uint32ss_append(const f_uint32ss_t source, f_uint32ss_t *destination);
+#endif // _di_f_uint32ss_append_
 
 /**
  * Resize the string uint32ss array.
@@ -558,9 +558,9 @@ extern "C" {
  *   Errors (with error bit) from: f_memory_adjust().
  *   Errors (with error bit) from: f_memory_destroy().
  */
-#ifndef _di_f_type_uint32ss_adjust_
-  extern f_status_t f_type_uint32ss_adjust(const f_array_length_t length, f_uint32ss_t *uint32ss);
-#endif // _di_f_type_uint32ss_adjust_
+#ifndef _di_f_uint32ss_adjust_
+  extern f_status_t f_uint32ss_adjust(const f_array_length_t length, f_uint32ss_t *uint32ss);
+#endif // _di_f_uint32ss_adjust_
 
 /**
  * Resize the string uint32ss array to a smaller size.
@@ -582,9 +582,9 @@ extern "C" {
  *   Errors (with error bit) from: f_memory_adjust().
  *   Errors (with error bit) from: f_memory_destroy().
  */
-#ifndef _di_f_type_uint32ss_decimate_by_
-  extern f_status_t f_type_uint32ss_decimate_by(const f_array_length_t amount, f_uint32ss_t *uint32ss);
-#endif // _di_f_type_uint32ss_decimate_by_
+#ifndef _di_f_uint32ss_decimate_by_
+  extern f_status_t f_uint32ss_decimate_by(const f_array_length_t amount, f_uint32ss_t *uint32ss);
+#endif // _di_f_uint32ss_decimate_by_
 
 /**
  * Resize the string uint32ss array to a smaller size.
@@ -606,9 +606,9 @@ extern "C" {
  *   Errors (with error bit) from: f_memory_delete().
  *   Errors (with error bit) from: f_memory_resize().
  */
-#ifndef _di_f_type_uint32ss_decrease_by_
-  extern f_status_t f_type_uint32ss_decrease_by(const f_array_length_t amount, f_uint32ss_t *uint32ss);
-#endif // _di_f_type_uint32ss_decrease_by_
+#ifndef _di_f_uint32ss_decrease_by_
+  extern f_status_t f_uint32ss_decrease_by(const f_array_length_t amount, f_uint32ss_t *uint32ss);
+#endif // _di_f_uint32ss_decrease_by_
 
 /**
  * Increase the size of the string uint32ss array, but only if necessary.
@@ -631,9 +631,9 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  */
-#ifndef _di_f_type_uint32ss_increase_
-  extern f_status_t f_type_uint32ss_increase(const uint16_t step, f_uint32ss_t *uint32ss);
-#endif // _di_f_type_uint32ss_increase_
+#ifndef _di_f_uint32ss_increase_
+  extern f_status_t f_uint32ss_increase(const uint16_t step, f_uint32ss_t *uint32ss);
+#endif // _di_f_uint32ss_increase_
 
 /**
  * Resize the string uint32ss array to a larger size.
@@ -656,9 +656,9 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  */
-#ifndef _di_f_type_uint32ss_increase_by_
-  extern f_status_t f_type_uint32ss_increase_by(const f_array_length_t amount, f_uint32ss_t *uint32ss);
-#endif // _di_f_type_uint32ss_increase_by_
+#ifndef _di_f_uint32ss_increase_by_
+  extern f_status_t f_uint32ss_increase_by(const f_array_length_t amount, f_uint32ss_t *uint32ss);
+#endif // _di_f_uint32ss_increase_by_
 
 /**
  * Resize the string uint32ss array.
@@ -676,9 +676,9 @@ extern "C" {
  *   Errors (with error bit) from: f_memory_delete().
  *   Errors (with error bit) from: f_memory_resize().
  */
-#ifndef _di_f_type_uint32ss_resize_
-  extern f_status_t f_type_uint32ss_resize(const f_array_length_t length, f_uint32ss_t *uint32ss);
-#endif // _di_f_type_uint32ss_resize_
+#ifndef _di_f_uint32ss_resize_
+  extern f_status_t f_uint32ss_resize(const f_array_length_t length, f_uint32ss_t *uint32ss);
+#endif // _di_f_uint32ss_resize_
 
 #ifdef __cplusplus
 } // extern "C"
index 2572b19dae125f6634beb8b60ecc225c6c5f674e..a5bab9d09441192a87161b5ba0f7e422b1bfbf36 100644 (file)
@@ -6,60 +6,60 @@
 extern "C" {
 #endif
 
-#ifndef _di_f_type_int64s_adjust_
-  f_status_t f_type_int64s_adjust(const f_array_length_t length, f_int64s_t *int64s) {
+#ifndef _di_f_int64s_adjust_
+  f_status_t f_int64s_adjust(const f_array_length_t length, f_int64s_t *int64s) {
     #ifndef _di_level_0_parameter_checking_
       if (!int64s) return F_status_set_error(F_parameter);
     #endif // _di_level_0_parameter_checking_
 
-    return private_f_type_int64s_adjust(length, int64s);
+    return private_f_int64s_adjust(length, int64s);
   }
-#endif // _di_f_type_int64s_adjust_
+#endif // _di_f_int64s_adjust_
 
-#ifndef _di_f_type_int64s_append_
-  f_status_t f_type_int64s_append(const f_int64s_t source, f_int64s_t *destination) {
+#ifndef _di_f_int64s_append_
+  f_status_t f_int64s_append(const f_int64s_t source, f_int64s_t *destination) {
     #ifndef _di_level_0_parameter_checking_
       if (!destination) return F_status_set_error(F_parameter);
     #endif // _di_level_0_parameter_checking_
 
     if (!source.used) return F_data_not;
 
-    return private_f_type_int64s_append(source, destination);
+    return private_f_int64s_append(source, destination);
   }
-#endif // _di_f_type_int64s_append_
+#endif // _di_f_int64s_append_
 
-#ifndef _di_f_type_int64s_decimate_by_
-  f_status_t f_type_int64s_decimate_by(const f_array_length_t amount, f_int64s_t *int64s) {
+#ifndef _di_f_int64s_decimate_by_
+  f_status_t f_int64s_decimate_by(const f_array_length_t amount, f_int64s_t *int64s) {
     #ifndef _di_level_0_parameter_checking_
       if (!amount) return F_status_set_error(F_parameter);
       if (!int64s) return F_status_set_error(F_parameter);
     #endif // _di_level_0_parameter_checking_
 
     if (int64s->size - amount > 0) {
-      return private_f_type_int64s_adjust(int64s->size - amount, int64s);
+      return private_f_int64s_adjust(int64s->size - amount, int64s);
     }
 
-    return private_f_type_int64s_adjust(0, int64s);
+    return private_f_int64s_adjust(0, int64s);
   }
-#endif // _di_f_type_int64s_decimate_by_
+#endif // _di_f_int64s_decimate_by_
 
-#ifndef _di_f_type_int64s_decrease_by_
-  f_status_t f_type_int64s_decrease_by(const f_array_length_t amount, f_int64s_t *int64s) {
+#ifndef _di_f_int64s_decrease_by_
+  f_status_t f_int64s_decrease_by(const f_array_length_t amount, f_int64s_t *int64s) {
     #ifndef _di_level_0_parameter_checking_
       if (!amount) return F_status_set_error(F_parameter);
       if (!int64s) return F_status_set_error(F_parameter);
     #endif // _di_level_0_parameter_checking_
 
     if (int64s->size - amount > 0) {
-      return private_f_type_int64s_resize(int64s->size - amount, int64s);
+      return private_f_int64s_resize(int64s->size - amount, int64s);
     }
 
-    return private_f_type_int64s_resize(0, int64s);
+    return private_f_int64s_resize(0, int64s);
   }
-#endif // _di_f_type_int64s_decrease_by_
+#endif // _di_f_int64s_decrease_by_
 
-#ifndef _di_f_type_int64s_increase_
-  f_status_t f_type_int64s_increase(const uint16_t step, f_int64s_t *int64s) {
+#ifndef _di_f_int64s_increase_
+  f_status_t f_int64s_increase(const uint16_t step, f_int64s_t *int64s) {
     #ifndef _di_level_0_parameter_checking_
       if (!step) return F_status_set_error(F_parameter);
       if (!int64s) return F_status_set_error(F_parameter);
@@ -76,15 +76,15 @@ extern "C" {
         size = F_array_length_t_size_d;
       }
 
-      return private_f_type_int64s_resize(size, int64s);
+      return private_f_int64s_resize(size, int64s);
     }
 
     return F_data_not;
   }
-#endif // _di_f_type_int64s_increase_
+#endif // _di_f_int64s_increase_
 
-#ifndef _di_f_type_int64s_increase_by_
-  f_status_t f_type_int64s_increase_by(const f_array_length_t amount, f_int64s_t *int64s) {
+#ifndef _di_f_int64s_increase_by_
+  f_status_t f_int64s_increase_by(const f_array_length_t amount, f_int64s_t *int64s) {
     #ifndef _di_level_0_parameter_checking_
       if (!amount) return F_status_set_error(F_parameter);
       if (!int64s) return F_status_set_error(F_parameter);
@@ -95,35 +95,35 @@ extern "C" {
         return F_status_set_error(F_array_too_large);
       }
 
-      return private_f_type_int64s_resize(int64s->used + amount, int64s);
+      return private_f_int64s_resize(int64s->used + amount, int64s);
     }
 
     return F_data_not;
   }
-#endif // _di_f_type_int64s_increase_by_
+#endif // _di_f_int64s_increase_by_
 
-#ifndef _di_f_type_int64s_resize_
-  f_status_t f_type_int64s_resize(const f_array_length_t length, f_int64s_t *int64s) {
+#ifndef _di_f_int64s_resize_
+  f_status_t f_int64s_resize(const f_array_length_t length, f_int64s_t *int64s) {
     #ifndef _di_level_0_parameter_checking_
       if (!int64s) return F_status_set_error(F_parameter);
     #endif // _di_level_0_parameter_checking_
 
-    return private_f_type_int64s_resize(length, int64s);
+    return private_f_int64s_resize(length, int64s);
   }
-#endif // _di_f_type_int64s_resize_
+#endif // _di_f_int64s_resize_
 
-#ifndef _di_f_type_int64ss_adjust_
-  f_status_t f_type_int64ss_adjust(const f_array_length_t length, f_int64ss_t *int64ss) {
+#ifndef _di_f_int64ss_adjust_
+  f_status_t f_int64ss_adjust(const f_array_length_t length, f_int64ss_t *int64ss) {
     #ifndef _di_level_0_parameter_checking_
       if (!int64ss) return F_status_set_error(F_parameter);
     #endif // _di_level_0_parameter_checking_
 
-    return private_f_type_int64ss_adjust(length, int64ss);
+    return private_f_int64ss_adjust(length, int64ss);
   }
-#endif // _di_f_type_int64ss_adjust_
+#endif // _di_f_int64ss_adjust_
 
-#ifndef _di_f_type_int64ss_append_
-  f_status_t f_type_int64ss_append(const f_int64ss_t source, f_int64ss_t *destination) {
+#ifndef _di_f_int64ss_append_
+  f_status_t f_int64ss_append(const f_int64ss_t source, f_int64ss_t *destination) {
     #ifndef _di_level_0_parameter_checking_
       if (!destination) return F_status_set_error(F_parameter);
     #endif // _di_level_0_parameter_checking_
@@ -133,51 +133,51 @@ extern "C" {
     f_status_t status = F_none;
 
     if (destination->used + source.used > destination->size) {
-      status = private_f_type_int64ss_resize(destination->used + source.used, destination);
+      status = private_f_int64ss_resize(destination->used + source.used, destination);
       if (F_status_is_error(status)) return status;
     }
 
     for (f_array_length_t i = 0; i < source.used; ++i, ++destination->used) {
-      status = private_f_type_int64s_append(source.array[i], &destination->array[destination->used]);
+      status = private_f_int64s_append(source.array[i], &destination->array[destination->used]);
       if (F_status_is_error(status)) return status;
     } // for
 
     return F_none;
   }
-#endif // _di_f_type_int64ss_append_
+#endif // _di_f_int64ss_append_
 
-#ifndef _di_f_type_int64ss_decimate_by_
-  f_status_t f_type_int64ss_decimate_by(const f_array_length_t amount, f_int64ss_t *int64ss) {
+#ifndef _di_f_int64ss_decimate_by_
+  f_status_t f_int64ss_decimate_by(const f_array_length_t amount, f_int64ss_t *int64ss) {
     #ifndef _di_level_0_parameter_checking_
       if (!amount) return F_status_set_error(F_parameter);
       if (!int64ss) return F_status_set_error(F_parameter);
     #endif // _di_level_0_parameter_checking_
 
     if (int64ss->size - amount > 0) {
-      return private_f_type_int64ss_adjust(int64ss->size - amount, int64ss);
+      return private_f_int64ss_adjust(int64ss->size - amount, int64ss);
     }
 
-    return private_f_type_int64ss_adjust(0, int64ss);
+    return private_f_int64ss_adjust(0, int64ss);
   }
-#endif // _di_f_type_int64ss_decimate_by_
+#endif // _di_f_int64ss_decimate_by_
 
-#ifndef _di_f_type_int64ss_decrease_by_
-  f_status_t f_type_int64ss_decrease_by(const f_array_length_t amount, f_int64ss_t *int64ss) {
+#ifndef _di_f_int64ss_decrease_by_
+  f_status_t f_int64ss_decrease_by(const f_array_length_t amount, f_int64ss_t *int64ss) {
     #ifndef _di_level_0_parameter_checking_
       if (!amount) return F_status_set_error(F_parameter);
       if (!int64ss) return F_status_set_error(F_parameter);
     #endif // _di_level_0_parameter_checking_
 
     if (int64ss->size - amount > 0) {
-      return private_f_type_int64ss_resize(int64ss->size - amount, int64ss);
+      return private_f_int64ss_resize(int64ss->size - amount, int64ss);
     }
 
-    return private_f_type_int64ss_resize(0, int64ss);
+    return private_f_int64ss_resize(0, int64ss);
   }
-#endif // _di_f_type_int64ss_decrease_by_
+#endif // _di_f_int64ss_decrease_by_
 
-#ifndef _di_f_type_int64ss_increase_
-  f_status_t f_type_int64ss_increase(const uint16_t step, f_int64ss_t *int64ss) {
+#ifndef _di_f_int64ss_increase_
+  f_status_t f_int64ss_increase(const uint16_t step, f_int64ss_t *int64ss) {
     #ifndef _di_level_0_parameter_checking_
       if (!step) return F_status_set_error(F_parameter);
       if (!int64ss) return F_status_set_error(F_parameter);
@@ -194,15 +194,15 @@ extern "C" {
         size = F_array_length_t_size_d;
       }
 
-      return private_f_type_int64ss_resize(size, int64ss);
+      return private_f_int64ss_resize(size, int64ss);
     }
 
     return F_data_not;
   }
-#endif // _di_f_type_int64ss_increase_
+#endif // _di_f_int64ss_increase_
 
-#ifndef _di_f_type_int64ss_increase_by_
-  f_status_t f_type_int64ss_increase_by(const f_array_length_t amount, f_int64ss_t *int64ss) {
+#ifndef _di_f_int64ss_increase_by_
+  f_status_t f_int64ss_increase_by(const f_array_length_t amount, f_int64ss_t *int64ss) {
     #ifndef _di_level_0_parameter_checking_
       if (!amount) return F_status_set_error(F_parameter);
       if (!int64ss) return F_status_set_error(F_parameter);
@@ -213,77 +213,77 @@ extern "C" {
         return F_status_set_error(F_array_too_large);
       }
 
-      return private_f_type_int64ss_resize(int64ss->used + amount, int64ss);
+      return private_f_int64ss_resize(int64ss->used + amount, int64ss);
     }
 
     return F_data_not;
   }
-#endif // _di_f_type_int64ss_increase_by_
+#endif // _di_f_int64ss_increase_by_
 
-#ifndef _di_f_type_int64ss_resize_
-  f_status_t f_type_int64ss_resize(const f_array_length_t length, f_int64ss_t *int64ss) {
+#ifndef _di_f_int64ss_resize_
+  f_status_t f_int64ss_resize(const f_array_length_t length, f_int64ss_t *int64ss) {
     #ifndef _di_level_0_parameter_checking_
       if (!int64ss) return F_status_set_error(F_parameter);
     #endif // _di_level_0_parameter_checking_
 
-    return private_f_type_int64ss_resize(length, int64ss);
+    return private_f_int64ss_resize(length, int64ss);
   }
-#endif // _di_f_type_int64ss_resize_
+#endif // _di_f_int64ss_resize_
 
-#ifndef _di_f_type_uint64s_adjust_
-  f_status_t f_type_uint64s_adjust(const f_array_length_t length, f_uint64s_t *uint64s) {
+#ifndef _di_f_uint64s_adjust_
+  f_status_t f_uint64s_adjust(const f_array_length_t length, f_uint64s_t *uint64s) {
     #ifndef _di_level_0_parameter_checking_
       if (!uint64s) return F_status_set_error(F_parameter);
     #endif // _di_level_0_parameter_checking_
 
-    return private_f_type_uint64s_adjust(length, uint64s);
+    return private_f_uint64s_adjust(length, uint64s);
   }
-#endif // _di_f_type_uint64s_adjust_
+#endif // _di_f_uint64s_adjust_
 
-#ifndef _di_f_type_uint64s_append_
-  f_status_t f_type_uint64s_append(const f_uint64s_t source, f_uint64s_t *destination) {
+#ifndef _di_f_uint64s_append_
+  f_status_t f_uint64s_append(const f_uint64s_t source, f_uint64s_t *destination) {
     #ifndef _di_level_0_parameter_checking_
       if (!destination) return F_status_set_error(F_parameter);
     #endif // _di_level_0_parameter_checking_
 
     if (!source.used) return F_data_not;
 
-    return private_f_type_uint64s_append(source, destination);
+    return private_f_uint64s_append(source, destination);
   }
-#endif // _di_f_type_uint64s_append_
+#endif // _di_f_uint64s_append_
 
-#ifndef _di_f_type_uint64s_decimate_by_
-  f_status_t f_type_uint64s_decimate_by(const f_array_length_t amount, f_uint64s_t *uint64s) {
+#ifndef _di_f_uint64s_decimate_by_
+  f_status_t f_uint64s_decimate_by(const f_array_length_t amount, f_uint64s_t *uint64s) {
     #ifndef _di_level_0_parameter_checking_
       if (!amount) return F_status_set_error(F_parameter);
       if (!uint64s) return F_status_set_error(F_parameter);
     #endif // _di_level_0_parameter_checking_
 
     if (uint64s->size - amount > 0) {
-      return private_f_type_uint64s_adjust(uint64s->size - amount, uint64s);
+      return private_f_uint64s_adjust(uint64s->size - amount, uint64s);
     }
 
-    return private_f_type_uint64s_adjust(0, uint64s);
+    return private_f_uint64s_adjust(0, uint64s);
   }
-#endif // _di_f_type_uint64s_decimate_by_
+#endif // _di_f_uint64s_decimate_by_
 
-#ifndef _di_f_type_uint64s_decrease_by_
-  f_status_t f_type_uint64s_decrease_by(const f_array_length_t amount, f_uint64s_t *uint64s) {
+#ifndef _di_f_uint64s_decrease_by_
+  f_status_t f_uint64s_decrease_by(const f_array_length_t amount, f_uint64s_t *uint64s) {
     #ifndef _di_level_0_parameter_checking_
       if (!amount) return F_status_set_error(F_parameter);
       if (!uint64s) return F_status_set_error(F_parameter);
     #endif // _di_level_0_parameter_checking_
 
     if (uint64s->size - amount > 0) {
-      return private_f_type_uint64s_resize(uint64s->size - amount, uint64s);
+      return private_f_uint64s_resize(uint64s->size - amount, uint64s);
     }
 
-    return private_f_type_uint64s_resize(0, uint64s);
+    return private_f_uint64s_resize(0, uint64s);
   }
-#endif // _di_f_type_uint64s_decrease_by_
+#endif // _di_f_uint64s_decrease_by_
 
-#ifndef _di_f_type_uint64s_increase_
-  f_status_t f_type_uint64s_increase(const uint16_t step, f_uint64s_t *uint64s) {
+#ifndef _di_f_uint64s_increase_
+  f_status_t f_uint64s_increase(const uint16_t step, f_uint64s_t *uint64s) {
     #ifndef _di_level_0_parameter_checking_
       if (!step) return F_status_set_error(F_parameter);
       if (!uint64s) return F_status_set_error(F_parameter);
@@ -300,15 +300,15 @@ extern "C" {
         size = F_array_length_t_size_d;
       }
 
-      return private_f_type_uint64s_resize(size, uint64s);
+      return private_f_uint64s_resize(size, uint64s);
     }
 
     return F_data_not;
   }
-#endif // _di_f_type_uint64s_increase_
+#endif // _di_f_uint64s_increase_
 
-#ifndef _di_f_type_uint64s_increase_by_
-  f_status_t f_type_uint64s_increase_by(const f_array_length_t amount, f_uint64s_t *uint64s) {
+#ifndef _di_f_uint64s_increase_by_
+  f_status_t f_uint64s_increase_by(const f_array_length_t amount, f_uint64s_t *uint64s) {
     #ifndef _di_level_0_parameter_checking_
       if (!amount) return F_status_set_error(F_parameter);
       if (!uint64s) return F_status_set_error(F_parameter);
@@ -319,35 +319,35 @@ extern "C" {
         return F_status_set_error(F_array_too_large);
       }
 
-      return private_f_type_uint64s_resize(uint64s->used + amount, uint64s);
+      return private_f_uint64s_resize(uint64s->used + amount, uint64s);
     }
 
     return F_data_not;
   }
-#endif // _di_f_type_uint64s_increase_by_
+#endif // _di_f_uint64s_increase_by_
 
-#ifndef _di_f_type_uint64s_resize_
-  f_status_t f_type_uint64s_resize(const f_array_length_t length, f_uint64s_t *uint64s) {
+#ifndef _di_f_uint64s_resize_
+  f_status_t f_uint64s_resize(const f_array_length_t length, f_uint64s_t *uint64s) {
     #ifndef _di_level_0_parameter_checking_
       if (!uint64s) return F_status_set_error(F_parameter);
     #endif // _di_level_0_parameter_checking_
 
-    return private_f_type_uint64s_resize(length, uint64s);
+    return private_f_uint64s_resize(length, uint64s);
   }
-#endif // _di_f_type_uint64s_resize_
+#endif // _di_f_uint64s_resize_
 
-#ifndef _di_f_type_uint64ss_adjust_
-  f_status_t f_type_uint64ss_adjust(const f_array_length_t length, f_uint64ss_t *uint64ss) {
+#ifndef _di_f_uint64ss_adjust_
+  f_status_t f_uint64ss_adjust(const f_array_length_t length, f_uint64ss_t *uint64ss) {
     #ifndef _di_level_0_parameter_checking_
       if (!uint64ss) return F_status_set_error(F_parameter);
     #endif // _di_level_0_parameter_checking_
 
-    return private_f_type_uint64ss_adjust(length, uint64ss);
+    return private_f_uint64ss_adjust(length, uint64ss);
   }
-#endif // _di_f_type_uint64ss_adjust_
+#endif // _di_f_uint64ss_adjust_
 
-#ifndef _di_f_type_uint64ss_append_
-  f_status_t f_type_uint64ss_append(const f_uint64ss_t source, f_uint64ss_t *destination) {
+#ifndef _di_f_uint64ss_append_
+  f_status_t f_uint64ss_append(const f_uint64ss_t source, f_uint64ss_t *destination) {
     #ifndef _di_level_0_parameter_checking_
       if (!destination) return F_status_set_error(F_parameter);
     #endif // _di_level_0_parameter_checking_
@@ -357,51 +357,51 @@ extern "C" {
     f_status_t status = F_none;
 
     if (destination->used + source.used > destination->size) {
-      status = private_f_type_uint64ss_resize(destination->used + source.used, destination);
+      status = private_f_uint64ss_resize(destination->used + source.used, destination);
       if (F_status_is_error(status)) return status;
     }
 
     for (f_array_length_t i = 0; i < source.used; ++i, ++destination->used) {
-      status = private_f_type_uint64s_append(source.array[i], &destination->array[destination->used]);
+      status = private_f_uint64s_append(source.array[i], &destination->array[destination->used]);
       if (F_status_is_error(status)) return status;
     } // for
 
     return F_none;
   }
-#endif // _di_f_type_uint64ss_append_
+#endif // _di_f_uint64ss_append_
 
-#ifndef _di_f_type_uint64ss_decimate_by_
-  f_status_t f_type_uint64ss_decimate_by(const f_array_length_t amount, f_uint64ss_t *uint64ss) {
+#ifndef _di_f_uint64ss_decimate_by_
+  f_status_t f_uint64ss_decimate_by(const f_array_length_t amount, f_uint64ss_t *uint64ss) {
     #ifndef _di_level_0_parameter_checking_
       if (!amount) return F_status_set_error(F_parameter);
       if (!uint64ss) return F_status_set_error(F_parameter);
     #endif // _di_level_0_parameter_checking_
 
     if (uint64ss->size - amount > 0) {
-      return private_f_type_uint64ss_adjust(uint64ss->size - amount, uint64ss);
+      return private_f_uint64ss_adjust(uint64ss->size - amount, uint64ss);
     }
 
-    return private_f_type_uint64ss_adjust(0, uint64ss);
+    return private_f_uint64ss_adjust(0, uint64ss);
   }
-#endif // _di_f_type_uint64ss_decimate_by_
+#endif // _di_f_uint64ss_decimate_by_
 
-#ifndef _di_f_type_uint64ss_decrease_by_
-  f_status_t f_type_uint64ss_decrease_by(const f_array_length_t amount, f_uint64ss_t *uint64ss) {
+#ifndef _di_f_uint64ss_decrease_by_
+  f_status_t f_uint64ss_decrease_by(const f_array_length_t amount, f_uint64ss_t *uint64ss) {
     #ifndef _di_level_0_parameter_checking_
       if (!amount) return F_status_set_error(F_parameter);
       if (!uint64ss) return F_status_set_error(F_parameter);
     #endif // _di_level_0_parameter_checking_
 
     if (uint64ss->size - amount > 0) {
-      return private_f_type_uint64ss_resize(uint64ss->size - amount, uint64ss);
+      return private_f_uint64ss_resize(uint64ss->size - amount, uint64ss);
     }
 
-    return private_f_type_uint64ss_resize(0, uint64ss);
+    return private_f_uint64ss_resize(0, uint64ss);
   }
-#endif // _di_f_type_uint64ss_decrease_by_
+#endif // _di_f_uint64ss_decrease_by_
 
-#ifndef _di_f_type_uint64ss_increase_
-  f_status_t f_type_uint64ss_increase(const uint16_t step, f_uint64ss_t *uint64ss) {
+#ifndef _di_f_uint64ss_increase_
+  f_status_t f_uint64ss_increase(const uint16_t step, f_uint64ss_t *uint64ss) {
     #ifndef _di_level_0_parameter_checking_
       if (!step) return F_status_set_error(F_parameter);
       if (!uint64ss) return F_status_set_error(F_parameter);
@@ -418,15 +418,15 @@ extern "C" {
         size = F_array_length_t_size_d;
       }
 
-      return private_f_type_uint64ss_resize(size, uint64ss);
+      return private_f_uint64ss_resize(size, uint64ss);
     }
 
     return F_data_not;
   }
-#endif // _di_f_type_uint64ss_increase_
+#endif // _di_f_uint64ss_increase_
 
-#ifndef _di_f_type_uint64ss_increase_by_
-  f_status_t f_type_uint64ss_increase_by(const f_array_length_t amount, f_uint64ss_t *uint64ss) {
+#ifndef _di_f_uint64ss_increase_by_
+  f_status_t f_uint64ss_increase_by(const f_array_length_t amount, f_uint64ss_t *uint64ss) {
     #ifndef _di_level_0_parameter_checking_
       if (!amount) return F_status_set_error(F_parameter);
       if (!uint64ss) return F_status_set_error(F_parameter);
@@ -437,22 +437,22 @@ extern "C" {
         return F_status_set_error(F_array_too_large);
       }
 
-      return private_f_type_uint64ss_resize(uint64ss->used + amount, uint64ss);
+      return private_f_uint64ss_resize(uint64ss->used + amount, uint64ss);
     }
 
     return F_data_not;
   }
-#endif // _di_f_type_uint64ss_increase_by_
+#endif // _di_f_uint64ss_increase_by_
 
-#ifndef _di_f_type_uint64ss_resize_
-  f_status_t f_type_uint64ss_resize(const f_array_length_t length, f_uint64ss_t *uint64ss) {
+#ifndef _di_f_uint64ss_resize_
+  f_status_t f_uint64ss_resize(const f_array_length_t length, f_uint64ss_t *uint64ss) {
     #ifndef _di_level_0_parameter_checking_
       if (!uint64ss) return F_status_set_error(F_parameter);
     #endif // _di_level_0_parameter_checking_
 
-    return private_f_type_uint64ss_resize(length, uint64ss);
+    return private_f_uint64ss_resize(length, uint64ss);
   }
-#endif // _di_f_type_uint64ss_resize_
+#endif // _di_f_uint64ss_resize_
 
 #ifdef __cplusplus
 } // extern "C"
index 803bf3d32e80a9caef39bba1e601727c95a58b96..0290d5b3bb0bdab843fdd2fac834f86af29ba8de 100644 (file)
@@ -31,9 +31,9 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_adjust().
  */
-#ifndef _di_f_type_int64s_adjust_
-  extern f_status_t f_type_int64s_adjust(const f_array_length_t length, f_int64s_t *int64s);
-#endif // _di_f_type_int64s_adjust_
+#ifndef _di_f_int64s_adjust_
+  extern f_status_t f_int64s_adjust(const f_array_length_t length, f_int64s_t *int64s);
+#endif // _di_f_int64s_adjust_
 
 /**
  * Append the source int64s onto the destination.
@@ -51,9 +51,9 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  */
-#ifndef _di_f_type_int64s_append_
-  extern f_status_t f_type_int64s_append(const f_int64s_t source, f_int64s_t *destination);
-#endif // _di_f_type_int64s_append_
+#ifndef _di_f_int64s_append_
+  extern f_status_t f_int64s_append(const f_int64s_t source, f_int64s_t *destination);
+#endif // _di_f_int64s_append_
 
 /**
  * Resize the int64s array to a smaller size.
@@ -74,9 +74,9 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_adjust().
  */
-#ifndef _di_f_type_int64s_decimate_by_
-  extern f_status_t f_type_int64s_decimate_by(const f_array_length_t amount, f_int64s_t *int64s);
-#endif // _di_f_type_int64s_decimate_by_
+#ifndef _di_f_int64s_decimate_by_
+  extern f_status_t f_int64s_decimate_by(const f_array_length_t amount, f_int64s_t *int64s);
+#endif // _di_f_int64s_decimate_by_
 
 /**
  * Resize the int64s array to a smaller size.
@@ -97,9 +97,9 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  */
-#ifndef _di_f_type_int64s_decrease_by_
-  extern f_status_t f_type_int64s_decrease_by(const f_array_length_t amount, f_int64s_t *int64s);
-#endif // _di_f_type_int64s_decrease_by_
+#ifndef _di_f_int64s_decrease_by_
+  extern f_status_t f_int64s_decrease_by(const f_array_length_t amount, f_int64s_t *int64s);
+#endif // _di_f_int64s_decrease_by_
 
 /**
  * Increase the size of the int64s array, but only if necesary.
@@ -122,9 +122,9 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  */
-#ifndef _di_f_type_int64s_increase_
-  extern f_status_t f_type_int64s_increase(const uint16_t step, f_int64s_t *int64s);
-#endif // _di_f_type_int64s_increase_
+#ifndef _di_f_int64s_increase_
+  extern f_status_t f_int64s_increase(const uint16_t step, f_int64s_t *int64s);
+#endif // _di_f_int64s_increase_
 
 /**
  * Resize the int64s array to a larger size.
@@ -147,9 +147,9 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  */
-#ifndef _di_f_type_int64s_increase_by_
-  extern f_status_t f_type_int64s_increase_by(const f_array_length_t amount, f_int64s_t *int64s);
-#endif // _di_f_type_int64s_increase_by_
+#ifndef _di_f_int64s_increase_by_
+  extern f_status_t f_int64s_increase_by(const f_array_length_t amount, f_int64s_t *int64s);
+#endif // _di_f_int64s_increase_by_
 
 /**
  * Resize the int64s array.
@@ -166,9 +166,9 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  */
-#ifndef _di_f_type_int64s_resize_
-  extern f_status_t f_type_int64s_resize(const f_array_length_t length, f_int64s_t *int64s);
-#endif // _di_f_type_int64s_resize_
+#ifndef _di_f_int64s_resize_
+  extern f_status_t f_int64s_resize(const f_array_length_t length, f_int64s_t *int64s);
+#endif // _di_f_int64s_resize_
 
 /**
  * Resize the int64ss array.
@@ -186,9 +186,9 @@ extern "C" {
  *   Errors (with error bit) from: f_memory_adjust().
  *   Errors (with error bit) from: f_memory_destroy().
  */
-#ifndef _di_f_type_int64ss_adjust_
-  extern f_status_t f_type_int64ss_adjust(const f_array_length_t length, f_int64ss_t *int64ss);
-#endif // _di_f_type_int64ss_adjust_
+#ifndef _di_f_int64ss_adjust_
+  extern f_status_t f_int64ss_adjust(const f_array_length_t length, f_int64ss_t *int64ss);
+#endif // _di_f_int64ss_adjust_
 
 /**
  * Append the source int64ss onto the destination.
@@ -206,9 +206,9 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  */
-#ifndef _di_f_type_int64ss_append_
-  extern f_status_t f_type_int64ss_append(const f_int64ss_t source, f_int64ss_t *destination);
-#endif // _di_f_type_int64ss_append_
+#ifndef _di_f_int64ss_append_
+  extern f_status_t f_int64ss_append(const f_int64ss_t source, f_int64ss_t *destination);
+#endif // _di_f_int64ss_append_
 
 /**
  * Resize the int64ss array.
@@ -226,9 +226,9 @@ extern "C" {
  *   Errors (with error bit) from: f_memory_adjust().
  *   Errors (with error bit) from: f_memory_destroy().
  */
-#ifndef _di_f_type_int64ss_adjust_
-  extern f_status_t f_type_int64ss_adjust(const f_array_length_t length, f_int64ss_t *int64ss);
-#endif // _di_f_type_int64ss_adjust_
+#ifndef _di_f_int64ss_adjust_
+  extern f_status_t f_int64ss_adjust(const f_array_length_t length, f_int64ss_t *int64ss);
+#endif // _di_f_int64ss_adjust_
 
 /**
  * Resize the int64ss array to a smaller size.
@@ -250,9 +250,9 @@ extern "C" {
  *   Errors (with error bit) from: f_memory_adjust().
  *   Errors (with error bit) from: f_memory_destroy().
  */
-#ifndef _di_f_type_int64ss_decimate_by_
-  extern f_status_t f_type_int64ss_decimate_by(const f_array_length_t amount, f_int64ss_t *int64ss);
-#endif // _di_f_type_int64ss_decimate_by_
+#ifndef _di_f_int64ss_decimate_by_
+  extern f_status_t f_int64ss_decimate_by(const f_array_length_t amount, f_int64ss_t *int64ss);
+#endif // _di_f_int64ss_decimate_by_
 
 /**
  * Resize the int64ss array to a smaller size.
@@ -274,9 +274,9 @@ extern "C" {
  *   Errors (with error bit) from: f_memory_delete().
  *   Errors (with error bit) from: f_memory_resize().
  */
-#ifndef _di_f_type_int64ss_decrease_by_
-  extern f_status_t f_type_int64ss_decrease_by(const f_array_length_t amount, f_int64ss_t *int64ss);
-#endif // _di_f_type_int64ss_decrease_by_
+#ifndef _di_f_int64ss_decrease_by_
+  extern f_status_t f_int64ss_decrease_by(const f_array_length_t amount, f_int64ss_t *int64ss);
+#endif // _di_f_int64ss_decrease_by_
 
 /**
  * Increase the size of the int64ss array, but only if necessary.
@@ -299,9 +299,9 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  */
-#ifndef _di_f_type_int64ss_increase_
-  extern f_status_t f_type_int64ss_increase(const uint16_t step, f_int64ss_t *int64ss);
-#endif // _di_f_type_int64ss_increase_
+#ifndef _di_f_int64ss_increase_
+  extern f_status_t f_int64ss_increase(const uint16_t step, f_int64ss_t *int64ss);
+#endif // _di_f_int64ss_increase_
 
 /**
  * Resize the int64ss array to a larger size.
@@ -324,9 +324,9 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  */
-#ifndef _di_f_type_int64ss_increase_by_
-  extern f_status_t f_type_int64ss_increase_by(const f_array_length_t amount, f_int64ss_t *int64ss);
-#endif // _di_f_type_int64ss_increase_by_
+#ifndef _di_f_int64ss_increase_by_
+  extern f_status_t f_int64ss_increase_by(const f_array_length_t amount, f_int64ss_t *int64ss);
+#endif // _di_f_int64ss_increase_by_
 
 /**
  * Resize the int64ss array.
@@ -344,9 +344,9 @@ extern "C" {
  *   Errors (with error bit) from: f_memory_delete().
  *   Errors (with error bit) from: f_memory_resize().
  */
-#ifndef _di_f_type_int64ss_resize_
-  extern f_status_t f_type_int64ss_resize(const f_array_length_t length, f_int64ss_t *int64ss);
-#endif // _di_f_type_int64ss_resize_
+#ifndef _di_f_int64ss_resize_
+  extern f_status_t f_int64ss_resize(const f_array_length_t length, f_int64ss_t *int64ss);
+#endif // _di_f_int64ss_resize_
 
 /**
  * Resize the string uint64s array.
@@ -363,9 +363,9 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_adjust().
  */
-#ifndef _di_f_type_uint64s_adjust_
-  extern f_status_t f_type_uint64s_adjust(const f_array_length_t length, f_uint64s_t *uint64s);
-#endif // _di_f_type_uint64s_adjust_
+#ifndef _di_f_uint64s_adjust_
+  extern f_status_t f_uint64s_adjust(const f_array_length_t length, f_uint64s_t *uint64s);
+#endif // _di_f_uint64s_adjust_
 
 /**
  * Append the source uint64s onto the destination.
@@ -383,9 +383,9 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  */
-#ifndef _di_f_type_uint64s_append_
-  extern f_status_t f_type_uint64s_append(const f_uint64s_t source, f_uint64s_t *destination);
-#endif // _di_f_type_uint64s_append_
+#ifndef _di_f_uint64s_append_
+  extern f_status_t f_uint64s_append(const f_uint64s_t source, f_uint64s_t *destination);
+#endif // _di_f_uint64s_append_
 
 /**
  * Resize the string uint64s array to a smaller size.
@@ -406,9 +406,9 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_adjust().
  */
-#ifndef _di_f_type_uint64s_decimate_by_
-  extern f_status_t f_type_uint64s_decimate_by(const f_array_length_t amount, f_uint64s_t *uint64s);
-#endif // _di_f_type_uint64s_decimate_by_
+#ifndef _di_f_uint64s_decimate_by_
+  extern f_status_t f_uint64s_decimate_by(const f_array_length_t amount, f_uint64s_t *uint64s);
+#endif // _di_f_uint64s_decimate_by_
 
 /**
  * Resize the string uint64s array to a smaller size.
@@ -429,9 +429,9 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  */
-#ifndef _di_f_type_uint64s_decrease_by_
-  extern f_status_t f_type_uint64s_decrease_by(const f_array_length_t amount, f_uint64s_t *uint64s);
-#endif // _di_f_type_uint64s_decrease_by_
+#ifndef _di_f_uint64s_decrease_by_
+  extern f_status_t f_uint64s_decrease_by(const f_array_length_t amount, f_uint64s_t *uint64s);
+#endif // _di_f_uint64s_decrease_by_
 
 /**
  * Increase the size of the string uint64s array, but only if necesary.
@@ -454,9 +454,9 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  */
-#ifndef _di_f_type_uint64s_increase_
-  extern f_status_t f_type_uint64s_increase(const uint16_t step, f_uint64s_t *uint64s);
-#endif // _di_f_type_uint64s_increase_
+#ifndef _di_f_uint64s_increase_
+  extern f_status_t f_uint64s_increase(const uint16_t step, f_uint64s_t *uint64s);
+#endif // _di_f_uint64s_increase_
 
 /**
  * Resize the string uint64s array to a larger size.
@@ -479,9 +479,9 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  */
-#ifndef _di_f_type_uint64s_increase_by_
-  extern f_status_t f_type_uint64s_increase_by(const f_array_length_t amount, f_uint64s_t *uint64s);
-#endif // _di_f_type_uint64s_increase_by_
+#ifndef _di_f_uint64s_increase_by_
+  extern f_status_t f_uint64s_increase_by(const f_array_length_t amount, f_uint64s_t *uint64s);
+#endif // _di_f_uint64s_increase_by_
 
 /**
  * Resize the string uint64s array.
@@ -498,9 +498,9 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  */
-#ifndef _di_f_type_uint64s_resize_
-  extern f_status_t f_type_uint64s_resize(const f_array_length_t length, f_uint64s_t *uint64s);
-#endif // _di_f_type_uint64s_resize_
+#ifndef _di_f_uint64s_resize_
+  extern f_status_t f_uint64s_resize(const f_array_length_t length, f_uint64s_t *uint64s);
+#endif // _di_f_uint64s_resize_
 
 /**
  * Resize the string uint64ss array.
@@ -518,9 +518,9 @@ extern "C" {
  *   Errors (with error bit) from: f_memory_adjust().
  *   Errors (with error bit) from: f_memory_destroy().
  */
-#ifndef _di_f_type_uint64ss_adjust_
-  extern f_status_t f_type_uint64ss_adjust(const f_array_length_t length, f_uint64ss_t *uint64ss);
-#endif // _di_f_type_uint64ss_adjust_
+#ifndef _di_f_uint64ss_adjust_
+  extern f_status_t f_uint64ss_adjust(const f_array_length_t length, f_uint64ss_t *uint64ss);
+#endif // _di_f_uint64ss_adjust_
 
 /**
  * Append the source uint64ss onto the destination.
@@ -538,9 +538,9 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  */
-#ifndef _di_f_type_uint64ss_append_
-  extern f_status_t f_type_uint64ss_append(const f_uint64ss_t source, f_uint64ss_t *destination);
-#endif // _di_f_type_uint64ss_append_
+#ifndef _di_f_uint64ss_append_
+  extern f_status_t f_uint64ss_append(const f_uint64ss_t source, f_uint64ss_t *destination);
+#endif // _di_f_uint64ss_append_
 
 /**
  * Resize the string uint64ss array.
@@ -558,9 +558,9 @@ extern "C" {
  *   Errors (with error bit) from: f_memory_adjust().
  *   Errors (with error bit) from: f_memory_destroy().
  */
-#ifndef _di_f_type_uint64ss_adjust_
-  extern f_status_t f_type_uint64ss_adjust(const f_array_length_t length, f_uint64ss_t *uint64ss);
-#endif // _di_f_type_uint64ss_adjust_
+#ifndef _di_f_uint64ss_adjust_
+  extern f_status_t f_uint64ss_adjust(const f_array_length_t length, f_uint64ss_t *uint64ss);
+#endif // _di_f_uint64ss_adjust_
 
 /**
  * Resize the string uint64ss array to a smaller size.
@@ -582,9 +582,9 @@ extern "C" {
  *   Errors (with error bit) from: f_memory_adjust().
  *   Errors (with error bit) from: f_memory_destroy().
  */
-#ifndef _di_f_type_uint64ss_decimate_by_
-  extern f_status_t f_type_uint64ss_decimate_by(const f_array_length_t amount, f_uint64ss_t *uint64ss);
-#endif // _di_f_type_uint64ss_decimate_by_
+#ifndef _di_f_uint64ss_decimate_by_
+  extern f_status_t f_uint64ss_decimate_by(const f_array_length_t amount, f_uint64ss_t *uint64ss);
+#endif // _di_f_uint64ss_decimate_by_
 
 /**
  * Resize the string uint64ss array to a smaller size.
@@ -606,9 +606,9 @@ extern "C" {
  *   Errors (with error bit) from: f_memory_delete().
  *   Errors (with error bit) from: f_memory_resize().
  */
-#ifndef _di_f_type_uint64ss_decrease_by_
-  extern f_status_t f_type_uint64ss_decrease_by(const f_array_length_t amount, f_uint64ss_t *uint64ss);
-#endif // _di_f_type_uint64ss_decrease_by_
+#ifndef _di_f_uint64ss_decrease_by_
+  extern f_status_t f_uint64ss_decrease_by(const f_array_length_t amount, f_uint64ss_t *uint64ss);
+#endif // _di_f_uint64ss_decrease_by_
 
 /**
  * Increase the size of the string uint64ss array, but only if necessary.
@@ -631,9 +631,9 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  */
-#ifndef _di_f_type_uint64ss_increase_
-  extern f_status_t f_type_uint64ss_increase(const uint16_t step, f_uint64ss_t *uint64ss);
-#endif // _di_f_type_uint64ss_increase_
+#ifndef _di_f_uint64ss_increase_
+  extern f_status_t f_uint64ss_increase(const uint16_t step, f_uint64ss_t *uint64ss);
+#endif // _di_f_uint64ss_increase_
 
 /**
  * Resize the string uint64ss array to a larger size.
@@ -656,9 +656,9 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  */
-#ifndef _di_f_type_uint64ss_increase_by_
-  extern f_status_t f_type_uint64ss_increase_by(const f_array_length_t amount, f_uint64ss_t *uint64ss);
-#endif // _di_f_type_uint64ss_increase_by_
+#ifndef _di_f_uint64ss_increase_by_
+  extern f_status_t f_uint64ss_increase_by(const f_array_length_t amount, f_uint64ss_t *uint64ss);
+#endif // _di_f_uint64ss_increase_by_
 
 /**
  * Resize the string uint64ss array.
@@ -676,9 +676,9 @@ extern "C" {
  *   Errors (with error bit) from: f_memory_delete().
  *   Errors (with error bit) from: f_memory_resize().
  */
-#ifndef _di_f_type_uint64ss_resize_
-  extern f_status_t f_type_uint64ss_resize(const f_array_length_t length, f_uint64ss_t *uint64ss);
-#endif // _di_f_type_uint64ss_resize_
+#ifndef _di_f_uint64ss_resize_
+  extern f_status_t f_uint64ss_resize(const f_array_length_t length, f_uint64ss_t *uint64ss);
+#endif // _di_f_uint64ss_resize_
 
 #ifdef __cplusplus
 } // extern "C"
index 2a62d6ee60e1a9ba305d63ccc8268328528e8a23..109f9a8059372ae27f2d8bcda07eb72c352eb582 100644 (file)
@@ -6,60 +6,60 @@
 extern "C" {
 #endif
 
-#ifndef _di_f_type_int8s_adjust_
-  f_status_t f_type_int8s_adjust(const f_array_length_t length, f_int8s_t *int8s) {
+#ifndef _di_f_int8s_adjust_
+  f_status_t f_int8s_adjust(const f_array_length_t length, f_int8s_t *int8s) {
     #ifndef _di_level_0_parameter_checking_
       if (!int8s) return F_status_set_error(F_parameter);
     #endif // _di_level_0_parameter_checking_
 
-    return private_f_type_int8s_adjust(length, int8s);
+    return private_f_int8s_adjust(length, int8s);
   }
-#endif // _di_f_type_int8s_adjust_
+#endif // _di_f_int8s_adjust_
 
-#ifndef _di_f_type_int8s_append_
-  f_status_t f_type_int8s_append(const f_int8s_t source, f_int8s_t *destination) {
+#ifndef _di_f_int8s_append_
+  f_status_t f_int8s_append(const f_int8s_t source, f_int8s_t *destination) {
     #ifndef _di_level_0_parameter_checking_
       if (!destination) return F_status_set_error(F_parameter);
     #endif // _di_level_0_parameter_checking_
 
     if (!source.used) return F_data_not;
 
-    return private_f_type_int8s_append(source, destination);
+    return private_f_int8s_append(source, destination);
   }
-#endif // _di_f_type_int8s_append_
+#endif // _di_f_int8s_append_
 
-#ifndef _di_f_type_int8s_decimate_by_
-  f_status_t f_type_int8s_decimate_by(const f_array_length_t amount, f_int8s_t *int8s) {
+#ifndef _di_f_int8s_decimate_by_
+  f_status_t f_int8s_decimate_by(const f_array_length_t amount, f_int8s_t *int8s) {
     #ifndef _di_level_0_parameter_checking_
       if (!amount) return F_status_set_error(F_parameter);
       if (!int8s) return F_status_set_error(F_parameter);
     #endif // _di_level_0_parameter_checking_
 
     if (int8s->size - amount > 0) {
-      return private_f_type_int8s_adjust(int8s->size - amount, int8s);
+      return private_f_int8s_adjust(int8s->size - amount, int8s);
     }
 
-    return private_f_type_int8s_adjust(0, int8s);
+    return private_f_int8s_adjust(0, int8s);
   }
-#endif // _di_f_type_int8s_decimate_by_
+#endif // _di_f_int8s_decimate_by_
 
-#ifndef _di_f_type_int8s_decrease_by_
-  f_status_t f_type_int8s_decrease_by(const f_array_length_t amount, f_int8s_t *int8s) {
+#ifndef _di_f_int8s_decrease_by_
+  f_status_t f_int8s_decrease_by(const f_array_length_t amount, f_int8s_t *int8s) {
     #ifndef _di_level_0_parameter_checking_
       if (!amount) return F_status_set_error(F_parameter);
       if (!int8s) return F_status_set_error(F_parameter);
     #endif // _di_level_0_parameter_checking_
 
     if (int8s->size - amount > 0) {
-      return private_f_type_int8s_resize(int8s->size - amount, int8s);
+      return private_f_int8s_resize(int8s->size - amount, int8s);
     }
 
-    return private_f_type_int8s_resize(0, int8s);
+    return private_f_int8s_resize(0, int8s);
   }
-#endif // _di_f_type_int8s_decrease_by_
+#endif // _di_f_int8s_decrease_by_
 
-#ifndef _di_f_type_int8s_increase_
-  f_status_t f_type_int8s_increase(const uint16_t step, f_int8s_t *int8s) {
+#ifndef _di_f_int8s_increase_
+  f_status_t f_int8s_increase(const uint16_t step, f_int8s_t *int8s) {
     #ifndef _di_level_0_parameter_checking_
       if (!step) return F_status_set_error(F_parameter);
       if (!int8s) return F_status_set_error(F_parameter);
@@ -76,15 +76,15 @@ extern "C" {
         size = F_array_length_t_size_d;
       }
 
-      return private_f_type_int8s_resize(size, int8s);
+      return private_f_int8s_resize(size, int8s);
     }
 
     return F_data_not;
   }
-#endif // _di_f_type_int8s_increase_
+#endif // _di_f_int8s_increase_
 
-#ifndef _di_f_type_int8s_increase_by_
-  f_status_t f_type_int8s_increase_by(const f_array_length_t amount, f_int8s_t *int8s) {
+#ifndef _di_f_int8s_increase_by_
+  f_status_t f_int8s_increase_by(const f_array_length_t amount, f_int8s_t *int8s) {
     #ifndef _di_level_0_parameter_checking_
       if (!amount) return F_status_set_error(F_parameter);
       if (!int8s) return F_status_set_error(F_parameter);
@@ -95,35 +95,35 @@ extern "C" {
         return F_status_set_error(F_array_too_large);
       }
 
-      return private_f_type_int8s_resize(int8s->used + amount, int8s);
+      return private_f_int8s_resize(int8s->used + amount, int8s);
     }
 
     return F_data_not;
   }
-#endif // _di_f_type_int8s_increase_by_
+#endif // _di_f_int8s_increase_by_
 
-#ifndef _di_f_type_int8s_resize_
-  f_status_t f_type_int8s_resize(const f_array_length_t length, f_int8s_t *int8s) {
+#ifndef _di_f_int8s_resize_
+  f_status_t f_int8s_resize(const f_array_length_t length, f_int8s_t *int8s) {
     #ifndef _di_level_0_parameter_checking_
       if (!int8s) return F_status_set_error(F_parameter);
     #endif // _di_level_0_parameter_checking_
 
-    return private_f_type_int8s_resize(length, int8s);
+    return private_f_int8s_resize(length, int8s);
   }
-#endif // _di_f_type_int8s_resize_
+#endif // _di_f_int8s_resize_
 
-#ifndef _di_f_type_int8ss_adjust_
-  f_status_t f_type_int8ss_adjust(const f_array_length_t length, f_int8ss_t *int8ss) {
+#ifndef _di_f_int8ss_adjust_
+  f_status_t f_int8ss_adjust(const f_array_length_t length, f_int8ss_t *int8ss) {
     #ifndef _di_level_0_parameter_checking_
       if (!int8ss) return F_status_set_error(F_parameter);
     #endif // _di_level_0_parameter_checking_
 
-    return private_f_type_int8ss_adjust(length, int8ss);
+    return private_f_int8ss_adjust(length, int8ss);
   }
-#endif // _di_f_type_int8ss_adjust_
+#endif // _di_f_int8ss_adjust_
 
-#ifndef _di_f_type_int8ss_append_
-  f_status_t f_type_int8ss_append(const f_int8ss_t source, f_int8ss_t *destination) {
+#ifndef _di_f_int8ss_append_
+  f_status_t f_int8ss_append(const f_int8ss_t source, f_int8ss_t *destination) {
     #ifndef _di_level_0_parameter_checking_
       if (!destination) return F_status_set_error(F_parameter);
     #endif // _di_level_0_parameter_checking_
@@ -133,51 +133,51 @@ extern "C" {
     f_status_t status = F_none;
 
     if (destination->used + source.used > destination->size) {
-      status = private_f_type_int8ss_resize(destination->used + source.used, destination);
+      status = private_f_int8ss_resize(destination->used + source.used, destination);
       if (F_status_is_error(status)) return status;
     }
 
     for (f_array_length_t i = 0; i < source.used; ++i, ++destination->used) {
-      status = private_f_type_int8s_append(source.array[i], &destination->array[destination->used]);
+      status = private_f_int8s_append(source.array[i], &destination->array[destination->used]);
       if (F_status_is_error(status)) return status;
     } // for
 
     return F_none;
   }
-#endif // _di_f_type_int8ss_append_
+#endif // _di_f_int8ss_append_
 
-#ifndef _di_f_type_int8ss_decimate_by_
-  f_status_t f_type_int8ss_decimate_by(const f_array_length_t amount, f_int8ss_t *int8ss) {
+#ifndef _di_f_int8ss_decimate_by_
+  f_status_t f_int8ss_decimate_by(const f_array_length_t amount, f_int8ss_t *int8ss) {
     #ifndef _di_level_0_parameter_checking_
       if (!amount) return F_status_set_error(F_parameter);
       if (!int8ss) return F_status_set_error(F_parameter);
     #endif // _di_level_0_parameter_checking_
 
     if (int8ss->size - amount > 0) {
-      return private_f_type_int8ss_adjust(int8ss->size - amount, int8ss);
+      return private_f_int8ss_adjust(int8ss->size - amount, int8ss);
     }
 
-    return private_f_type_int8ss_adjust(0, int8ss);
+    return private_f_int8ss_adjust(0, int8ss);
   }
-#endif // _di_f_type_int8ss_decimate_by_
+#endif // _di_f_int8ss_decimate_by_
 
-#ifndef _di_f_type_int8ss_decrease_by_
-  f_status_t f_type_int8ss_decrease_by(const f_array_length_t amount, f_int8ss_t *int8ss) {
+#ifndef _di_f_int8ss_decrease_by_
+  f_status_t f_int8ss_decrease_by(const f_array_length_t amount, f_int8ss_t *int8ss) {
     #ifndef _di_level_0_parameter_checking_
       if (!amount) return F_status_set_error(F_parameter);
       if (!int8ss) return F_status_set_error(F_parameter);
     #endif // _di_level_0_parameter_checking_
 
     if (int8ss->size - amount > 0) {
-      return private_f_type_int8ss_resize(int8ss->size - amount, int8ss);
+      return private_f_int8ss_resize(int8ss->size - amount, int8ss);
     }
 
-    return private_f_type_int8ss_resize(0, int8ss);
+    return private_f_int8ss_resize(0, int8ss);
   }
-#endif // _di_f_type_int8ss_decrease_by_
+#endif // _di_f_int8ss_decrease_by_
 
-#ifndef _di_f_type_int8ss_increase_
-  f_status_t f_type_int8ss_increase(const uint16_t step, f_int8ss_t *int8ss) {
+#ifndef _di_f_int8ss_increase_
+  f_status_t f_int8ss_increase(const uint16_t step, f_int8ss_t *int8ss) {
     #ifndef _di_level_0_parameter_checking_
       if (!step) return F_status_set_error(F_parameter);
       if (!int8ss) return F_status_set_error(F_parameter);
@@ -194,15 +194,15 @@ extern "C" {
         size = F_array_length_t_size_d;
       }
 
-      return private_f_type_int8ss_resize(size, int8ss);
+      return private_f_int8ss_resize(size, int8ss);
     }
 
     return F_data_not;
   }
-#endif // _di_f_type_int8ss_increase_
+#endif // _di_f_int8ss_increase_
 
-#ifndef _di_f_type_int8ss_increase_by_
-  f_status_t f_type_int8ss_increase_by(const f_array_length_t amount, f_int8ss_t *int8ss) {
+#ifndef _di_f_int8ss_increase_by_
+  f_status_t f_int8ss_increase_by(const f_array_length_t amount, f_int8ss_t *int8ss) {
     #ifndef _di_level_0_parameter_checking_
       if (!amount) return F_status_set_error(F_parameter);
       if (!int8ss) return F_status_set_error(F_parameter);
@@ -213,77 +213,77 @@ extern "C" {
         return F_status_set_error(F_array_too_large);
       }
 
-      return private_f_type_int8ss_resize(int8ss->used + amount, int8ss);
+      return private_f_int8ss_resize(int8ss->used + amount, int8ss);
     }
 
     return F_data_not;
   }
-#endif // _di_f_type_int8ss_increase_by_
+#endif // _di_f_int8ss_increase_by_
 
-#ifndef _di_f_type_int8ss_resize_
-  f_status_t f_type_int8ss_resize(const f_array_length_t length, f_int8ss_t *int8ss) {
+#ifndef _di_f_int8ss_resize_
+  f_status_t f_int8ss_resize(const f_array_length_t length, f_int8ss_t *int8ss) {
     #ifndef _di_level_0_parameter_checking_
       if (!int8ss) return F_status_set_error(F_parameter);
     #endif // _di_level_0_parameter_checking_
 
-    return private_f_type_int8ss_resize(length, int8ss);
+    return private_f_int8ss_resize(length, int8ss);
   }
-#endif // _di_f_type_int8ss_resize_
+#endif // _di_f_int8ss_resize_
 
-#ifndef _di_f_type_uint8s_adjust_
-  f_status_t f_type_uint8s_adjust(const f_array_length_t length, f_uint8s_t *uint8s) {
+#ifndef _di_f_uint8s_adjust_
+  f_status_t f_uint8s_adjust(const f_array_length_t length, f_uint8s_t *uint8s) {
     #ifndef _di_level_0_parameter_checking_
       if (!uint8s) return F_status_set_error(F_parameter);
     #endif // _di_level_0_parameter_checking_
 
-    return private_f_type_uint8s_adjust(length, uint8s);
+    return private_f_uint8s_adjust(length, uint8s);
   }
-#endif // _di_f_type_uint8s_adjust_
+#endif // _di_f_uint8s_adjust_
 
-#ifndef _di_f_type_uint8s_append_
-  f_status_t f_type_uint8s_append(const f_uint8s_t source, f_uint8s_t *destination) {
+#ifndef _di_f_uint8s_append_
+  f_status_t f_uint8s_append(const f_uint8s_t source, f_uint8s_t *destination) {
     #ifndef _di_level_0_parameter_checking_
       if (!destination) return F_status_set_error(F_parameter);
     #endif // _di_level_0_parameter_checking_
 
     if (!source.used) return F_data_not;
 
-    return private_f_type_uint8s_append(source, destination);
+    return private_f_uint8s_append(source, destination);
   }
-#endif // _di_f_type_uint8s_append_
+#endif // _di_f_uint8s_append_
 
-#ifndef _di_f_type_uint8s_decimate_by_
-  f_status_t f_type_uint8s_decimate_by(const f_array_length_t amount, f_uint8s_t *uint8s) {
+#ifndef _di_f_uint8s_decimate_by_
+  f_status_t f_uint8s_decimate_by(const f_array_length_t amount, f_uint8s_t *uint8s) {
     #ifndef _di_level_0_parameter_checking_
       if (!amount) return F_status_set_error(F_parameter);
       if (!uint8s) return F_status_set_error(F_parameter);
     #endif // _di_level_0_parameter_checking_
 
     if (uint8s->size - amount > 0) {
-      return private_f_type_uint8s_adjust(uint8s->size - amount, uint8s);
+      return private_f_uint8s_adjust(uint8s->size - amount, uint8s);
     }
 
-    return private_f_type_uint8s_adjust(0, uint8s);
+    return private_f_uint8s_adjust(0, uint8s);
   }
-#endif // _di_f_type_uint8s_decimate_by_
+#endif // _di_f_uint8s_decimate_by_
 
-#ifndef _di_f_type_uint8s_decrease_by_
-  f_status_t f_type_uint8s_decrease_by(const f_array_length_t amount, f_uint8s_t *uint8s) {
+#ifndef _di_f_uint8s_decrease_by_
+  f_status_t f_uint8s_decrease_by(const f_array_length_t amount, f_uint8s_t *uint8s) {
     #ifndef _di_level_0_parameter_checking_
       if (!amount) return F_status_set_error(F_parameter);
       if (!uint8s) return F_status_set_error(F_parameter);
     #endif // _di_level_0_parameter_checking_
 
     if (uint8s->size - amount > 0) {
-      return private_f_type_uint8s_resize(uint8s->size - amount, uint8s);
+      return private_f_uint8s_resize(uint8s->size - amount, uint8s);
     }
 
-    return private_f_type_uint8s_resize(0, uint8s);
+    return private_f_uint8s_resize(0, uint8s);
   }
-#endif // _di_f_type_uint8s_decrease_by_
+#endif // _di_f_uint8s_decrease_by_
 
-#ifndef _di_f_type_uint8s_increase_
-  f_status_t f_type_uint8s_increase(const uint16_t step, f_uint8s_t *uint8s) {
+#ifndef _di_f_uint8s_increase_
+  f_status_t f_uint8s_increase(const uint16_t step, f_uint8s_t *uint8s) {
     #ifndef _di_level_0_parameter_checking_
       if (!step) return F_status_set_error(F_parameter);
       if (!uint8s) return F_status_set_error(F_parameter);
@@ -300,15 +300,15 @@ extern "C" {
         size = F_array_length_t_size_d;
       }
 
-      return private_f_type_uint8s_resize(size, uint8s);
+      return private_f_uint8s_resize(size, uint8s);
     }
 
     return F_data_not;
   }
-#endif // _di_f_type_uint8s_increase_
+#endif // _di_f_uint8s_increase_
 
-#ifndef _di_f_type_uint8s_increase_by_
-  f_status_t f_type_uint8s_increase_by(const f_array_length_t amount, f_uint8s_t *uint8s) {
+#ifndef _di_f_uint8s_increase_by_
+  f_status_t f_uint8s_increase_by(const f_array_length_t amount, f_uint8s_t *uint8s) {
     #ifndef _di_level_0_parameter_checking_
       if (!amount) return F_status_set_error(F_parameter);
       if (!uint8s) return F_status_set_error(F_parameter);
@@ -319,35 +319,35 @@ extern "C" {
         return F_status_set_error(F_array_too_large);
       }
 
-      return private_f_type_uint8s_resize(uint8s->used + amount, uint8s);
+      return private_f_uint8s_resize(uint8s->used + amount, uint8s);
     }
 
     return F_data_not;
   }
-#endif // _di_f_type_uint8s_increase_by_
+#endif // _di_f_uint8s_increase_by_
 
-#ifndef _di_f_type_uint8s_resize_
-  f_status_t f_type_uint8s_resize(const f_array_length_t length, f_uint8s_t *uint8s) {
+#ifndef _di_f_uint8s_resize_
+  f_status_t f_uint8s_resize(const f_array_length_t length, f_uint8s_t *uint8s) {
     #ifndef _di_level_0_parameter_checking_
       if (!uint8s) return F_status_set_error(F_parameter);
     #endif // _di_level_0_parameter_checking_
 
-    return private_f_type_uint8s_resize(length, uint8s);
+    return private_f_uint8s_resize(length, uint8s);
   }
-#endif // _di_f_type_uint8s_resize_
+#endif // _di_f_uint8s_resize_
 
-#ifndef _di_f_type_uint8ss_adjust_
-  f_status_t f_type_uint8ss_adjust(const f_array_length_t length, f_uint8ss_t *uint8ss) {
+#ifndef _di_f_uint8ss_adjust_
+  f_status_t f_uint8ss_adjust(const f_array_length_t length, f_uint8ss_t *uint8ss) {
     #ifndef _di_level_0_parameter_checking_
       if (!uint8ss) return F_status_set_error(F_parameter);
     #endif // _di_level_0_parameter_checking_
 
-    return private_f_type_uint8ss_adjust(length, uint8ss);
+    return private_f_uint8ss_adjust(length, uint8ss);
   }
-#endif // _di_f_type_uint8ss_adjust_
+#endif // _di_f_uint8ss_adjust_
 
-#ifndef _di_f_type_uint8ss_append_
-  f_status_t f_type_uint8ss_append(const f_uint8ss_t source, f_uint8ss_t *destination) {
+#ifndef _di_f_uint8ss_append_
+  f_status_t f_uint8ss_append(const f_uint8ss_t source, f_uint8ss_t *destination) {
     #ifndef _di_level_0_parameter_checking_
       if (!destination) return F_status_set_error(F_parameter);
     #endif // _di_level_0_parameter_checking_
@@ -357,51 +357,51 @@ extern "C" {
     f_status_t status = F_none;
 
     if (destination->used + source.used > destination->size) {
-      status = private_f_type_uint8ss_resize(destination->used + source.used, destination);
+      status = private_f_uint8ss_resize(destination->used + source.used, destination);
       if (F_status_is_error(status)) return status;
     }
 
     for (f_array_length_t i = 0; i < source.used; ++i, ++destination->used) {
-      status = private_f_type_uint8s_append(source.array[i], &destination->array[destination->used]);
+      status = private_f_uint8s_append(source.array[i], &destination->array[destination->used]);
       if (F_status_is_error(status)) return status;
     } // for
 
     return F_none;
   }
-#endif // _di_f_type_uint8ss_append_
+#endif // _di_f_uint8ss_append_
 
-#ifndef _di_f_type_uint8ss_decimate_by_
-  f_status_t f_type_uint8ss_decimate_by(const f_array_length_t amount, f_uint8ss_t *uint8ss) {
+#ifndef _di_f_uint8ss_decimate_by_
+  f_status_t f_uint8ss_decimate_by(const f_array_length_t amount, f_uint8ss_t *uint8ss) {
     #ifndef _di_level_0_parameter_checking_
       if (!amount) return F_status_set_error(F_parameter);
       if (!uint8ss) return F_status_set_error(F_parameter);
     #endif // _di_level_0_parameter_checking_
 
     if (uint8ss->size - amount > 0) {
-      return private_f_type_uint8ss_adjust(uint8ss->size - amount, uint8ss);
+      return private_f_uint8ss_adjust(uint8ss->size - amount, uint8ss);
     }
 
-    return private_f_type_uint8ss_adjust(0, uint8ss);
+    return private_f_uint8ss_adjust(0, uint8ss);
   }
-#endif // _di_f_type_uint8ss_decimate_by_
+#endif // _di_f_uint8ss_decimate_by_
 
-#ifndef _di_f_type_uint8ss_decrease_by_
-  f_status_t f_type_uint8ss_decrease_by(const f_array_length_t amount, f_uint8ss_t *uint8ss) {
+#ifndef _di_f_uint8ss_decrease_by_
+  f_status_t f_uint8ss_decrease_by(const f_array_length_t amount, f_uint8ss_t *uint8ss) {
     #ifndef _di_level_0_parameter_checking_
       if (!amount) return F_status_set_error(F_parameter);
       if (!uint8ss) return F_status_set_error(F_parameter);
     #endif // _di_level_0_parameter_checking_
 
     if (uint8ss->size - amount > 0) {
-      return private_f_type_uint8ss_resize(uint8ss->size - amount, uint8ss);
+      return private_f_uint8ss_resize(uint8ss->size - amount, uint8ss);
     }
 
-    return private_f_type_uint8ss_resize(0, uint8ss);
+    return private_f_uint8ss_resize(0, uint8ss);
   }
-#endif // _di_f_type_uint8ss_decrease_by_
+#endif // _di_f_uint8ss_decrease_by_
 
-#ifndef _di_f_type_uint8ss_increase_
-  f_status_t f_type_uint8ss_increase(const uint16_t step, f_uint8ss_t *uint8ss) {
+#ifndef _di_f_uint8ss_increase_
+  f_status_t f_uint8ss_increase(const uint16_t step, f_uint8ss_t *uint8ss) {
     #ifndef _di_level_0_parameter_checking_
       if (!step) return F_status_set_error(F_parameter);
       if (!uint8ss) return F_status_set_error(F_parameter);
@@ -418,15 +418,15 @@ extern "C" {
         size = F_array_length_t_size_d;
       }
 
-      return private_f_type_uint8ss_resize(size, uint8ss);
+      return private_f_uint8ss_resize(size, uint8ss);
     }
 
     return F_data_not;
   }
-#endif // _di_f_type_uint8ss_increase_
+#endif // _di_f_uint8ss_increase_
 
-#ifndef _di_f_type_uint8ss_increase_by_
-  f_status_t f_type_uint8ss_increase_by(const f_array_length_t amount, f_uint8ss_t *uint8ss) {
+#ifndef _di_f_uint8ss_increase_by_
+  f_status_t f_uint8ss_increase_by(const f_array_length_t amount, f_uint8ss_t *uint8ss) {
     #ifndef _di_level_0_parameter_checking_
       if (!amount) return F_status_set_error(F_parameter);
       if (!uint8ss) return F_status_set_error(F_parameter);
@@ -437,22 +437,22 @@ extern "C" {
         return F_status_set_error(F_array_too_large);
       }
 
-      return private_f_type_uint8ss_resize(uint8ss->used + amount, uint8ss);
+      return private_f_uint8ss_resize(uint8ss->used + amount, uint8ss);
     }
 
     return F_data_not;
   }
-#endif // _di_f_type_uint8ss_increase_by_
+#endif // _di_f_uint8ss_increase_by_
 
-#ifndef _di_f_type_uint8ss_resize_
-  f_status_t f_type_uint8ss_resize(const f_array_length_t length, f_uint8ss_t *uint8ss) {
+#ifndef _di_f_uint8ss_resize_
+  f_status_t f_uint8ss_resize(const f_array_length_t length, f_uint8ss_t *uint8ss) {
     #ifndef _di_level_0_parameter_checking_
       if (!uint8ss) return F_status_set_error(F_parameter);
     #endif // _di_level_0_parameter_checking_
 
-    return private_f_type_uint8ss_resize(length, uint8ss);
+    return private_f_uint8ss_resize(length, uint8ss);
   }
-#endif // _di_f_type_uint8ss_resize_
+#endif // _di_f_uint8ss_resize_
 
 #ifdef __cplusplus
 } // extern "C"
index 37fb88adcb5e85f1279ec7914cb18324e12ae113..36bdf7302fcb000d3ef6d37bb5cc871ad247cd14 100644 (file)
@@ -31,9 +31,9 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_adjust().
  */
-#ifndef _di_f_type_int8s_adjust_
-  extern f_status_t f_type_int8s_adjust(const f_array_length_t length, f_int8s_t *int8s);
-#endif // _di_f_type_int8s_adjust_
+#ifndef _di_f_int8s_adjust_
+  extern f_status_t f_int8s_adjust(const f_array_length_t length, f_int8s_t *int8s);
+#endif // _di_f_int8s_adjust_
 
 /**
  * Append the source int8s onto the destination.
@@ -51,9 +51,9 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  */
-#ifndef _di_f_type_int8s_append_
-  extern f_status_t f_type_int8s_append(const f_int8s_t source, f_int8s_t *destination);
-#endif // _di_f_type_int8s_append_
+#ifndef _di_f_int8s_append_
+  extern f_status_t f_int8s_append(const f_int8s_t source, f_int8s_t *destination);
+#endif // _di_f_int8s_append_
 
 /**
  * Resize the int8s array to a smaller size.
@@ -74,9 +74,9 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_adjust().
  */
-#ifndef _di_f_type_int8s_decimate_by_
-  extern f_status_t f_type_int8s_decimate_by(const f_array_length_t amount, f_int8s_t *int8s);
-#endif // _di_f_type_int8s_decimate_by_
+#ifndef _di_f_int8s_decimate_by_
+  extern f_status_t f_int8s_decimate_by(const f_array_length_t amount, f_int8s_t *int8s);
+#endif // _di_f_int8s_decimate_by_
 
 /**
  * Resize the int8s array to a smaller size.
@@ -97,9 +97,9 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  */
-#ifndef _di_f_type_int8s_decrease_by_
-  extern f_status_t f_type_int8s_decrease_by(const f_array_length_t amount, f_int8s_t *int8s);
-#endif // _di_f_type_int8s_decrease_by_
+#ifndef _di_f_int8s_decrease_by_
+  extern f_status_t f_int8s_decrease_by(const f_array_length_t amount, f_int8s_t *int8s);
+#endif // _di_f_int8s_decrease_by_
 
 /**
  * Increase the size of the int8s array, but only if necesary.
@@ -122,9 +122,9 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  */
-#ifndef _di_f_type_int8s_increase_
-  extern f_status_t f_type_int8s_increase(const uint16_t step, f_int8s_t *int8s);
-#endif // _di_f_type_int8s_increase_
+#ifndef _di_f_int8s_increase_
+  extern f_status_t f_int8s_increase(const uint16_t step, f_int8s_t *int8s);
+#endif // _di_f_int8s_increase_
 
 /**
  * Resize the int8s array to a larger size.
@@ -147,9 +147,9 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  */
-#ifndef _di_f_type_int8s_increase_by_
-  extern f_status_t f_type_int8s_increase_by(const f_array_length_t amount, f_int8s_t *int8s);
-#endif // _di_f_type_int8s_increase_by_
+#ifndef _di_f_int8s_increase_by_
+  extern f_status_t f_int8s_increase_by(const f_array_length_t amount, f_int8s_t *int8s);
+#endif // _di_f_int8s_increase_by_
 
 /**
  * Resize the int8s array.
@@ -166,9 +166,9 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  */
-#ifndef _di_f_type_int8s_resize_
-  extern f_status_t f_type_int8s_resize(const f_array_length_t length, f_int8s_t *int8s);
-#endif // _di_f_type_int8s_resize_
+#ifndef _di_f_int8s_resize_
+  extern f_status_t f_int8s_resize(const f_array_length_t length, f_int8s_t *int8s);
+#endif // _di_f_int8s_resize_
 
 /**
  * Resize the int8ss array.
@@ -186,9 +186,9 @@ extern "C" {
  *   Errors (with error bit) from: f_memory_adjust().
  *   Errors (with error bit) from: f_memory_destroy().
  */
-#ifndef _di_f_type_int8ss_adjust_
-  extern f_status_t f_type_int8ss_adjust(const f_array_length_t length, f_int8ss_t *int8ss);
-#endif // _di_f_type_int8ss_adjust_
+#ifndef _di_f_int8ss_adjust_
+  extern f_status_t f_int8ss_adjust(const f_array_length_t length, f_int8ss_t *int8ss);
+#endif // _di_f_int8ss_adjust_
 
 /**
  * Append the source int8ss onto the destination.
@@ -206,9 +206,9 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  */
-#ifndef _di_f_type_int8ss_append_
-  extern f_status_t f_type_int8ss_append(const f_int8ss_t source, f_int8ss_t *destination);
-#endif // _di_f_type_int8ss_append_
+#ifndef _di_f_int8ss_append_
+  extern f_status_t f_int8ss_append(const f_int8ss_t source, f_int8ss_t *destination);
+#endif // _di_f_int8ss_append_
 
 /**
  * Resize the int8ss array.
@@ -226,9 +226,9 @@ extern "C" {
  *   Errors (with error bit) from: f_memory_adjust().
  *   Errors (with error bit) from: f_memory_destroy().
  */
-#ifndef _di_f_type_int8ss_adjust_
-  extern f_status_t f_type_int8ss_adjust(const f_array_length_t length, f_int8ss_t *int8ss);
-#endif // _di_f_type_int8ss_adjust_
+#ifndef _di_f_int8ss_adjust_
+  extern f_status_t f_int8ss_adjust(const f_array_length_t length, f_int8ss_t *int8ss);
+#endif // _di_f_int8ss_adjust_
 
 /**
  * Resize the int8ss array to a smaller size.
@@ -250,9 +250,9 @@ extern "C" {
  *   Errors (with error bit) from: f_memory_adjust().
  *   Errors (with error bit) from: f_memory_destroy().
  */
-#ifndef _di_f_type_int8ss_decimate_by_
-  extern f_status_t f_type_int8ss_decimate_by(const f_array_length_t amount, f_int8ss_t *int8ss);
-#endif // _di_f_type_int8ss_decimate_by_
+#ifndef _di_f_int8ss_decimate_by_
+  extern f_status_t f_int8ss_decimate_by(const f_array_length_t amount, f_int8ss_t *int8ss);
+#endif // _di_f_int8ss_decimate_by_
 
 /**
  * Resize the int8ss array to a smaller size.
@@ -274,9 +274,9 @@ extern "C" {
  *   Errors (with error bit) from: f_memory_delete().
  *   Errors (with error bit) from: f_memory_resize().
  */
-#ifndef _di_f_type_int8ss_decrease_by_
-  extern f_status_t f_type_int8ss_decrease_by(const f_array_length_t amount, f_int8ss_t *int8ss);
-#endif // _di_f_type_int8ss_decrease_by_
+#ifndef _di_f_int8ss_decrease_by_
+  extern f_status_t f_int8ss_decrease_by(const f_array_length_t amount, f_int8ss_t *int8ss);
+#endif // _di_f_int8ss_decrease_by_
 
 /**
  * Increase the size of the int8ss array, but only if necessary.
@@ -299,9 +299,9 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  */
-#ifndef _di_f_type_int8ss_increase_
-  extern f_status_t f_type_int8ss_increase(const uint16_t step, f_int8ss_t *int8ss);
-#endif // _di_f_type_int8ss_increase_
+#ifndef _di_f_int8ss_increase_
+  extern f_status_t f_int8ss_increase(const uint16_t step, f_int8ss_t *int8ss);
+#endif // _di_f_int8ss_increase_
 
 /**
  * Resize the int8ss array to a larger size.
@@ -324,9 +324,9 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  */
-#ifndef _di_f_type_int8ss_increase_by_
-  extern f_status_t f_type_int8ss_increase_by(const f_array_length_t amount, f_int8ss_t *int8ss);
-#endif // _di_f_type_int8ss_increase_by_
+#ifndef _di_f_int8ss_increase_by_
+  extern f_status_t f_int8ss_increase_by(const f_array_length_t amount, f_int8ss_t *int8ss);
+#endif // _di_f_int8ss_increase_by_
 
 /**
  * Resize the int8ss array.
@@ -344,9 +344,9 @@ extern "C" {
  *   Errors (with error bit) from: f_memory_delete().
  *   Errors (with error bit) from: f_memory_resize().
  */
-#ifndef _di_f_type_int8ss_resize_
-  extern f_status_t f_type_int8ss_resize(const f_array_length_t length, f_int8ss_t *int8ss);
-#endif // _di_f_type_int8ss_resize_
+#ifndef _di_f_int8ss_resize_
+  extern f_status_t f_int8ss_resize(const f_array_length_t length, f_int8ss_t *int8ss);
+#endif // _di_f_int8ss_resize_
 
 /**
  * Resize the string uint8s array.
@@ -363,9 +363,9 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_adjust().
  */
-#ifndef _di_f_type_uint8s_adjust_
-  extern f_status_t f_type_uint8s_adjust(const f_array_length_t length, f_uint8s_t *uint8s);
-#endif // _di_f_type_uint8s_adjust_
+#ifndef _di_f_uint8s_adjust_
+  extern f_status_t f_uint8s_adjust(const f_array_length_t length, f_uint8s_t *uint8s);
+#endif // _di_f_uint8s_adjust_
 
 /**
  * Append the source uint8s onto the destination.
@@ -383,9 +383,9 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  */
-#ifndef _di_f_type_uint8s_append_
-  extern f_status_t f_type_uint8s_append(const f_uint8s_t source, f_uint8s_t *destination);
-#endif // _di_f_type_uint8s_append_
+#ifndef _di_f_uint8s_append_
+  extern f_status_t f_uint8s_append(const f_uint8s_t source, f_uint8s_t *destination);
+#endif // _di_f_uint8s_append_
 
 /**
  * Resize the string uint8s array to a smaller size.
@@ -406,9 +406,9 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_adjust().
  */
-#ifndef _di_f_type_uint8s_decimate_by_
-  extern f_status_t f_type_uint8s_decimate_by(const f_array_length_t amount, f_uint8s_t *uint8s);
-#endif // _di_f_type_uint8s_decimate_by_
+#ifndef _di_f_uint8s_decimate_by_
+  extern f_status_t f_uint8s_decimate_by(const f_array_length_t amount, f_uint8s_t *uint8s);
+#endif // _di_f_uint8s_decimate_by_
 
 /**
  * Resize the string uint8s array to a smaller size.
@@ -429,9 +429,9 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  */
-#ifndef _di_f_type_uint8s_decrease_by_
-  extern f_status_t f_type_uint8s_decrease_by(const f_array_length_t amount, f_uint8s_t *uint8s);
-#endif // _di_f_type_uint8s_decrease_by_
+#ifndef _di_f_uint8s_decrease_by_
+  extern f_status_t f_uint8s_decrease_by(const f_array_length_t amount, f_uint8s_t *uint8s);
+#endif // _di_f_uint8s_decrease_by_
 
 /**
  * Increase the size of the string uint8s array, but only if necesary.
@@ -454,9 +454,9 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  */
-#ifndef _di_f_type_uint8s_increase_
-  extern f_status_t f_type_uint8s_increase(const uint16_t step, f_uint8s_t *uint8s);
-#endif // _di_f_type_uint8s_increase_
+#ifndef _di_f_uint8s_increase_
+  extern f_status_t f_uint8s_increase(const uint16_t step, f_uint8s_t *uint8s);
+#endif // _di_f_uint8s_increase_
 
 /**
  * Resize the string uint8s array to a larger size.
@@ -479,9 +479,9 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  */
-#ifndef _di_f_type_uint8s_increase_by_
-  extern f_status_t f_type_uint8s_increase_by(const f_array_length_t amount, f_uint8s_t *uint8s);
-#endif // _di_f_type_uint8s_increase_by_
+#ifndef _di_f_uint8s_increase_by_
+  extern f_status_t f_uint8s_increase_by(const f_array_length_t amount, f_uint8s_t *uint8s);
+#endif // _di_f_uint8s_increase_by_
 
 /**
  * Resize the string uint8s array.
@@ -498,9 +498,9 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  */
-#ifndef _di_f_type_uint8s_resize_
-  extern f_status_t f_type_uint8s_resize(const f_array_length_t length, f_uint8s_t *uint8s);
-#endif // _di_f_type_uint8s_resize_
+#ifndef _di_f_uint8s_resize_
+  extern f_status_t f_uint8s_resize(const f_array_length_t length, f_uint8s_t *uint8s);
+#endif // _di_f_uint8s_resize_
 
 /**
  * Resize the string uint8ss array.
@@ -518,9 +518,9 @@ extern "C" {
  *   Errors (with error bit) from: f_memory_adjust().
  *   Errors (with error bit) from: f_memory_destroy().
  */
-#ifndef _di_f_type_uint8ss_adjust_
-  extern f_status_t f_type_uint8ss_adjust(const f_array_length_t length, f_uint8ss_t *uint8ss);
-#endif // _di_f_type_uint8ss_adjust_
+#ifndef _di_f_uint8ss_adjust_
+  extern f_status_t f_uint8ss_adjust(const f_array_length_t length, f_uint8ss_t *uint8ss);
+#endif // _di_f_uint8ss_adjust_
 
 /**
  * Append the source uint8ss onto the destination.
@@ -538,9 +538,9 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  */
-#ifndef _di_f_type_uint8ss_append_
-  extern f_status_t f_type_uint8ss_append(const f_uint8ss_t source, f_uint8ss_t *destination);
-#endif // _di_f_type_uint8ss_append_
+#ifndef _di_f_uint8ss_append_
+  extern f_status_t f_uint8ss_append(const f_uint8ss_t source, f_uint8ss_t *destination);
+#endif // _di_f_uint8ss_append_
 
 /**
  * Resize the string uint8ss array.
@@ -558,9 +558,9 @@ extern "C" {
  *   Errors (with error bit) from: f_memory_adjust().
  *   Errors (with error bit) from: f_memory_destroy().
  */
-#ifndef _di_f_type_uint8ss_adjust_
-  extern f_status_t f_type_uint8ss_adjust(const f_array_length_t length, f_uint8ss_t *uint8ss);
-#endif // _di_f_type_uint8ss_adjust_
+#ifndef _di_f_uint8ss_adjust_
+  extern f_status_t f_uint8ss_adjust(const f_array_length_t length, f_uint8ss_t *uint8ss);
+#endif // _di_f_uint8ss_adjust_
 
 /**
  * Resize the string uint8ss array to a smaller size.
@@ -582,9 +582,9 @@ extern "C" {
  *   Errors (with error bit) from: f_memory_adjust().
  *   Errors (with error bit) from: f_memory_destroy().
  */
-#ifndef _di_f_type_uint8ss_decimate_by_
-  extern f_status_t f_type_uint8ss_decimate_by(const f_array_length_t amount, f_uint8ss_t *uint8ss);
-#endif // _di_f_type_uint8ss_decimate_by_
+#ifndef _di_f_uint8ss_decimate_by_
+  extern f_status_t f_uint8ss_decimate_by(const f_array_length_t amount, f_uint8ss_t *uint8ss);
+#endif // _di_f_uint8ss_decimate_by_
 
 /**
  * Resize the string uint8ss array to a smaller size.
@@ -606,9 +606,9 @@ extern "C" {
  *   Errors (with error bit) from: f_memory_delete().
  *   Errors (with error bit) from: f_memory_resize().
  */
-#ifndef _di_f_type_uint8ss_decrease_by_
-  extern f_status_t f_type_uint8ss_decrease_by(const f_array_length_t amount, f_uint8ss_t *uint8ss);
-#endif // _di_f_type_uint8ss_decrease_by_
+#ifndef _di_f_uint8ss_decrease_by_
+  extern f_status_t f_uint8ss_decrease_by(const f_array_length_t amount, f_uint8ss_t *uint8ss);
+#endif // _di_f_uint8ss_decrease_by_
 
 /**
  * Increase the size of the string uint8ss array, but only if necessary.
@@ -631,9 +631,9 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  */
-#ifndef _di_f_type_uint8ss_increase_
-  extern f_status_t f_type_uint8ss_increase(const uint16_t step, f_uint8ss_t *uint8ss);
-#endif // _di_f_type_uint8ss_increase_
+#ifndef _di_f_uint8ss_increase_
+  extern f_status_t f_uint8ss_increase(const uint16_t step, f_uint8ss_t *uint8ss);
+#endif // _di_f_uint8ss_increase_
 
 /**
  * Resize the string uint8ss array to a larger size.
@@ -656,9 +656,9 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  */
-#ifndef _di_f_type_uint8ss_increase_by_
-  extern f_status_t f_type_uint8ss_increase_by(const f_array_length_t amount, f_uint8ss_t *uint8ss);
-#endif // _di_f_type_uint8ss_increase_by_
+#ifndef _di_f_uint8ss_increase_by_
+  extern f_status_t f_uint8ss_increase_by(const f_array_length_t amount, f_uint8ss_t *uint8ss);
+#endif // _di_f_uint8ss_increase_by_
 
 /**
  * Resize the string uint8ss array.
@@ -676,9 +676,9 @@ extern "C" {
  *   Errors (with error bit) from: f_memory_delete().
  *   Errors (with error bit) from: f_memory_resize().
  */
-#ifndef _di_f_type_uint8ss_resize_
-  extern f_status_t f_type_uint8ss_resize(const f_array_length_t length, f_uint8ss_t *uint8ss);
-#endif // _di_f_type_uint8ss_resize_
+#ifndef _di_f_uint8ss_resize_
+  extern f_status_t f_uint8ss_resize(const f_array_length_t length, f_uint8ss_t *uint8ss);
+#endif // _di_f_uint8ss_resize_
 
 #ifdef __cplusplus
 } // extern "C"
index 207732668a5ead99d0ea6dc515d4ba637a919d3f..f83dc8ead27bd963a6977b61d01a605ed044f66d 100644 (file)
@@ -5,8 +5,8 @@
 extern "C" {
 #endif
 
-#if !defined(_di_f_type_array_lengths_adjust_) || !defined(_di_f_type_array_lengths_decimate_by_)
-  f_status_t private_f_type_array_lengths_adjust(const f_array_length_t length, f_array_lengths_t *array_lengths) {
+#if !defined(_di_f_array_lengths_adjust_) || !defined(_di_f_array_lengths_decimate_by_)
+  f_status_t private_f_array_lengths_adjust(const f_array_length_t length, f_array_lengths_t *array_lengths) {
 
     const f_status_t status = f_memory_adjust(array_lengths->size, length, sizeof(f_array_length_t), (void **) & array_lengths->array);
 
@@ -20,15 +20,15 @@ extern "C" {
 
     return status;
   }
-#endif // !defined(_di_f_type_array_lengths_adjust_) || !defined(_di_f_type_array_lengths_decimate_by_)
+#endif // !defined(_di_f_array_lengths_adjust_) || !defined(_di_f_array_lengths_decimate_by_)
 
-#if !defined(_di_f_type_array_lengths_append_) || !defined(_di_f_type_array_lengthss_append_)
-  extern f_status_t private_f_type_array_lengths_append(const f_array_lengths_t source, f_array_lengths_t *destination) {
+#if !defined(_di_f_array_lengths_append_) || !defined(_di_f_array_lengthss_append_)
+  extern f_status_t private_f_array_lengths_append(const f_array_lengths_t source, f_array_lengths_t *destination) {
 
     f_status_t status = F_none;
 
     if (destination->used + source.used > destination->size) {
-      status = private_f_type_array_lengths_adjust(destination->used + source.used, destination);
+      status = private_f_array_lengths_adjust(destination->used + source.used, destination);
       if (F_status_is_error(status)) return status;
     }
 
@@ -38,10 +38,10 @@ extern "C" {
 
     return F_none;
   }
-#endif // !defined(_di_f_type_array_lengths_append_) || !defined(_di_f_type_array_lengthss_append_)
+#endif // !defined(_di_f_array_lengths_append_) || !defined(_di_f_array_lengthss_append_)
 
-#if !defined(_di_f_type_array_lengths_resize_) || !defined(_di_f_type_array_lengths_append_) || !defined(_di_f_type_array_lengths_decimate_by_) || !defined(_di_f_type_array_lengthss_append_)
-  f_status_t private_f_type_array_lengths_resize(const f_array_length_t length, f_array_lengths_t *lengths) {
+#if !defined(_di_f_array_lengths_resize_) || !defined(_di_f_array_lengths_append_) || !defined(_di_f_array_lengths_decimate_by_) || !defined(_di_f_array_lengthss_append_)
+  f_status_t private_f_array_lengths_resize(const f_array_length_t length, f_array_lengths_t *lengths) {
 
     const f_status_t status = f_memory_resize(lengths->size, length, sizeof(f_array_length_t), (void **) & lengths->array);
 
@@ -55,10 +55,10 @@ extern "C" {
 
     return status;
   }
-#endif // !defined(_di_f_type_array_lengths_resize_) || !defined(_di_f_type_array_lengths_append_) || !defined(_di_f_type_array_lengths_decimate_by_) || !defined(_di_f_type_array_lengthss_append_)
+#endif // !defined(_di_f_array_lengths_resize_) || !defined(_di_f_array_lengths_append_) || !defined(_di_f_array_lengths_decimate_by_) || !defined(_di_f_array_lengthss_append_)
 
-#if !defined(_di_f_type_array_lengthss_adjust_) || !defined(_di_f_type_array_lengthss_decimate_by_)
-  f_status_t private_f_type_array_lengthss_adjust(const f_array_length_t length, f_array_lengthss_t *lengthss) {
+#if !defined(_di_f_array_lengthss_adjust_) || !defined(_di_f_array_lengthss_decimate_by_)
+  f_status_t private_f_array_lengthss_adjust(const f_array_length_t length, f_array_lengthss_t *lengthss) {
 
     f_status_t status = F_none;
 
@@ -83,10 +83,10 @@ extern "C" {
 
     return status;
   }
-#endif // !defined(_di_f_type_array_lengthss_adjust_) || !defined(_di_f_type_array_lengthss_decimate_by_)
+#endif // !defined(_di_f_array_lengthss_adjust_) || !defined(_di_f_array_lengthss_decimate_by_)
 
-#if !defined(_di_f_type_array_lengthss_decrease_by_) || !defined(_di_f_type_array_lengthss_increase_) || !defined(_di_f_type_array_lengthss_increase_by_) || !defined(_di_f_type_array_lengthss_resize_)
-  f_status_t private_f_type_array_lengthss_resize(const f_array_length_t length, f_array_lengthss_t *lengthss) {
+#if !defined(_di_f_array_lengthss_decrease_by_) || !defined(_di_f_array_lengthss_increase_) || !defined(_di_f_array_lengthss_increase_by_) || !defined(_di_f_array_lengthss_resize_)
+  f_status_t private_f_array_lengthss_resize(const f_array_length_t length, f_array_lengthss_t *lengthss) {
 
     f_status_t status = F_none;
 
@@ -111,7 +111,7 @@ extern "C" {
 
     return status;
   }
-#endif // !defined(_di_f_type_array_lengthss_decrease_by_) || !defined(_di_f_type_array_lengthss_increase_) || !defined(_di_f_type_array_lengthss_increase_by_) || !defined(_di_f_type_array_lengthss_resize_)
+#endif // !defined(_di_f_array_lengthss_decrease_by_) || !defined(_di_f_array_lengthss_increase_) || !defined(_di_f_array_lengthss_increase_by_) || !defined(_di_f_array_lengthss_resize_)
 
 #ifdef __cplusplus
 } // extern "C"
index 3b632e2e15944271325ac7ebc2873c5985d37f3f..d65214e1a77c6b57cb135a256dcf25247c746dad 100644 (file)
@@ -31,12 +31,12 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_adjust().
  *
- * @see f_type_array_lengths_adjust()
- * @see f_type_array_lengths_decimate_by()
+ * @see f_array_lengths_adjust()
+ * @see f_array_lengths_decimate_by()
  */
-#if !defined(_di_f_type_array_lengths_adjust_) || !defined(_di_f_type_array_lengths_decimate_by_)
-  extern f_status_t private_f_type_array_lengths_adjust(const f_array_length_t length, f_array_lengths_t *lengths) F_attribute_visibility_internal_d;
-#endif // !defined(_di_f_type_array_lengths_adjust_) || !defined(_di_f_type_array_lengths_decimate_by_)
+#if !defined(_di_f_array_lengths_adjust_) || !defined(_di_f_array_lengths_decimate_by_)
+  extern f_status_t private_f_array_lengths_adjust(const f_array_length_t length, f_array_lengths_t *lengths) F_attribute_visibility_internal_d;
+#endif // !defined(_di_f_array_lengths_adjust_) || !defined(_di_f_array_lengths_decimate_by_)
 
 /**
  * Private implementation for appending the array_length array.
@@ -53,12 +53,12 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  *
- * @see f_type_array_lengths_append()
- * @see f_type_array_lengthss_append()
+ * @see f_array_lengths_append()
+ * @see f_array_lengthss_append()
  */
-#if !defined(_di_f_type_array_lengths_append_) || !defined(_di_f_type_array_lengthss_append_)
-  extern f_status_t private_f_type_array_lengths_append(const f_array_lengths_t source, f_array_lengths_t *destination) F_attribute_visibility_internal_d;
-#endif // !defined(_di_f_type_array_lengths_append_) || !defined(_di_f_type_array_lengthss_append_)
+#if !defined(_di_f_array_lengths_append_) || !defined(_di_f_array_lengthss_append_)
+  extern f_status_t private_f_array_lengths_append(const f_array_lengths_t source, f_array_lengths_t *destination) F_attribute_visibility_internal_d;
+#endif // !defined(_di_f_array_lengths_append_) || !defined(_di_f_array_lengthss_append_)
 
 /**
  * Private implementation for resizing the array_lengths array.
@@ -76,14 +76,14 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  *
- * @see f_type_array_lengths_resize()
- * @see f_type_array_lengths_append()
- * @see f_type_array_lengths_decimate_by()
- * @see f_type_array_lengthss_append()
+ * @see f_array_lengths_resize()
+ * @see f_array_lengths_append()
+ * @see f_array_lengths_decimate_by()
+ * @see f_array_lengthss_append()
  */
-#if !defined(_di_f_type_array_lengths_resize_) || !defined(_di_f_type_array_lengths_append_) || !defined(_di_f_type_array_lengths_decimate_by_) || !defined(_di_f_type_array_lengthss_append_)
-  extern f_status_t private_f_type_array_lengths_resize(const f_array_length_t length, f_array_lengths_t *lengths) F_attribute_visibility_internal_d;
-#endif // !defined(_di_f_type_array_lengths_resize_) || !defined(_di_f_type_array_lengths_append_) || !defined(_di_f_type_array_lengths_decimate_by_) || !defined(_di_f_type_array_lengthss_append_)
+#if !defined(_di_f_array_lengths_resize_) || !defined(_di_f_array_lengths_append_) || !defined(_di_f_array_lengths_decimate_by_) || !defined(_di_f_array_lengthss_append_)
+  extern f_status_t private_f_array_lengths_resize(const f_array_length_t length, f_array_lengths_t *lengths) F_attribute_visibility_internal_d;
+#endif // !defined(_di_f_array_lengths_resize_) || !defined(_di_f_array_lengths_append_) || !defined(_di_f_array_lengths_decimate_by_) || !defined(_di_f_array_lengthss_append_)
 
 /**
  * Private implementation for resizing the lengthss array.
@@ -106,12 +106,12 @@ extern "C" {
  *   Errors (with error bit) from: f_memory_adjust().
  *   Errors (with error bit) from: f_memory_destroy().
  *
- * @see f_type_array_lengthss_adjust()
- * @see f_type_array_lengthss_decimate_by()
+ * @see f_array_lengthss_adjust()
+ * @see f_array_lengthss_decimate_by()
  */
-#if !defined(_di_f_type_array_lengthss_adjust_) || !defined(_di_f_type_array_lengthss_decimate_by_)
-  extern f_status_t private_f_type_array_lengthss_adjust(const f_array_length_t length, f_array_lengthss_t *lengthss) F_attribute_visibility_internal_d;
-#endif // !defined(_di_f_type_array_lengthss_adjust_) || !defined(_di_f_type_array_lengthss_decimate_by_)
+#if !defined(_di_f_array_lengthss_adjust_) || !defined(_di_f_array_lengthss_decimate_by_)
+  extern f_status_t private_f_array_lengthss_adjust(const f_array_length_t length, f_array_lengthss_t *lengthss) F_attribute_visibility_internal_d;
+#endif // !defined(_di_f_array_lengthss_adjust_) || !defined(_di_f_array_lengthss_decimate_by_)
 
 /**
  * Private implementation for resizing the lengthss array.
@@ -134,14 +134,14 @@ extern "C" {
  *   Errors (with error bit) from: f_memory_delete().
  *   Errors (with error bit) from: f_memory_resize().
  *
- * @see f_type_array_lengthss_decrease_by()
- * @see f_type_array_lengthss_increase()
- * @see f_type_array_lengthss_increase_by()
- * @see f_type_array_lengthss_resize()
+ * @see f_array_lengthss_decrease_by()
+ * @see f_array_lengthss_increase()
+ * @see f_array_lengthss_increase_by()
+ * @see f_array_lengthss_resize()
  */
-#if !defined(_di_f_type_array_lengthss_decrease_by_) || !defined(_di_f_type_array_lengthss_increase_) || !defined(_di_f_type_array_lengthss_increase_by_) || !defined(_di_f_type_array_lengthss_resize_)
-  extern f_status_t private_f_type_array_lengthss_resize(const f_array_length_t length, f_array_lengthss_t *lengthss) F_attribute_visibility_internal_d;
-#endif // !defined(_di_f_type_array_lengthss_decrease_by_) || !defined(_di_f_type_array_lengthss_increase_) || !defined(_di_f_type_array_lengthss_increase_by_) || !defined(_di_f_type_array_lengthss_resize_)
+#if !defined(_di_f_array_lengthss_decrease_by_) || !defined(_di_f_array_lengthss_increase_) || !defined(_di_f_array_lengthss_increase_by_) || !defined(_di_f_array_lengthss_resize_)
+  extern f_status_t private_f_array_lengthss_resize(const f_array_length_t length, f_array_lengthss_t *lengthss) F_attribute_visibility_internal_d;
+#endif // !defined(_di_f_array_lengthss_decrease_by_) || !defined(_di_f_array_lengthss_increase_) || !defined(_di_f_array_lengthss_increase_by_) || !defined(_di_f_array_lengthss_resize_)
 
 #ifdef __cplusplus
 } // extern "C"
index 66d5258733df1015541a5acca2f1a8aa5e608952..61237d9b7b77dc91109b6bd5d734c52a1118bb02 100644 (file)
@@ -5,8 +5,8 @@
 extern "C" {
 #endif
 
-#if !defined(_di_f_type_cells_adjust_) || !defined(_di_f_type_cells_decimate_by_)
-  f_status_t private_f_type_cells_adjust(const f_array_length_t length, f_cells_t *cells) {
+#if !defined(_di_f_cells_adjust_) || !defined(_di_f_cells_decimate_by_)
+  f_status_t private_f_cells_adjust(const f_array_length_t length, f_cells_t *cells) {
 
     const f_status_t status = f_memory_adjust(cells->size, length, sizeof(f_cell_t), (void **) & cells->array);
 
@@ -20,15 +20,15 @@ extern "C" {
 
     return status;
   }
-#endif // !defined(_di_f_type_cells_adjust_) || !defined(_di_f_type_cells_decimate_by_)
+#endif // !defined(_di_f_cells_adjust_) || !defined(_di_f_cells_decimate_by_)
 
-#if !defined(_di_f_type_cells_append_) || !defined(_di_f_type_cellss_append_)
-  extern f_status_t private_f_type_cells_append(const f_cells_t source, f_cells_t *destination) {
+#if !defined(_di_f_cells_append_) || !defined(_di_f_cellss_append_)
+  extern f_status_t private_f_cells_append(const f_cells_t source, f_cells_t *destination) {
 
     f_status_t status = F_none;
 
     if (destination->used + source.used > destination->size) {
-      status = private_f_type_cells_adjust(destination->used + source.used, destination);
+      status = private_f_cells_adjust(destination->used + source.used, destination);
       if (F_status_is_error(status)) return status;
     }
 
@@ -38,10 +38,10 @@ extern "C" {
 
     return F_none;
   }
-#endif // !defined(_di_f_type_cells_append_) || !defined(_di_f_type_cellss_append_)
+#endif // !defined(_di_f_cells_append_) || !defined(_di_f_cellss_append_)
 
-#if !defined(_di_f_type_cells_resize_) || !defined(_di_f_type_cells_append_) || !defined(_di_f_type_cells_decimate_by_) || !defined(_di_f_type_cellss_append_)
-  f_status_t private_f_type_cells_resize(const f_array_length_t length, f_cells_t *cells) {
+#if !defined(_di_f_cells_resize_) || !defined(_di_f_cells_append_) || !defined(_di_f_cells_decimate_by_) || !defined(_di_f_cellss_append_)
+  f_status_t private_f_cells_resize(const f_array_length_t length, f_cells_t *cells) {
 
     const f_status_t status = f_memory_resize(cells->size, length, sizeof(f_cell_t), (void **) & cells->array);
 
@@ -55,10 +55,10 @@ extern "C" {
 
     return status;
   }
-#endif // !defined(_di_f_type_cells_resize_) || !defined(_di_f_type_cells_append_) || !defined(_di_f_type_cells_decimate_by_) || !defined(_di_f_type_cellss_append_)
+#endif // !defined(_di_f_cells_resize_) || !defined(_di_f_cells_append_) || !defined(_di_f_cells_decimate_by_) || !defined(_di_f_cellss_append_)
 
-#if !defined(_di_f_type_cellss_adjust_) || !defined(_di_f_type_cellss_decimate_by_)
-  f_status_t private_f_type_cellss_adjust(const f_array_length_t length, f_cellss_t *cellss) {
+#if !defined(_di_f_cellss_adjust_) || !defined(_di_f_cellss_decimate_by_)
+  f_status_t private_f_cellss_adjust(const f_array_length_t length, f_cellss_t *cellss) {
 
     f_status_t status = F_none;
 
@@ -83,10 +83,10 @@ extern "C" {
 
     return status;
   }
-#endif // !defined(_di_f_type_cellss_adjust_) || !defined(_di_f_type_cellss_decimate_by_)
+#endif // !defined(_di_f_cellss_adjust_) || !defined(_di_f_cellss_decimate_by_)
 
-#if !defined(_di_f_type_cellss_decrease_by_) || !defined(_di_f_type_cellss_increase_) || !defined(_di_f_type_cellss_increase_by_) || !defined(_di_f_type_cellss_resize_)
-  f_status_t private_f_type_cellss_resize(const f_array_length_t length, f_cellss_t *cellss) {
+#if !defined(_di_f_cellss_decrease_by_) || !defined(_di_f_cellss_increase_) || !defined(_di_f_cellss_increase_by_) || !defined(_di_f_cellss_resize_)
+  f_status_t private_f_cellss_resize(const f_array_length_t length, f_cellss_t *cellss) {
 
     f_status_t status = F_none;
 
@@ -111,7 +111,7 @@ extern "C" {
 
     return status;
   }
-#endif // !defined(_di_f_type_cellss_decrease_by_) || !defined(_di_f_type_cellss_increase_) || !defined(_di_f_type_cellss_increase_by_) || !defined(_di_f_type_cellss_resize_)
+#endif // !defined(_di_f_cellss_decrease_by_) || !defined(_di_f_cellss_increase_) || !defined(_di_f_cellss_increase_by_) || !defined(_di_f_cellss_resize_)
 
 #ifdef __cplusplus
 } // extern "C"
index 2e64328c81dbdca3e9c65902e242634bb94bc1f9..e665dcbb6a53b018baa113cae0d3a626cb25dc50 100644 (file)
@@ -31,12 +31,12 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_adjust().
  *
- * @see f_type_cells_adjust()
- * @see f_type_cells_decimate_by()
+ * @see f_cells_adjust()
+ * @see f_cells_decimate_by()
  */
-#if !defined(_di_f_type_cells_adjust_) || !defined(_di_f_type_cells_decimate_by_)
-  extern f_status_t private_f_type_cells_adjust(const f_array_length_t length, f_cells_t *cells) F_attribute_visibility_internal_d;
-#endif // !defined(_di_f_type_cells_adjust_) || !defined(_di_f_type_cells_decimate_by_)
+#if !defined(_di_f_cells_adjust_) || !defined(_di_f_cells_decimate_by_)
+  extern f_status_t private_f_cells_adjust(const f_array_length_t length, f_cells_t *cells) F_attribute_visibility_internal_d;
+#endif // !defined(_di_f_cells_adjust_) || !defined(_di_f_cells_decimate_by_)
 
 /**
  * Private implementation for appending the cell array.
@@ -53,12 +53,12 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  *
- * @see f_type_cells_append()
- * @see f_type_cellss_append()
+ * @see f_cells_append()
+ * @see f_cellss_append()
  */
-#if !defined(_di_f_type_cells_append_) || !defined(_di_f_type_cellss_append_)
-  extern f_status_t private_f_type_cells_append(const f_cells_t source, f_cells_t *destination) F_attribute_visibility_internal_d;
-#endif // !defined(_di_f_type_cells_append_) || !defined(_di_f_type_cellss_append_)
+#if !defined(_di_f_cells_append_) || !defined(_di_f_cellss_append_)
+  extern f_status_t private_f_cells_append(const f_cells_t source, f_cells_t *destination) F_attribute_visibility_internal_d;
+#endif // !defined(_di_f_cells_append_) || !defined(_di_f_cellss_append_)
 
 /**
  * Private implementation for resizing the cells array.
@@ -76,14 +76,14 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  *
- * @see f_type_cells_resize()
- * @see f_type_cells_append()
- * @see f_type_cells_decimate_by()
- * @see f_type_cellss_append()
+ * @see f_cells_resize()
+ * @see f_cells_append()
+ * @see f_cells_decimate_by()
+ * @see f_cellss_append()
  */
-#if !defined(_di_f_type_cells_resize_) || !defined(_di_f_type_cells_append_) || !defined(_di_f_type_cells_decimate_by_) || !defined(_di_f_type_cellss_append_)
-  extern f_status_t private_f_type_cells_resize(const f_array_length_t length, f_cells_t *cells) F_attribute_visibility_internal_d;
-#endif // !defined(_di_f_type_cells_resize_) || !defined(_di_f_type_cells_append_) || !defined(_di_f_type_cells_decimate_by_) || !defined(_di_f_type_cellss_append_)
+#if !defined(_di_f_cells_resize_) || !defined(_di_f_cells_append_) || !defined(_di_f_cells_decimate_by_) || !defined(_di_f_cellss_append_)
+  extern f_status_t private_f_cells_resize(const f_array_length_t length, f_cells_t *cells) F_attribute_visibility_internal_d;
+#endif // !defined(_di_f_cells_resize_) || !defined(_di_f_cells_append_) || !defined(_di_f_cells_decimate_by_) || !defined(_di_f_cellss_append_)
 
 /**
  * Private implementation for resizing the cellss array.
@@ -106,12 +106,12 @@ extern "C" {
  *   Errors (with error bit) from: f_memory_adjust().
  *   Errors (with error bit) from: f_memory_destroy().
  *
- * @see f_type_cellss_adjust()
- * @see f_type_cellss_decimate_by()
+ * @see f_cellss_adjust()
+ * @see f_cellss_decimate_by()
  */
-#if !defined(_di_f_type_cellss_adjust_) || !defined(_di_f_type_cellss_decimate_by_)
-  extern f_status_t private_f_type_cellss_adjust(const f_array_length_t length, f_cellss_t *cellss) F_attribute_visibility_internal_d;
-#endif // !defined(_di_f_type_cellss_adjust_) || !defined(_di_f_type_cellss_decimate_by_)
+#if !defined(_di_f_cellss_adjust_) || !defined(_di_f_cellss_decimate_by_)
+  extern f_status_t private_f_cellss_adjust(const f_array_length_t length, f_cellss_t *cellss) F_attribute_visibility_internal_d;
+#endif // !defined(_di_f_cellss_adjust_) || !defined(_di_f_cellss_decimate_by_)
 
 /**
  * Private implementation for resizing the cellss array.
@@ -134,14 +134,14 @@ extern "C" {
  *   Errors (with error bit) from: f_memory_delete().
  *   Errors (with error bit) from: f_memory_resize().
  *
- * @see f_type_cellss_decrease_by()
- * @see f_type_cellss_increase()
- * @see f_type_cellss_increase_by()
- * @see f_type_cellss_resize()
+ * @see f_cellss_decrease_by()
+ * @see f_cellss_increase()
+ * @see f_cellss_increase_by()
+ * @see f_cellss_resize()
  */
-#if !defined(_di_f_type_cellss_decrease_by_) || !defined(_di_f_type_cellss_increase_) || !defined(_di_f_type_cellss_increase_by_) || !defined(_di_f_type_cellss_resize_)
-  extern f_status_t private_f_type_cellss_resize(const f_array_length_t length, f_cellss_t *cellss) F_attribute_visibility_internal_d;
-#endif // !defined(_di_f_type_cellss_decrease_by_) || !defined(_di_f_type_cellss_increase_) || !defined(_di_f_type_cellss_increase_by_) || !defined(_di_f_type_cellss_resize_)
+#if !defined(_di_f_cellss_decrease_by_) || !defined(_di_f_cellss_increase_) || !defined(_di_f_cellss_increase_by_) || !defined(_di_f_cellss_resize_)
+  extern f_status_t private_f_cellss_resize(const f_array_length_t length, f_cellss_t *cellss) F_attribute_visibility_internal_d;
+#endif // !defined(_di_f_cellss_decrease_by_) || !defined(_di_f_cellss_increase_) || !defined(_di_f_cellss_increase_by_) || !defined(_di_f_cellss_resize_)
 
 #ifdef __cplusplus
 } // extern "C"
index 8b9679ebe062e3deff7ddd60055fd24aa35f7e3c..42deb316ba60fde2838f823fb52e32cd7944a5af 100644 (file)
@@ -5,8 +5,8 @@
 extern "C" {
 #endif
 
-#if !defined(_di_f_type_fll_ids_adjust_) || !defined(_di_f_type_fll_ids_decimate_by_)
-  f_status_t private_f_type_fll_ids_adjust(const f_array_length_t length, f_fll_ids_t *ids) {
+#if !defined(_di_f_fll_ids_adjust_) || !defined(_di_f_fll_ids_decimate_by_)
+  f_status_t private_f_fll_ids_adjust(const f_array_length_t length, f_fll_ids_t *ids) {
 
     const f_status_t status = f_memory_adjust(ids->size, length, sizeof(f_fll_id_t), (void **) & ids->array);
 
@@ -20,15 +20,15 @@ extern "C" {
 
     return status;
   }
-#endif // !defined(_di_f_type_fll_ids_adjust_) || !defined(_di_f_type_fll_ids_decimate_by_)
+#endif // !defined(_di_f_fll_ids_adjust_) || !defined(_di_f_fll_ids_decimate_by_)
 
-#if !defined(_di_f_type_fll_ids_append_) || !defined(_di_f_type_fll_idss_append_)
-  extern f_status_t private_f_type_fll_ids_append(const f_fll_ids_t source, f_fll_ids_t *destination) {
+#if !defined(_di_f_fll_ids_append_) || !defined(_di_f_fll_idss_append_)
+  extern f_status_t private_f_fll_ids_append(const f_fll_ids_t source, f_fll_ids_t *destination) {
 
     f_status_t status = F_none;
 
     if (destination->used + source.used > destination->size) {
-      status = private_f_type_fll_ids_adjust(destination->used + source.used, destination);
+      status = private_f_fll_ids_adjust(destination->used + source.used, destination);
       if (F_status_is_error(status)) return status;
     }
 
@@ -38,10 +38,10 @@ extern "C" {
 
     return F_none;
   }
-#endif // !defined(_di_f_type_fll_ids_append_) || !defined(_di_f_type_fll_idss_append_)
+#endif // !defined(_di_f_fll_ids_append_) || !defined(_di_f_fll_idss_append_)
 
-#if !defined(_di_f_type_fll_ids_resize_) || !defined(_di_f_type_fll_ids_append_) || !defined(_di_f_type_fll_ids_decimate_by_) || !defined(_di_f_type_fll_idss_append_)
-  f_status_t private_f_type_fll_ids_resize(const f_array_length_t length, f_fll_ids_t *ids) {
+#if !defined(_di_f_fll_ids_resize_) || !defined(_di_f_fll_ids_append_) || !defined(_di_f_fll_ids_decimate_by_) || !defined(_di_f_fll_idss_append_)
+  f_status_t private_f_fll_ids_resize(const f_array_length_t length, f_fll_ids_t *ids) {
 
     const f_status_t status = f_memory_resize(ids->size, length, sizeof(f_fll_id_t), (void **) & ids->array);
 
@@ -55,10 +55,10 @@ extern "C" {
 
     return status;
   }
-#endif // !defined(_di_f_type_fll_ids_resize_) || !defined(_di_f_type_fll_ids_append_) || !defined(_di_f_type_fll_ids_decimate_by_) || !defined(_di_f_type_fll_idss_append_)
+#endif // !defined(_di_f_fll_ids_resize_) || !defined(_di_f_fll_ids_append_) || !defined(_di_f_fll_ids_decimate_by_) || !defined(_di_f_fll_idss_append_)
 
-#if !defined(_di_f_type_fll_idss_adjust_) || !defined(_di_f_type_fll_idss_decimate_by_)
-  f_status_t private_f_type_fll_idss_adjust(const f_array_length_t length, f_fll_idss_t *idss) {
+#if !defined(_di_f_fll_idss_adjust_) || !defined(_di_f_fll_idss_decimate_by_)
+  f_status_t private_f_fll_idss_adjust(const f_array_length_t length, f_fll_idss_t *idss) {
 
     f_status_t status = F_none;
 
@@ -83,10 +83,10 @@ extern "C" {
 
     return status;
   }
-#endif // !defined(_di_f_type_fll_idss_adjust_) || !defined(_di_f_type_fll_idss_decimate_by_)
+#endif // !defined(_di_f_fll_idss_adjust_) || !defined(_di_f_fll_idss_decimate_by_)
 
-#if !defined(_di_f_type_fll_idss_decrease_by_) || !defined(_di_f_type_fll_idss_increase_) || !defined(_di_f_type_fll_idss_increase_by_) || !defined(_di_f_type_fll_idss_resize_)
-  f_status_t private_f_type_fll_idss_resize(const f_array_length_t length, f_fll_idss_t *idss) {
+#if !defined(_di_f_fll_idss_decrease_by_) || !defined(_di_f_fll_idss_increase_) || !defined(_di_f_fll_idss_increase_by_) || !defined(_di_f_fll_idss_resize_)
+  f_status_t private_f_fll_idss_resize(const f_array_length_t length, f_fll_idss_t *idss) {
 
     f_status_t status = F_none;
 
@@ -111,7 +111,7 @@ extern "C" {
 
     return status;
   }
-#endif // !defined(_di_f_type_fll_idss_decrease_by_) || !defined(_di_f_type_fll_idss_increase_) || !defined(_di_f_type_fll_idss_increase_by_) || !defined(_di_f_type_fll_idss_resize_)
+#endif // !defined(_di_f_fll_idss_decrease_by_) || !defined(_di_f_fll_idss_increase_) || !defined(_di_f_fll_idss_increase_by_) || !defined(_di_f_fll_idss_resize_)
 
 #ifdef __cplusplus
 } // extern "C"
index 65c92b2f0e6c725fd20101ebe62812fdaf0c6f7c..2e98e1509129a35c2d0bdf1539a874d921df8e11 100644 (file)
@@ -31,12 +31,12 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_adjust().
  *
- * @see f_type_statuss_adjust()
- * @see f_type_statuss_decimate_by()
+ * @see f_statuss_adjust()
+ * @see f_statuss_decimate_by()
  */
-#if !defined(_di_f_type_statuss_adjust_) || !defined(_di_f_type_statuss_decimate_by_)
-  extern f_status_t private_f_type_statuss_adjust(const f_array_length_t length, f_statuss_t *statuss) F_attribute_visibility_internal_d;
-#endif // !defined(_di_f_type_statuss_adjust_) || !defined(_di_f_type_statuss_decimate_by_)
+#if !defined(_di_f_statuss_adjust_) || !defined(_di_f_statuss_decimate_by_)
+  extern f_status_t private_f_statuss_adjust(const f_array_length_t length, f_statuss_t *statuss) F_attribute_visibility_internal_d;
+#endif // !defined(_di_f_statuss_adjust_) || !defined(_di_f_statuss_decimate_by_)
 
 /**
  * Private implementation for appending the status array.
@@ -53,12 +53,12 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  *
- * @see f_type_statuss_append()
- * @see f_type_statusss_append()
+ * @see f_statuss_append()
+ * @see f_statusss_append()
  */
-#if !defined(_di_f_type_statuss_append_) || !defined(_di_f_type_statusss_append_)
-  extern f_status_t private_f_type_statuss_append(const f_statuss_t source, f_statuss_t *destination) F_attribute_visibility_internal_d;
-#endif // !defined(_di_f_type_statuss_append_) || !defined(_di_f_type_statusss_append_)
+#if !defined(_di_f_statuss_append_) || !defined(_di_f_statusss_append_)
+  extern f_status_t private_f_statuss_append(const f_statuss_t source, f_statuss_t *destination) F_attribute_visibility_internal_d;
+#endif // !defined(_di_f_statuss_append_) || !defined(_di_f_statusss_append_)
 
 /**
  * Private implementation for resizing the statuss array.
@@ -76,14 +76,14 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  *
- * @see f_type_statuss_resize()
- * @see f_type_statuss_append()
- * @see f_type_statuss_decimate_by()
- * @see f_type_statusss_append()
+ * @see f_statuss_resize()
+ * @see f_statuss_append()
+ * @see f_statuss_decimate_by()
+ * @see f_statusss_append()
  */
-#if !defined(_di_f_type_statuss_resize_) || !defined(_di_f_type_statuss_append_) || !defined(_di_f_type_statuss_decimate_by_) || !defined(_di_f_type_statusss_append_)
-  extern f_status_t private_f_type_statuss_resize(const f_array_length_t length, f_statuss_t *statuss) F_attribute_visibility_internal_d;
-#endif // !defined(_di_f_type_statuss_resize_) || !defined(_di_f_type_statuss_append_) || !defined(_di_f_type_statuss_decimate_by_) || !defined(_di_f_type_statusss_append_)
+#if !defined(_di_f_statuss_resize_) || !defined(_di_f_statuss_append_) || !defined(_di_f_statuss_decimate_by_) || !defined(_di_f_statusss_append_)
+  extern f_status_t private_f_statuss_resize(const f_array_length_t length, f_statuss_t *statuss) F_attribute_visibility_internal_d;
+#endif // !defined(_di_f_statuss_resize_) || !defined(_di_f_statuss_append_) || !defined(_di_f_statuss_decimate_by_) || !defined(_di_f_statusss_append_)
 
 /**
  * Private implementation for resizing the statusss array.
@@ -106,12 +106,12 @@ extern "C" {
  *   Errors (with error bit) from: f_memory_adjust().
  *   Errors (with error bit) from: f_memory_destroy().
  *
- * @see f_type_statusss_adjust()
- * @see f_type_statusss_decimate_by()
+ * @see f_statusss_adjust()
+ * @see f_statusss_decimate_by()
  */
-#if !defined(_di_f_type_statusss_adjust_) || !defined(_di_f_type_statusss_decimate_by_)
-  extern f_status_t private_f_type_statusss_adjust(const f_array_length_t length, f_statusss_t *statusss) F_attribute_visibility_internal_d;
-#endif // !defined(_di_f_type_statusss_adjust_) || !defined(_di_f_type_statusss_decimate_by_)
+#if !defined(_di_f_statusss_adjust_) || !defined(_di_f_statusss_decimate_by_)
+  extern f_status_t private_f_statusss_adjust(const f_array_length_t length, f_statusss_t *statusss) F_attribute_visibility_internal_d;
+#endif // !defined(_di_f_statusss_adjust_) || !defined(_di_f_statusss_decimate_by_)
 
 /**
  * Private implementation for resizing the statusss array.
@@ -134,14 +134,14 @@ extern "C" {
  *   Errors (with error bit) from: f_memory_delete().
  *   Errors (with error bit) from: f_memory_resize().
  *
- * @see f_type_statusss_decrease_by()
- * @see f_type_statusss_increase()
- * @see f_type_statusss_increase_by()
- * @see f_type_statusss_resize()
+ * @see f_statusss_decrease_by()
+ * @see f_statusss_increase()
+ * @see f_statusss_increase_by()
+ * @see f_statusss_resize()
  */
-#if !defined(_di_f_type_statusss_decrease_by_) || !defined(_di_f_type_statusss_increase_) || !defined(_di_f_type_statusss_increase_by_) || !defined(_di_f_type_statusss_resize_)
-  extern f_status_t private_f_type_statusss_resize(const f_array_length_t length, f_statusss_t *statusss) F_attribute_visibility_internal_d;
-#endif // !defined(_di_f_type_statusss_decrease_by_) || !defined(_di_f_type_statusss_increase_) || !defined(_di_f_type_statusss_increase_by_) || !defined(_di_f_type_statusss_resize_)
+#if !defined(_di_f_statusss_decrease_by_) || !defined(_di_f_statusss_increase_) || !defined(_di_f_statusss_increase_by_) || !defined(_di_f_statusss_resize_)
+  extern f_status_t private_f_statusss_resize(const f_array_length_t length, f_statusss_t *statusss) F_attribute_visibility_internal_d;
+#endif // !defined(_di_f_statusss_decrease_by_) || !defined(_di_f_statusss_increase_) || !defined(_di_f_statusss_increase_by_) || !defined(_di_f_statusss_resize_)
 
 /**
  * Private implementation for resizing the states array.
@@ -159,12 +159,12 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_adjust().
  *
- * @see f_type_states_adjust()
- * @see f_type_states_decimate_by()
+ * @see f_states_adjust()
+ * @see f_states_decimate_by()
  */
-#if !defined(_di_f_type_states_adjust_) || !defined(_di_f_type_states_decimate_by_)
-  extern f_status_t private_f_type_states_adjust(const f_array_length_t length, f_states_t *states) F_attribute_visibility_internal_d;
-#endif // !defined(_di_f_type_states_adjust_) || !defined(_di_f_type_states_decimate_by_)
+#if !defined(_di_f_states_adjust_) || !defined(_di_f_states_decimate_by_)
+  extern f_status_t private_f_states_adjust(const f_array_length_t length, f_states_t *states) F_attribute_visibility_internal_d;
+#endif // !defined(_di_f_states_adjust_) || !defined(_di_f_states_decimate_by_)
 
 /**
  * Private implementation for appending the state array.
@@ -181,12 +181,12 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  *
- * @see f_type_states_append()
- * @see f_type_statess_append()
+ * @see f_states_append()
+ * @see f_statess_append()
  */
-#if !defined(_di_f_type_states_append_) || !defined(_di_f_type_statess_append_)
-  extern f_status_t private_f_type_states_append(const f_states_t source, f_states_t *destination) F_attribute_visibility_internal_d;
-#endif // !defined(_di_f_type_states_append_) || !defined(_di_f_type_statess_append_)
+#if !defined(_di_f_states_append_) || !defined(_di_f_statess_append_)
+  extern f_status_t private_f_states_append(const f_states_t source, f_states_t *destination) F_attribute_visibility_internal_d;
+#endif // !defined(_di_f_states_append_) || !defined(_di_f_statess_append_)
 
 /**
  * Private implementation for resizing the states array.
@@ -204,14 +204,14 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  *
- * @see f_type_states_resize()
- * @see f_type_states_append()
- * @see f_type_states_decimate_by()
- * @see f_type_statess_append()
+ * @see f_states_resize()
+ * @see f_states_append()
+ * @see f_states_decimate_by()
+ * @see f_statess_append()
  */
-#if !defined(_di_f_type_states_resize_) || !defined(_di_f_type_states_append_) || !defined(_di_f_type_states_decimate_by_) || !defined(_di_f_type_statess_append_)
-  extern f_status_t private_f_type_states_resize(const f_array_length_t length, f_states_t *states) F_attribute_visibility_internal_d;
-#endif // !defined(_di_f_type_states_resize_) || !defined(_di_f_type_states_append_) || !defined(_di_f_type_states_decimate_by_) || !defined(_di_f_type_statess_append_)
+#if !defined(_di_f_states_resize_) || !defined(_di_f_states_append_) || !defined(_di_f_states_decimate_by_) || !defined(_di_f_statess_append_)
+  extern f_status_t private_f_states_resize(const f_array_length_t length, f_states_t *states) F_attribute_visibility_internal_d;
+#endif // !defined(_di_f_states_resize_) || !defined(_di_f_states_append_) || !defined(_di_f_states_decimate_by_) || !defined(_di_f_statess_append_)
 
 /**
  * Private implementation for resizing the statess array.
@@ -234,12 +234,12 @@ extern "C" {
  *   Errors (with error bit) from: f_memory_adjust().
  *   Errors (with error bit) from: f_memory_destroy().
  *
- * @see f_type_statess_adjust()
- * @see f_type_statess_decimate_by()
+ * @see f_statess_adjust()
+ * @see f_statess_decimate_by()
  */
-#if !defined(_di_f_type_statess_adjust_) || !defined(_di_f_type_statess_decimate_by_)
-  extern f_status_t private_f_type_statess_adjust(const f_array_length_t length, f_statess_t *statess) F_attribute_visibility_internal_d;
-#endif // !defined(_di_f_type_statess_adjust_) || !defined(_di_f_type_statess_decimate_by_)
+#if !defined(_di_f_statess_adjust_) || !defined(_di_f_statess_decimate_by_)
+  extern f_status_t private_f_statess_adjust(const f_array_length_t length, f_statess_t *statess) F_attribute_visibility_internal_d;
+#endif // !defined(_di_f_statess_adjust_) || !defined(_di_f_statess_decimate_by_)
 
 /**
  * Private implementation for resizing the statess array.
@@ -262,14 +262,14 @@ extern "C" {
  *   Errors (with error bit) from: f_memory_delete().
  *   Errors (with error bit) from: f_memory_resize().
  *
- * @see f_type_statess_decrease_by()
- * @see f_type_statess_increase()
- * @see f_type_statess_increase_by()
- * @see f_type_statess_resize()
+ * @see f_statess_decrease_by()
+ * @see f_statess_increase()
+ * @see f_statess_increase_by()
+ * @see f_statess_resize()
  */
-#if !defined(_di_f_type_statess_decrease_by_) || !defined(_di_f_type_statess_increase_) || !defined(_di_f_type_statess_increase_by_) || !defined(_di_f_type_statess_resize_)
-  extern f_status_t private_f_type_statess_resize(const f_array_length_t length, f_statess_t *statess) F_attribute_visibility_internal_d;
-#endif // !defined(_di_f_type_statess_decrease_by_) || !defined(_di_f_type_statess_increase_) || !defined(_di_f_type_statess_increase_by_) || !defined(_di_f_type_statess_resize_)
+#if !defined(_di_f_statess_decrease_by_) || !defined(_di_f_statess_increase_) || !defined(_di_f_statess_increase_by_) || !defined(_di_f_statess_resize_)
+  extern f_status_t private_f_statess_resize(const f_array_length_t length, f_statess_t *statess) F_attribute_visibility_internal_d;
+#endif // !defined(_di_f_statess_decrease_by_) || !defined(_di_f_statess_increase_) || !defined(_di_f_statess_increase_by_) || !defined(_di_f_statess_resize_)
 
 /**
  * Private implementation for resizing the cells array.
@@ -287,12 +287,12 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_adjust().
  *
- * @see f_type_cells_adjust()
- * @see f_type_cells_decimate_by()
+ * @see f_cells_adjust()
+ * @see f_cells_decimate_by()
  */
-#if !defined(_di_f_type_cells_adjust_) || !defined(_di_f_type_cells_decimate_by_)
-  extern f_status_t private_f_type_cells_adjust(const f_array_length_t length, f_cells_t *cells) F_attribute_visibility_internal_d;
-#endif // !defined(_di_f_type_cells_adjust_) || !defined(_di_f_type_cells_decimate_by_)
+#if !defined(_di_f_cells_adjust_) || !defined(_di_f_cells_decimate_by_)
+  extern f_status_t private_f_cells_adjust(const f_array_length_t length, f_cells_t *cells) F_attribute_visibility_internal_d;
+#endif // !defined(_di_f_cells_adjust_) || !defined(_di_f_cells_decimate_by_)
 
 /**
  * Private implementation for appending the cell array.
@@ -309,12 +309,12 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  *
- * @see f_type_cells_append()
- * @see f_type_cellss_append()
+ * @see f_cells_append()
+ * @see f_cellss_append()
  */
-#if !defined(_di_f_type_cells_append_) || !defined(_di_f_type_cellss_append_)
-  extern f_status_t private_f_type_cells_append(const f_cells_t source, f_cells_t *destination) F_attribute_visibility_internal_d;
-#endif // !defined(_di_f_type_cells_append_) || !defined(_di_f_type_cellss_append_)
+#if !defined(_di_f_cells_append_) || !defined(_di_f_cellss_append_)
+  extern f_status_t private_f_cells_append(const f_cells_t source, f_cells_t *destination) F_attribute_visibility_internal_d;
+#endif // !defined(_di_f_cells_append_) || !defined(_di_f_cellss_append_)
 
 /**
  * Private implementation for resizing the cells array.
@@ -332,14 +332,14 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  *
- * @see f_type_cells_resize()
- * @see f_type_cells_append()
- * @see f_type_cells_decimate_by()
- * @see f_type_cellss_append()
+ * @see f_cells_resize()
+ * @see f_cells_append()
+ * @see f_cells_decimate_by()
+ * @see f_cellss_append()
  */
-#if !defined(_di_f_type_cells_resize_) || !defined(_di_f_type_cells_append_) || !defined(_di_f_type_cells_decimate_by_) || !defined(_di_f_type_cellss_append_)
-  extern f_status_t private_f_type_cells_resize(const f_array_length_t length, f_cells_t *cells) F_attribute_visibility_internal_d;
-#endif // !defined(_di_f_type_cells_resize_) || !defined(_di_f_type_cells_append_) || !defined(_di_f_type_cells_decimate_by_) || !defined(_di_f_type_cellss_append_)
+#if !defined(_di_f_cells_resize_) || !defined(_di_f_cells_append_) || !defined(_di_f_cells_decimate_by_) || !defined(_di_f_cellss_append_)
+  extern f_status_t private_f_cells_resize(const f_array_length_t length, f_cells_t *cells) F_attribute_visibility_internal_d;
+#endif // !defined(_di_f_cells_resize_) || !defined(_di_f_cells_append_) || !defined(_di_f_cells_decimate_by_) || !defined(_di_f_cellss_append_)
 
 /**
  * Private implementation for resizing the cellss array.
@@ -362,12 +362,12 @@ extern "C" {
  *   Errors (with error bit) from: f_memory_adjust().
  *   Errors (with error bit) from: f_memory_destroy().
  *
- * @see f_type_cellss_adjust()
- * @see f_type_cellss_decimate_by()
+ * @see f_cellss_adjust()
+ * @see f_cellss_decimate_by()
  */
-#if !defined(_di_f_type_cellss_adjust_) || !defined(_di_f_type_cellss_decimate_by_)
-  extern f_status_t private_f_type_cellss_adjust(const f_array_length_t length, f_cellss_t *cellss) F_attribute_visibility_internal_d;
-#endif // !defined(_di_f_type_cellss_adjust_) || !defined(_di_f_type_cellss_decimate_by_)
+#if !defined(_di_f_cellss_adjust_) || !defined(_di_f_cellss_decimate_by_)
+  extern f_status_t private_f_cellss_adjust(const f_array_length_t length, f_cellss_t *cellss) F_attribute_visibility_internal_d;
+#endif // !defined(_di_f_cellss_adjust_) || !defined(_di_f_cellss_decimate_by_)
 
 /**
  * Private implementation for resizing the cellss array.
@@ -390,14 +390,14 @@ extern "C" {
  *   Errors (with error bit) from: f_memory_delete().
  *   Errors (with error bit) from: f_memory_resize().
  *
- * @see f_type_cellss_decrease_by()
- * @see f_type_cellss_increase()
- * @see f_type_cellss_increase_by()
- * @see f_type_cellss_resize()
+ * @see f_cellss_decrease_by()
+ * @see f_cellss_increase()
+ * @see f_cellss_increase_by()
+ * @see f_cellss_resize()
  */
-#if !defined(_di_f_type_cellss_decrease_by_) || !defined(_di_f_type_cellss_increase_) || !defined(_di_f_type_cellss_increase_by_) || !defined(_di_f_type_cellss_resize_)
-  extern f_status_t private_f_type_cellss_resize(const f_array_length_t length, f_cellss_t *cellss) F_attribute_visibility_internal_d;
-#endif // !defined(_di_f_type_cellss_decrease_by_) || !defined(_di_f_type_cellss_increase_) || !defined(_di_f_type_cellss_increase_by_) || !defined(_di_f_type_cellss_resize_)
+#if !defined(_di_f_cellss_decrease_by_) || !defined(_di_f_cellss_increase_) || !defined(_di_f_cellss_increase_by_) || !defined(_di_f_cellss_resize_)
+  extern f_status_t private_f_cellss_resize(const f_array_length_t length, f_cellss_t *cellss) F_attribute_visibility_internal_d;
+#endif // !defined(_di_f_cellss_decrease_by_) || !defined(_di_f_cellss_increase_) || !defined(_di_f_cellss_increase_by_) || !defined(_di_f_cellss_resize_)
 
 /**
  * Private implementation for resizing the ids array.
@@ -415,12 +415,12 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_adjust().
  *
- * @see f_type_fll_ids_adjust()
- * @see f_type_fll_ids_decimate_by()
+ * @see f_fll_ids_adjust()
+ * @see f_fll_ids_decimate_by()
  */
-#if !defined(_di_f_type_fll_ids_adjust_) || !defined(_di_f_type_fll_ids_decimate_by_)
-  extern f_status_t private_f_type_fll_ids_adjust(const f_array_length_t length, f_fll_ids_t *ids) F_attribute_visibility_internal_d;
-#endif // !defined(_di_f_type_fll_ids_adjust_) || !defined(_di_f_type_fll_ids_decimate_by_)
+#if !defined(_di_f_fll_ids_adjust_) || !defined(_di_f_fll_ids_decimate_by_)
+  extern f_status_t private_f_fll_ids_adjust(const f_array_length_t length, f_fll_ids_t *ids) F_attribute_visibility_internal_d;
+#endif // !defined(_di_f_fll_ids_adjust_) || !defined(_di_f_fll_ids_decimate_by_)
 
 /**
  * Private implementation for appending the fll_id array.
@@ -437,12 +437,12 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  *
- * @see f_type_fll_ids_append()
- * @see f_type_fll_idss_append()
+ * @see f_fll_ids_append()
+ * @see f_fll_idss_append()
  */
-#if !defined(_di_f_type_fll_ids_append_) || !defined(_di_f_type_fll_idss_append_)
-  extern f_status_t private_f_type_fll_ids_append(const f_fll_ids_t source, f_fll_ids_t *destination) F_attribute_visibility_internal_d;
-#endif // !defined(_di_f_type_fll_ids_append_) || !defined(_di_f_type_fll_idss_append_)
+#if !defined(_di_f_fll_ids_append_) || !defined(_di_f_fll_idss_append_)
+  extern f_status_t private_f_fll_ids_append(const f_fll_ids_t source, f_fll_ids_t *destination) F_attribute_visibility_internal_d;
+#endif // !defined(_di_f_fll_ids_append_) || !defined(_di_f_fll_idss_append_)
 
 /**
  * Private implementation for resizing the ids array.
@@ -460,14 +460,14 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  *
- * @see f_type_fll_ids_resize()
- * @see f_type_fll_ids_append()
- * @see f_type_fll_ids_decimate_by()
- * @see f_type_fll_idss_append()
+ * @see f_fll_ids_resize()
+ * @see f_fll_ids_append()
+ * @see f_fll_ids_decimate_by()
+ * @see f_fll_idss_append()
  */
-#if !defined(_di_f_type_fll_ids_resize_) || !defined(_di_f_type_fll_ids_append_) || !defined(_di_f_type_fll_ids_decimate_by_) || !defined(_di_f_type_fll_idss_append_)
-  extern f_status_t private_f_type_fll_ids_resize(const f_array_length_t length, f_fll_ids_t *ids) F_attribute_visibility_internal_d;
-#endif // !defined(_di_f_type_fll_ids_resize_) || !defined(_di_f_type_fll_ids_append_) || !defined(_di_f_type_fll_ids_decimate_by_) || !defined(_di_f_type_fll_idss_append_)
+#if !defined(_di_f_fll_ids_resize_) || !defined(_di_f_fll_ids_append_) || !defined(_di_f_fll_ids_decimate_by_) || !defined(_di_f_fll_idss_append_)
+  extern f_status_t private_f_fll_ids_resize(const f_array_length_t length, f_fll_ids_t *ids) F_attribute_visibility_internal_d;
+#endif // !defined(_di_f_fll_ids_resize_) || !defined(_di_f_fll_ids_append_) || !defined(_di_f_fll_ids_decimate_by_) || !defined(_di_f_fll_idss_append_)
 
 /**
  * Private implementation for resizing the idss array.
@@ -490,12 +490,12 @@ extern "C" {
  *   Errors (with error bit) from: f_memory_adjust().
  *   Errors (with error bit) from: f_memory_destroy().
  *
- * @see f_type_fll_idss_adjust()
- * @see f_type_fll_idss_decimate_by()
+ * @see f_fll_idss_adjust()
+ * @see f_fll_idss_decimate_by()
  */
-#if !defined(_di_f_type_fll_idss_adjust_) || !defined(_di_f_type_fll_idss_decimate_by_)
-  extern f_status_t private_f_type_fll_idss_adjust(const f_array_length_t length, f_fll_idss_t *idss) F_attribute_visibility_internal_d;
-#endif // !defined(_di_f_type_fll_idss_adjust_) || !defined(_di_f_type_fll_idss_decimate_by_)
+#if !defined(_di_f_fll_idss_adjust_) || !defined(_di_f_fll_idss_decimate_by_)
+  extern f_status_t private_f_fll_idss_adjust(const f_array_length_t length, f_fll_idss_t *idss) F_attribute_visibility_internal_d;
+#endif // !defined(_di_f_fll_idss_adjust_) || !defined(_di_f_fll_idss_decimate_by_)
 
 /**
  * Private implementation for resizing the idss array.
@@ -518,14 +518,14 @@ extern "C" {
  *   Errors (with error bit) from: f_memory_delete().
  *   Errors (with error bit) from: f_memory_resize().
  *
- * @see f_type_fll_idss_decrease_by()
- * @see f_type_fll_idss_increase()
- * @see f_type_fll_idss_increase_by()
- * @see f_type_fll_idss_resize()
+ * @see f_fll_idss_decrease_by()
+ * @see f_fll_idss_increase()
+ * @see f_fll_idss_increase_by()
+ * @see f_fll_idss_resize()
  */
-#if !defined(_di_f_type_fll_idss_decrease_by_) || !defined(_di_f_type_fll_idss_increase_) || !defined(_di_f_type_fll_idss_increase_by_) || !defined(_di_f_type_fll_idss_resize_)
-  extern f_status_t private_f_type_fll_idss_resize(const f_array_length_t length, f_fll_idss_t *idss) F_attribute_visibility_internal_d;
-#endif // !defined(_di_f_type_fll_idss_decrease_by_) || !defined(_di_f_type_fll_idss_increase_) || !defined(_di_f_type_fll_idss_increase_by_) || !defined(_di_f_type_fll_idss_resize_)
+#if !defined(_di_f_fll_idss_decrease_by_) || !defined(_di_f_fll_idss_increase_) || !defined(_di_f_fll_idss_increase_by_) || !defined(_di_f_fll_idss_resize_)
+  extern f_status_t private_f_fll_idss_resize(const f_array_length_t length, f_fll_idss_t *idss) F_attribute_visibility_internal_d;
+#endif // !defined(_di_f_fll_idss_decrease_by_) || !defined(_di_f_fll_idss_increase_) || !defined(_di_f_fll_idss_increase_by_) || !defined(_di_f_fll_idss_resize_)
 /**
  * Private implementation for resizing the array_lengths array.
  *
@@ -542,12 +542,12 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_adjust().
  *
- * @see f_type_array_lengths_adjust()
- * @see f_type_array_lengths_decimate_by()
+ * @see f_array_lengths_adjust()
+ * @see f_array_lengths_decimate_by()
  */
-#if !defined(_di_f_type_array_lengths_adjust_) || !defined(_di_f_type_array_lengths_decimate_by_)
-  extern f_status_t private_f_type_array_lengths_adjust(const f_array_length_t length, f_array_lengths_t *lengths) F_attribute_visibility_internal_d;
-#endif // !defined(_di_f_type_array_lengths_adjust_) || !defined(_di_f_type_array_lengths_decimate_by_)
+#if !defined(_di_f_array_lengths_adjust_) || !defined(_di_f_array_lengths_decimate_by_)
+  extern f_status_t private_f_array_lengths_adjust(const f_array_length_t length, f_array_lengths_t *lengths) F_attribute_visibility_internal_d;
+#endif // !defined(_di_f_array_lengths_adjust_) || !defined(_di_f_array_lengths_decimate_by_)
 
 /**
  * Private implementation for appending the array_length array.
@@ -564,12 +564,12 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  *
- * @see f_type_array_lengths_append()
- * @see f_type_array_lengthss_append()
+ * @see f_array_lengths_append()
+ * @see f_array_lengthss_append()
  */
-#if !defined(_di_f_type_array_lengths_append_) || !defined(_di_f_type_array_lengthss_append_)
-  extern f_status_t private_f_type_array_lengths_append(const f_array_lengths_t source, f_array_lengths_t *destination) F_attribute_visibility_internal_d;
-#endif // !defined(_di_f_type_array_lengths_append_) || !defined(_di_f_type_array_lengthss_append_)
+#if !defined(_di_f_array_lengths_append_) || !defined(_di_f_array_lengthss_append_)
+  extern f_status_t private_f_array_lengths_append(const f_array_lengths_t source, f_array_lengths_t *destination) F_attribute_visibility_internal_d;
+#endif // !defined(_di_f_array_lengths_append_) || !defined(_di_f_array_lengthss_append_)
 
 /**
  * Private implementation for resizing the array_lengths array.
@@ -587,14 +587,14 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  *
- * @see f_type_array_lengths_resize()
- * @see f_type_array_lengths_append()
- * @see f_type_array_lengths_decimate_by()
- * @see f_type_array_lengthss_append()
+ * @see f_array_lengths_resize()
+ * @see f_array_lengths_append()
+ * @see f_array_lengths_decimate_by()
+ * @see f_array_lengthss_append()
  */
-#if !defined(_di_f_type_array_lengths_resize_) || !defined(_di_f_type_array_lengths_append_) || !defined(_di_f_type_array_lengths_decimate_by_) || !defined(_di_f_type_array_lengthss_append_)
-  extern f_status_t private_f_type_array_lengths_resize(const f_array_length_t length, f_array_lengths_t *lengths) F_attribute_visibility_internal_d;
-#endif // !defined(_di_f_type_array_lengths_resize_) || !defined(_di_f_type_array_lengths_append_) || !defined(_di_f_type_array_lengths_decimate_by_) || !defined(_di_f_type_array_lengthss_append_)
+#if !defined(_di_f_array_lengths_resize_) || !defined(_di_f_array_lengths_append_) || !defined(_di_f_array_lengths_decimate_by_) || !defined(_di_f_array_lengthss_append_)
+  extern f_status_t private_f_array_lengths_resize(const f_array_length_t length, f_array_lengths_t *lengths) F_attribute_visibility_internal_d;
+#endif // !defined(_di_f_array_lengths_resize_) || !defined(_di_f_array_lengths_append_) || !defined(_di_f_array_lengths_decimate_by_) || !defined(_di_f_array_lengthss_append_)
 
 /**
  * Private implementation for resizing the lengthss array.
@@ -617,12 +617,12 @@ extern "C" {
  *   Errors (with error bit) from: f_memory_adjust().
  *   Errors (with error bit) from: f_memory_destroy().
  *
- * @see f_type_array_lengthss_adjust()
- * @see f_type_array_lengthss_decimate_by()
+ * @see f_array_lengthss_adjust()
+ * @see f_array_lengthss_decimate_by()
  */
-#if !defined(_di_f_type_array_lengthss_adjust_) || !defined(_di_f_type_array_lengthss_decimate_by_)
-  extern f_status_t private_f_type_array_lengthss_adjust(const f_array_length_t length, f_array_lengthss_t *lengthss) F_attribute_visibility_internal_d;
-#endif // !defined(_di_f_type_array_lengthss_adjust_) || !defined(_di_f_type_array_lengthss_decimate_by_)
+#if !defined(_di_f_array_lengthss_adjust_) || !defined(_di_f_array_lengthss_decimate_by_)
+  extern f_status_t private_f_array_lengthss_adjust(const f_array_length_t length, f_array_lengthss_t *lengthss) F_attribute_visibility_internal_d;
+#endif // !defined(_di_f_array_lengthss_adjust_) || !defined(_di_f_array_lengthss_decimate_by_)
 
 /**
  * Private implementation for resizing the lengthss array.
@@ -645,14 +645,14 @@ extern "C" {
  *   Errors (with error bit) from: f_memory_delete().
  *   Errors (with error bit) from: f_memory_resize().
  *
- * @see f_type_array_lengthss_decrease_by()
- * @see f_type_array_lengthss_increase()
- * @see f_type_array_lengthss_increase_by()
- * @see f_type_array_lengthss_resize()
+ * @see f_array_lengthss_decrease_by()
+ * @see f_array_lengthss_increase()
+ * @see f_array_lengthss_increase_by()
+ * @see f_array_lengthss_resize()
  */
-#if !defined(_di_f_type_array_lengthss_decrease_by_) || !defined(_di_f_type_array_lengthss_increase_) || !defined(_di_f_type_array_lengthss_increase_by_) || !defined(_di_f_type_array_lengthss_resize_)
-  extern f_status_t private_f_type_array_lengthss_resize(const f_array_length_t length, f_array_lengthss_t *lengthss) F_attribute_visibility_internal_d;
-#endif // !defined(_di_f_type_array_lengthss_decrease_by_) || !defined(_di_f_type_array_lengthss_increase_) || !defined(_di_f_type_array_lengthss_increase_by_) || !defined(_di_f_type_array_lengthss_resize_)
+#if !defined(_di_f_array_lengthss_decrease_by_) || !defined(_di_f_array_lengthss_increase_) || !defined(_di_f_array_lengthss_increase_by_) || !defined(_di_f_array_lengthss_resize_)
+  extern f_status_t private_f_array_lengthss_resize(const f_array_length_t length, f_array_lengthss_t *lengthss) F_attribute_visibility_internal_d;
+#endif // !defined(_di_f_array_lengthss_decrease_by_) || !defined(_di_f_array_lengthss_increase_) || !defined(_di_f_array_lengthss_increase_by_) || !defined(_di_f_array_lengthss_resize_)
 
 /**
  * Private implementation for resizing the int8s array.
@@ -670,12 +670,12 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_adjust().
  *
- * @see f_type_int8s_adjust()
- * @see f_type_int8s_decimate_by()
+ * @see f_int8s_adjust()
+ * @see f_int8s_decimate_by()
  */
-#if !defined(_di_f_type_int8s_adjust_) || !defined(_di_f_type_int8s_decimate_by_)
-  extern f_status_t private_f_type_int8s_adjust(const f_array_length_t length, f_int8s_t *int8s) F_attribute_visibility_internal_d;
-#endif // !defined(_di_f_type_int8s_adjust_) || !defined(_di_f_type_int8s_decimate_by_)
+#if !defined(_di_f_int8s_adjust_) || !defined(_di_f_int8s_decimate_by_)
+  extern f_status_t private_f_int8s_adjust(const f_array_length_t length, f_int8s_t *int8s) F_attribute_visibility_internal_d;
+#endif // !defined(_di_f_int8s_adjust_) || !defined(_di_f_int8s_decimate_by_)
 
 /**
  * Private implementation for appending the int8 array.
@@ -692,12 +692,12 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  *
- * @see f_type_int8s_append()
- * @see f_type_int8ss_append()
+ * @see f_int8s_append()
+ * @see f_int8ss_append()
  */
-#if !defined(_di_f_type_int8s_append_) || !defined(_di_f_type_int8ss_append_)
-  extern f_status_t private_f_type_int8s_append(const f_int8s_t source, f_int8s_t *destination) F_attribute_visibility_internal_d;
-#endif // !defined(_di_f_type_int8s_append_) || !defined(_di_f_type_int8ss_append_)
+#if !defined(_di_f_int8s_append_) || !defined(_di_f_int8ss_append_)
+  extern f_status_t private_f_int8s_append(const f_int8s_t source, f_int8s_t *destination) F_attribute_visibility_internal_d;
+#endif // !defined(_di_f_int8s_append_) || !defined(_di_f_int8ss_append_)
 
 /**
  * Private implementation for resizing the int8s array.
@@ -715,14 +715,14 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  *
- * @see f_type_int8s_resize()
- * @see f_type_int8s_append()
- * @see f_type_int8s_decimate_by()
- * @see f_type_int8ss_append()
+ * @see f_int8s_resize()
+ * @see f_int8s_append()
+ * @see f_int8s_decimate_by()
+ * @see f_int8ss_append()
  */
-#if !defined(_di_f_type_int8s_resize_) || !defined(_di_f_type_int8s_append_) || !defined(_di_f_type_int8s_decimate_by_) || !defined(_di_f_type_int8ss_append_)
-  extern f_status_t private_f_type_int8s_resize(const f_array_length_t length, f_int8s_t *int8s) F_attribute_visibility_internal_d;
-#endif // !defined(_di_f_type_int8s_resize_) || !defined(_di_f_type_int8s_append_) || !defined(_di_f_type_int8s_decimate_by_) || !defined(_di_f_type_int8ss_append_)
+#if !defined(_di_f_int8s_resize_) || !defined(_di_f_int8s_append_) || !defined(_di_f_int8s_decimate_by_) || !defined(_di_f_int8ss_append_)
+  extern f_status_t private_f_int8s_resize(const f_array_length_t length, f_int8s_t *int8s) F_attribute_visibility_internal_d;
+#endif // !defined(_di_f_int8s_resize_) || !defined(_di_f_int8s_append_) || !defined(_di_f_int8s_decimate_by_) || !defined(_di_f_int8ss_append_)
 
 /**
  * Private implementation for resizing the int8ss array.
@@ -745,12 +745,12 @@ extern "C" {
  *   Errors (with error bit) from: f_memory_adjust().
  *   Errors (with error bit) from: f_memory_destroy().
  *
- * @see f_type_int8ss_adjust()
- * @see f_type_int8ss_decimate_by()
+ * @see f_int8ss_adjust()
+ * @see f_int8ss_decimate_by()
  */
-#if !defined(_di_f_type_int8ss_adjust_) || !defined(_di_f_type_int8ss_decimate_by_)
-  extern f_status_t private_f_type_int8ss_adjust(const f_array_length_t length, f_int8ss_t *int8ss) F_attribute_visibility_internal_d;
-#endif // !defined(_di_f_type_int8ss_adjust_) || !defined(_di_f_type_int8ss_decimate_by_)
+#if !defined(_di_f_int8ss_adjust_) || !defined(_di_f_int8ss_decimate_by_)
+  extern f_status_t private_f_int8ss_adjust(const f_array_length_t length, f_int8ss_t *int8ss) F_attribute_visibility_internal_d;
+#endif // !defined(_di_f_int8ss_adjust_) || !defined(_di_f_int8ss_decimate_by_)
 
 /**
  * Private implementation for resizing the int8ss array.
@@ -773,14 +773,14 @@ extern "C" {
  *   Errors (with error bit) from: f_memory_delete().
  *   Errors (with error bit) from: f_memory_resize().
  *
- * @see f_type_int8ss_decrease_by()
- * @see f_type_int8ss_increase()
- * @see f_type_int8ss_increase_by()
- * @see f_type_int8ss_resize()
+ * @see f_int8ss_decrease_by()
+ * @see f_int8ss_increase()
+ * @see f_int8ss_increase_by()
+ * @see f_int8ss_resize()
  */
-#if !defined(_di_f_type_int8ss_decrease_by_) || !defined(_di_f_type_int8ss_increase_) || !defined(_di_f_type_int8ss_increase_by_) || !defined(_di_f_type_int8ss_resize_)
-  extern f_status_t private_f_type_int8ss_resize(const f_array_length_t length, f_int8ss_t *int8ss) F_attribute_visibility_internal_d;
-#endif // !defined(_di_f_type_int8ss_decrease_by_) || !defined(_di_f_type_int8ss_increase_) || !defined(_di_f_type_int8ss_increase_by_) || !defined(_di_f_type_int8ss_resize_)
+#if !defined(_di_f_int8ss_decrease_by_) || !defined(_di_f_int8ss_increase_) || !defined(_di_f_int8ss_increase_by_) || !defined(_di_f_int8ss_resize_)
+  extern f_status_t private_f_int8ss_resize(const f_array_length_t length, f_int8ss_t *int8ss) F_attribute_visibility_internal_d;
+#endif // !defined(_di_f_int8ss_decrease_by_) || !defined(_di_f_int8ss_increase_) || !defined(_di_f_int8ss_increase_by_) || !defined(_di_f_int8ss_resize_)
 
 /**
  * Private implementation for resizing the uint8s array.
@@ -798,12 +798,12 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_adjust().
  *
- * @see f_type_uint8s_adjust()
- * @see f_type_uint8s_decimate_by()
+ * @see f_uint8s_adjust()
+ * @see f_uint8s_decimate_by()
  */
-#if !defined(_di_f_type_uint8s_adjust_) || !defined(_di_f_type_uint8s_decimate_by_)
-  extern f_status_t private_f_type_uint8s_adjust(const f_array_length_t length, f_uint8s_t *uint8s) F_attribute_visibility_internal_d;
-#endif // !defined(_di_f_type_uint8s_adjust_) || !defined(_di_f_type_uint8s_decimate_by_)
+#if !defined(_di_f_uint8s_adjust_) || !defined(_di_f_uint8s_decimate_by_)
+  extern f_status_t private_f_uint8s_adjust(const f_array_length_t length, f_uint8s_t *uint8s) F_attribute_visibility_internal_d;
+#endif // !defined(_di_f_uint8s_adjust_) || !defined(_di_f_uint8s_decimate_by_)
 
 /**
  * Private implementation for appending the uint8 array.
@@ -820,12 +820,12 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  *
- * @see f_type_uint8s_append()
- * @see f_type_uint8ss_append()
+ * @see f_uint8s_append()
+ * @see f_uint8ss_append()
  */
-#if !defined(_di_f_type_uint8s_append_) || !defined(_di_f_type_uint8ss_append_)
-  extern f_status_t private_f_type_uint8s_append(const f_uint8s_t source, f_uint8s_t *destination) F_attribute_visibility_internal_d;
-#endif // !defined(_di_f_type_uint8s_append_) || !defined(_di_f_type_uint8ss_append_)
+#if !defined(_di_f_uint8s_append_) || !defined(_di_f_uint8ss_append_)
+  extern f_status_t private_f_uint8s_append(const f_uint8s_t source, f_uint8s_t *destination) F_attribute_visibility_internal_d;
+#endif // !defined(_di_f_uint8s_append_) || !defined(_di_f_uint8ss_append_)
 
 /**
  * Private implementation for resizing the uint8s array.
@@ -843,14 +843,14 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  *
- * @see f_type_uint8s_resize()
- * @see f_type_uint8s_append()
- * @see f_type_uint8s_decimate_by()
- * @see f_type_uint8ss_append()
+ * @see f_uint8s_resize()
+ * @see f_uint8s_append()
+ * @see f_uint8s_decimate_by()
+ * @see f_uint8ss_append()
  */
-#if !defined(_di_f_type_uint8s_resize_) || !defined(_di_f_type_uint8s_append_) || !defined(_di_f_type_uint8s_decimate_by_) || !defined(_di_f_type_uint8ss_append_)
-  extern f_status_t private_f_type_uint8s_resize(const f_array_length_t length, f_uint8s_t *uint8s) F_attribute_visibility_internal_d;
-#endif // !defined(_di_f_type_uint8s_resize_) || !defined(_di_f_type_uint8s_append_) || !defined(_di_f_type_uint8s_decimate_by_) || !defined(_di_f_type_uint8ss_append_)
+#if !defined(_di_f_uint8s_resize_) || !defined(_di_f_uint8s_append_) || !defined(_di_f_uint8s_decimate_by_) || !defined(_di_f_uint8ss_append_)
+  extern f_status_t private_f_uint8s_resize(const f_array_length_t length, f_uint8s_t *uint8s) F_attribute_visibility_internal_d;
+#endif // !defined(_di_f_uint8s_resize_) || !defined(_di_f_uint8s_append_) || !defined(_di_f_uint8s_decimate_by_) || !defined(_di_f_uint8ss_append_)
 
 /**
  * Private implementation for resizing the uint8ss array.
@@ -873,12 +873,12 @@ extern "C" {
  *   Errors (with error bit) from: f_memory_adjust().
  *   Errors (with error bit) from: f_memory_destroy().
  *
- * @see f_type_uint8ss_adjust()
- * @see f_type_uint8ss_decimate_by()
+ * @see f_uint8ss_adjust()
+ * @see f_uint8ss_decimate_by()
  */
-#if !defined(_di_f_type_uint8ss_adjust_) || !defined(_di_f_type_uint8ss_decimate_by_)
-  extern f_status_t private_f_type_uint8ss_adjust(const f_array_length_t length, f_uint8ss_t *uint8ss) F_attribute_visibility_internal_d;
-#endif // !defined(_di_f_type_uint8ss_adjust_) || !defined(_di_f_type_uint8ss_decimate_by_)
+#if !defined(_di_f_uint8ss_adjust_) || !defined(_di_f_uint8ss_decimate_by_)
+  extern f_status_t private_f_uint8ss_adjust(const f_array_length_t length, f_uint8ss_t *uint8ss) F_attribute_visibility_internal_d;
+#endif // !defined(_di_f_uint8ss_adjust_) || !defined(_di_f_uint8ss_decimate_by_)
 
 /**
  * Private implementation for resizing the uint8ss array.
@@ -901,14 +901,14 @@ extern "C" {
  *   Errors (with error bit) from: f_memory_delete().
  *   Errors (with error bit) from: f_memory_resize().
  *
- * @see f_type_uint8ss_decrease_by()
- * @see f_type_uint8ss_increase()
- * @see f_type_uint8ss_increase_by()
- * @see f_type_uint8ss_resize()
+ * @see f_uint8ss_decrease_by()
+ * @see f_uint8ss_increase()
+ * @see f_uint8ss_increase_by()
+ * @see f_uint8ss_resize()
  */
-#if !defined(_di_f_type_uint8ss_decrease_by_) || !defined(_di_f_type_uint8ss_increase_) || !defined(_di_f_type_uint8ss_increase_by_) || !defined(_di_f_type_uint8ss_resize_)
-  extern f_status_t private_f_type_uint8ss_resize(const f_array_length_t length, f_uint8ss_t *uint8ss) F_attribute_visibility_internal_d;
-#endif // !defined(_di_f_type_uint8ss_decrease_by_) || !defined(_di_f_type_uint8ss_increase_) || !defined(_di_f_type_uint8ss_increase_by_) || !defined(_di_f_type_uint8ss_resize_)
+#if !defined(_di_f_uint8ss_decrease_by_) || !defined(_di_f_uint8ss_increase_) || !defined(_di_f_uint8ss_increase_by_) || !defined(_di_f_uint8ss_resize_)
+  extern f_status_t private_f_uint8ss_resize(const f_array_length_t length, f_uint8ss_t *uint8ss) F_attribute_visibility_internal_d;
+#endif // !defined(_di_f_uint8ss_decrease_by_) || !defined(_di_f_uint8ss_increase_) || !defined(_di_f_uint8ss_increase_by_) || !defined(_di_f_uint8ss_resize_)
 
 /**
  * Private implementation for resizing the int16s array.
@@ -926,12 +926,12 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_adjust().
  *
- * @see f_type_int16s_adjust()
- * @see f_type_int16s_decimate_by()
+ * @see f_int16s_adjust()
+ * @see f_int16s_decimate_by()
  */
-#if !defined(_di_f_type_int16s_adjust_) || !defined(_di_f_type_int16s_decimate_by_)
-  extern f_status_t private_f_type_int16s_adjust(const f_array_length_t length, f_int16s_t *int16s) F_attribute_visibility_internal_d;
-#endif // !defined(_di_f_type_int16s_adjust_) || !defined(_di_f_type_int16s_decimate_by_)
+#if !defined(_di_f_int16s_adjust_) || !defined(_di_f_int16s_decimate_by_)
+  extern f_status_t private_f_int16s_adjust(const f_array_length_t length, f_int16s_t *int16s) F_attribute_visibility_internal_d;
+#endif // !defined(_di_f_int16s_adjust_) || !defined(_di_f_int16s_decimate_by_)
 
 /**
  * Private implementation for appending the int16 array.
@@ -948,12 +948,12 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  *
- * @see f_type_int16s_append()
- * @see f_type_int16ss_append()
+ * @see f_int16s_append()
+ * @see f_int16ss_append()
  */
-#if !defined(_di_f_type_int16s_append_) || !defined(_di_f_type_int16ss_append_)
-  extern f_status_t private_f_type_int16s_append(const f_int16s_t source, f_int16s_t *destination) F_attribute_visibility_internal_d;
-#endif // !defined(_di_f_type_int16s_append_) || !defined(_di_f_type_int16ss_append_)
+#if !defined(_di_f_int16s_append_) || !defined(_di_f_int16ss_append_)
+  extern f_status_t private_f_int16s_append(const f_int16s_t source, f_int16s_t *destination) F_attribute_visibility_internal_d;
+#endif // !defined(_di_f_int16s_append_) || !defined(_di_f_int16ss_append_)
 
 /**
  * Private implementation for resizing the int16s array.
@@ -971,14 +971,14 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  *
- * @see f_type_int16s_resize()
- * @see f_type_int16s_append()
- * @see f_type_int16s_decimate_by()
- * @see f_type_int16ss_append()
+ * @see f_int16s_resize()
+ * @see f_int16s_append()
+ * @see f_int16s_decimate_by()
+ * @see f_int16ss_append()
  */
-#if !defined(_di_f_type_int16s_resize_) || !defined(_di_f_type_int16s_append_) || !defined(_di_f_type_int16s_decimate_by_) || !defined(_di_f_type_int16ss_append_)
-  extern f_status_t private_f_type_int16s_resize(const f_array_length_t length, f_int16s_t *int16s) F_attribute_visibility_internal_d;
-#endif // !defined(_di_f_type_int16s_resize_) || !defined(_di_f_type_int16s_append_) || !defined(_di_f_type_int16s_decimate_by_) || !defined(_di_f_type_int16ss_append_)
+#if !defined(_di_f_int16s_resize_) || !defined(_di_f_int16s_append_) || !defined(_di_f_int16s_decimate_by_) || !defined(_di_f_int16ss_append_)
+  extern f_status_t private_f_int16s_resize(const f_array_length_t length, f_int16s_t *int16s) F_attribute_visibility_internal_d;
+#endif // !defined(_di_f_int16s_resize_) || !defined(_di_f_int16s_append_) || !defined(_di_f_int16s_decimate_by_) || !defined(_di_f_int16ss_append_)
 
 /**
  * Private implementation for resizing the int16ss array.
@@ -1001,12 +1001,12 @@ extern "C" {
  *   Errors (with error bit) from: f_memory_adjust().
  *   Errors (with error bit) from: f_memory_destroy().
  *
- * @see f_type_int16ss_adjust()
- * @see f_type_int16ss_decimate_by()
+ * @see f_int16ss_adjust()
+ * @see f_int16ss_decimate_by()
  */
-#if !defined(_di_f_type_int16ss_adjust_) || !defined(_di_f_type_int16ss_decimate_by_)
-  extern f_status_t private_f_type_int16ss_adjust(const f_array_length_t length, f_int16ss_t *int16ss) F_attribute_visibility_internal_d;
-#endif // !defined(_di_f_type_int16ss_adjust_) || !defined(_di_f_type_int16ss_decimate_by_)
+#if !defined(_di_f_int16ss_adjust_) || !defined(_di_f_int16ss_decimate_by_)
+  extern f_status_t private_f_int16ss_adjust(const f_array_length_t length, f_int16ss_t *int16ss) F_attribute_visibility_internal_d;
+#endif // !defined(_di_f_int16ss_adjust_) || !defined(_di_f_int16ss_decimate_by_)
 
 /**
  * Private implementation for resizing the int16ss array.
@@ -1029,14 +1029,14 @@ extern "C" {
  *   Errors (with error bit) from: f_memory_delete().
  *   Errors (with error bit) from: f_memory_resize().
  *
- * @see f_type_int16ss_decrease_by()
- * @see f_type_int16ss_increase()
- * @see f_type_int16ss_increase_by()
- * @see f_type_int16ss_resize()
+ * @see f_int16ss_decrease_by()
+ * @see f_int16ss_increase()
+ * @see f_int16ss_increase_by()
+ * @see f_int16ss_resize()
  */
-#if !defined(_di_f_type_int16ss_decrease_by_) || !defined(_di_f_type_int16ss_increase_) || !defined(_di_f_type_int16ss_increase_by_) || !defined(_di_f_type_int16ss_resize_)
-  extern f_status_t private_f_type_int16ss_resize(const f_array_length_t length, f_int16ss_t *int16ss) F_attribute_visibility_internal_d;
-#endif // !defined(_di_f_type_int16ss_decrease_by_) || !defined(_di_f_type_int16ss_increase_) || !defined(_di_f_type_int16ss_increase_by_) || !defined(_di_f_type_int16ss_resize_)
+#if !defined(_di_f_int16ss_decrease_by_) || !defined(_di_f_int16ss_increase_) || !defined(_di_f_int16ss_increase_by_) || !defined(_di_f_int16ss_resize_)
+  extern f_status_t private_f_int16ss_resize(const f_array_length_t length, f_int16ss_t *int16ss) F_attribute_visibility_internal_d;
+#endif // !defined(_di_f_int16ss_decrease_by_) || !defined(_di_f_int16ss_increase_) || !defined(_di_f_int16ss_increase_by_) || !defined(_di_f_int16ss_resize_)
 
 /**
  * Private implementation for resizing the uint16s array.
@@ -1054,12 +1054,12 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_adjust().
  *
- * @see f_type_uint16s_adjust()
- * @see f_type_uint16s_decimate_by()
+ * @see f_uint16s_adjust()
+ * @see f_uint16s_decimate_by()
  */
-#if !defined(_di_f_type_uint16s_adjust_) || !defined(_di_f_type_uint16s_decimate_by_)
-  extern f_status_t private_f_type_uint16s_adjust(const f_array_length_t length, f_uint16s_t *uint16s) F_attribute_visibility_internal_d;
-#endif // !defined(_di_f_type_uint16s_adjust_) || !defined(_di_f_type_uint16s_decimate_by_)
+#if !defined(_di_f_uint16s_adjust_) || !defined(_di_f_uint16s_decimate_by_)
+  extern f_status_t private_f_uint16s_adjust(const f_array_length_t length, f_uint16s_t *uint16s) F_attribute_visibility_internal_d;
+#endif // !defined(_di_f_uint16s_adjust_) || !defined(_di_f_uint16s_decimate_by_)
 
 /**
  * Private implementation for appending the uint16 array.
@@ -1076,12 +1076,12 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  *
- * @see f_type_uint16s_append()
- * @see f_type_uint16ss_append()
+ * @see f_uint16s_append()
+ * @see f_uint16ss_append()
  */
-#if !defined(_di_f_type_uint16s_append_) || !defined(_di_f_type_uint16ss_append_)
-  extern f_status_t private_f_type_uint16s_append(const f_uint16s_t source, f_uint16s_t *destination) F_attribute_visibility_internal_d;
-#endif // !defined(_di_f_type_uint16s_append_) || !defined(_di_f_type_uint16ss_append_)
+#if !defined(_di_f_uint16s_append_) || !defined(_di_f_uint16ss_append_)
+  extern f_status_t private_f_uint16s_append(const f_uint16s_t source, f_uint16s_t *destination) F_attribute_visibility_internal_d;
+#endif // !defined(_di_f_uint16s_append_) || !defined(_di_f_uint16ss_append_)
 
 /**
  * Private implementation for resizing the uint16s array.
@@ -1099,14 +1099,14 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  *
- * @see f_type_uint16s_resize()
- * @see f_type_uint16s_append()
- * @see f_type_uint16s_decimate_by()
- * @see f_type_uint16ss_append()
+ * @see f_uint16s_resize()
+ * @see f_uint16s_append()
+ * @see f_uint16s_decimate_by()
+ * @see f_uint16ss_append()
  */
-#if !defined(_di_f_type_uint16s_resize_) || !defined(_di_f_type_uint16s_append_) || !defined(_di_f_type_uint16s_decimate_by_) || !defined(_di_f_type_uint16ss_append_)
-  extern f_status_t private_f_type_uint16s_resize(const f_array_length_t length, f_uint16s_t *uint16s) F_attribute_visibility_internal_d;
-#endif // !defined(_di_f_type_uint16s_resize_) || !defined(_di_f_type_uint16s_append_) || !defined(_di_f_type_uint16s_decimate_by_) || !defined(_di_f_type_uint16ss_append_)
+#if !defined(_di_f_uint16s_resize_) || !defined(_di_f_uint16s_append_) || !defined(_di_f_uint16s_decimate_by_) || !defined(_di_f_uint16ss_append_)
+  extern f_status_t private_f_uint16s_resize(const f_array_length_t length, f_uint16s_t *uint16s) F_attribute_visibility_internal_d;
+#endif // !defined(_di_f_uint16s_resize_) || !defined(_di_f_uint16s_append_) || !defined(_di_f_uint16s_decimate_by_) || !defined(_di_f_uint16ss_append_)
 
 /**
  * Private implementation for resizing the uint16ss array.
@@ -1129,12 +1129,12 @@ extern "C" {
  *   Errors (with error bit) from: f_memory_adjust().
  *   Errors (with error bit) from: f_memory_destroy().
  *
- * @see f_type_uint16ss_adjust()
- * @see f_type_uint16ss_decimate_by()
+ * @see f_uint16ss_adjust()
+ * @see f_uint16ss_decimate_by()
  */
-#if !defined(_di_f_type_uint16ss_adjust_) || !defined(_di_f_type_uint16ss_decimate_by_)
-  extern f_status_t private_f_type_uint16ss_adjust(const f_array_length_t length, f_uint16ss_t *uint16ss) F_attribute_visibility_internal_d;
-#endif // !defined(_di_f_type_uint16ss_adjust_) || !defined(_di_f_type_uint16ss_decimate_by_)
+#if !defined(_di_f_uint16ss_adjust_) || !defined(_di_f_uint16ss_decimate_by_)
+  extern f_status_t private_f_uint16ss_adjust(const f_array_length_t length, f_uint16ss_t *uint16ss) F_attribute_visibility_internal_d;
+#endif // !defined(_di_f_uint16ss_adjust_) || !defined(_di_f_uint16ss_decimate_by_)
 
 /**
  * Private implementation for resizing the uint16ss array.
@@ -1157,14 +1157,14 @@ extern "C" {
  *   Errors (with error bit) from: f_memory_delete().
  *   Errors (with error bit) from: f_memory_resize().
  *
- * @see f_type_uint16ss_decrease_by()
- * @see f_type_uint16ss_increase()
- * @see f_type_uint16ss_increase_by()
- * @see f_type_uint16ss_resize()
+ * @see f_uint16ss_decrease_by()
+ * @see f_uint16ss_increase()
+ * @see f_uint16ss_increase_by()
+ * @see f_uint16ss_resize()
  */
-#if !defined(_di_f_type_uint16ss_decrease_by_) || !defined(_di_f_type_uint16ss_increase_) || !defined(_di_f_type_uint16ss_increase_by_) || !defined(_di_f_type_uint16ss_resize_)
-  extern f_status_t private_f_type_uint16ss_resize(const f_array_length_t length, f_uint16ss_t *uint16ss) F_attribute_visibility_internal_d;
-#endif // !defined(_di_f_type_uint16ss_decrease_by_) || !defined(_di_f_type_uint16ss_increase_) || !defined(_di_f_type_uint16ss_increase_by_) || !defined(_di_f_type_uint16ss_resize_)
+#if !defined(_di_f_uint16ss_decrease_by_) || !defined(_di_f_uint16ss_increase_) || !defined(_di_f_uint16ss_increase_by_) || !defined(_di_f_uint16ss_resize_)
+  extern f_status_t private_f_uint16ss_resize(const f_array_length_t length, f_uint16ss_t *uint16ss) F_attribute_visibility_internal_d;
+#endif // !defined(_di_f_uint16ss_decrease_by_) || !defined(_di_f_uint16ss_increase_) || !defined(_di_f_uint16ss_increase_by_) || !defined(_di_f_uint16ss_resize_)
 
 /**
  * Private implementation for resizing the int32s array.
@@ -1182,12 +1182,12 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_adjust().
  *
- * @see f_type_int32s_adjust()
- * @see f_type_int32s_decimate_by()
+ * @see f_int32s_adjust()
+ * @see f_int32s_decimate_by()
  */
-#if !defined(_di_f_type_int32s_adjust_) || !defined(_di_f_type_int32s_decimate_by_)
-  extern f_status_t private_f_type_int32s_adjust(const f_array_length_t length, f_int32s_t *int32s) F_attribute_visibility_internal_d;
-#endif // !defined(_di_f_type_int32s_adjust_) || !defined(_di_f_type_int32s_decimate_by_)
+#if !defined(_di_f_int32s_adjust_) || !defined(_di_f_int32s_decimate_by_)
+  extern f_status_t private_f_int32s_adjust(const f_array_length_t length, f_int32s_t *int32s) F_attribute_visibility_internal_d;
+#endif // !defined(_di_f_int32s_adjust_) || !defined(_di_f_int32s_decimate_by_)
 
 /**
  * Private implementation for appending the int32 array.
@@ -1204,12 +1204,12 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  *
- * @see f_type_int32s_append()
- * @see f_type_int32ss_append()
+ * @see f_int32s_append()
+ * @see f_int32ss_append()
  */
-#if !defined(_di_f_type_int32s_append_) || !defined(_di_f_type_int32ss_append_)
-  extern f_status_t private_f_type_int32s_append(const f_int32s_t source, f_int32s_t *destination) F_attribute_visibility_internal_d;
-#endif // !defined(_di_f_type_int32s_append_) || !defined(_di_f_type_int32ss_append_)
+#if !defined(_di_f_int32s_append_) || !defined(_di_f_int32ss_append_)
+  extern f_status_t private_f_int32s_append(const f_int32s_t source, f_int32s_t *destination) F_attribute_visibility_internal_d;
+#endif // !defined(_di_f_int32s_append_) || !defined(_di_f_int32ss_append_)
 
 /**
  * Private implementation for resizing the int32s array.
@@ -1227,14 +1227,14 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  *
- * @see f_type_int32s_resize()
- * @see f_type_int32s_append()
- * @see f_type_int32s_decimate_by()
- * @see f_type_int32ss_append()
+ * @see f_int32s_resize()
+ * @see f_int32s_append()
+ * @see f_int32s_decimate_by()
+ * @see f_int32ss_append()
  */
-#if !defined(_di_f_type_int32s_resize_) || !defined(_di_f_type_int32s_append_) || !defined(_di_f_type_int32s_decimate_by_) || !defined(_di_f_type_int32ss_append_)
-  extern f_status_t private_f_type_int32s_resize(const f_array_length_t length, f_int32s_t *int32s) F_attribute_visibility_internal_d;
-#endif // !defined(_di_f_type_int32s_resize_) || !defined(_di_f_type_int32s_append_) || !defined(_di_f_type_int32s_decimate_by_) || !defined(_di_f_type_int32ss_append_)
+#if !defined(_di_f_int32s_resize_) || !defined(_di_f_int32s_append_) || !defined(_di_f_int32s_decimate_by_) || !defined(_di_f_int32ss_append_)
+  extern f_status_t private_f_int32s_resize(const f_array_length_t length, f_int32s_t *int32s) F_attribute_visibility_internal_d;
+#endif // !defined(_di_f_int32s_resize_) || !defined(_di_f_int32s_append_) || !defined(_di_f_int32s_decimate_by_) || !defined(_di_f_int32ss_append_)
 
 /**
  * Private implementation for resizing the int32ss array.
@@ -1257,12 +1257,12 @@ extern "C" {
  *   Errors (with error bit) from: f_memory_adjust().
  *   Errors (with error bit) from: f_memory_destroy().
  *
- * @see f_type_int32ss_adjust()
- * @see f_type_int32ss_decimate_by()
+ * @see f_int32ss_adjust()
+ * @see f_int32ss_decimate_by()
  */
-#if !defined(_di_f_type_int32ss_adjust_) || !defined(_di_f_type_int32ss_decimate_by_)
-  extern f_status_t private_f_type_int32ss_adjust(const f_array_length_t length, f_int32ss_t *int32ss) F_attribute_visibility_internal_d;
-#endif // !defined(_di_f_type_int32ss_adjust_) || !defined(_di_f_type_int32ss_decimate_by_)
+#if !defined(_di_f_int32ss_adjust_) || !defined(_di_f_int32ss_decimate_by_)
+  extern f_status_t private_f_int32ss_adjust(const f_array_length_t length, f_int32ss_t *int32ss) F_attribute_visibility_internal_d;
+#endif // !defined(_di_f_int32ss_adjust_) || !defined(_di_f_int32ss_decimate_by_)
 
 /**
  * Private implementation for resizing the int32ss array.
@@ -1285,14 +1285,14 @@ extern "C" {
  *   Errors (with error bit) from: f_memory_delete().
  *   Errors (with error bit) from: f_memory_resize().
  *
- * @see f_type_int32ss_decrease_by()
- * @see f_type_int32ss_increase()
- * @see f_type_int32ss_increase_by()
- * @see f_type_int32ss_resize()
+ * @see f_int32ss_decrease_by()
+ * @see f_int32ss_increase()
+ * @see f_int32ss_increase_by()
+ * @see f_int32ss_resize()
  */
-#if !defined(_di_f_type_int32ss_decrease_by_) || !defined(_di_f_type_int32ss_increase_) || !defined(_di_f_type_int32ss_increase_by_) || !defined(_di_f_type_int32ss_resize_)
-  extern f_status_t private_f_type_int32ss_resize(const f_array_length_t length, f_int32ss_t *int32ss) F_attribute_visibility_internal_d;
-#endif // !defined(_di_f_type_int32ss_decrease_by_) || !defined(_di_f_type_int32ss_increase_) || !defined(_di_f_type_int32ss_increase_by_) || !defined(_di_f_type_int32ss_resize_)
+#if !defined(_di_f_int32ss_decrease_by_) || !defined(_di_f_int32ss_increase_) || !defined(_di_f_int32ss_increase_by_) || !defined(_di_f_int32ss_resize_)
+  extern f_status_t private_f_int32ss_resize(const f_array_length_t length, f_int32ss_t *int32ss) F_attribute_visibility_internal_d;
+#endif // !defined(_di_f_int32ss_decrease_by_) || !defined(_di_f_int32ss_increase_) || !defined(_di_f_int32ss_increase_by_) || !defined(_di_f_int32ss_resize_)
 
 /**
  * Private implementation for resizing the uint32s array.
@@ -1310,12 +1310,12 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_adjust().
  *
- * @see f_type_uint32s_adjust()
- * @see f_type_uint32s_decimate_by()
+ * @see f_uint32s_adjust()
+ * @see f_uint32s_decimate_by()
  */
-#if !defined(_di_f_type_uint32s_adjust_) || !defined(_di_f_type_uint32s_decimate_by_)
-  extern f_status_t private_f_type_uint32s_adjust(const f_array_length_t length, f_uint32s_t *uint32s) F_attribute_visibility_internal_d;
-#endif // !defined(_di_f_type_uint32s_adjust_) || !defined(_di_f_type_uint32s_decimate_by_)
+#if !defined(_di_f_uint32s_adjust_) || !defined(_di_f_uint32s_decimate_by_)
+  extern f_status_t private_f_uint32s_adjust(const f_array_length_t length, f_uint32s_t *uint32s) F_attribute_visibility_internal_d;
+#endif // !defined(_di_f_uint32s_adjust_) || !defined(_di_f_uint32s_decimate_by_)
 
 /**
  * Private implementation for appending the uint32 array.
@@ -1332,12 +1332,12 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  *
- * @see f_type_uint32s_append()
- * @see f_type_uint32ss_append()
+ * @see f_uint32s_append()
+ * @see f_uint32ss_append()
  */
-#if !defined(_di_f_type_uint32s_append_) || !defined(_di_f_type_uint32ss_append_)
-  extern f_status_t private_f_type_uint32s_append(const f_uint32s_t source, f_uint32s_t *destination) F_attribute_visibility_internal_d;
-#endif // !defined(_di_f_type_uint32s_append_) || !defined(_di_f_type_uint32ss_append_)
+#if !defined(_di_f_uint32s_append_) || !defined(_di_f_uint32ss_append_)
+  extern f_status_t private_f_uint32s_append(const f_uint32s_t source, f_uint32s_t *destination) F_attribute_visibility_internal_d;
+#endif // !defined(_di_f_uint32s_append_) || !defined(_di_f_uint32ss_append_)
 
 /**
  * Private implementation for resizing the uint32s array.
@@ -1355,14 +1355,14 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  *
- * @see f_type_uint32s_resize()
- * @see f_type_uint32s_append()
- * @see f_type_uint32s_decimate_by()
- * @see f_type_uint32ss_append()
+ * @see f_uint32s_resize()
+ * @see f_uint32s_append()
+ * @see f_uint32s_decimate_by()
+ * @see f_uint32ss_append()
  */
-#if !defined(_di_f_type_uint32s_resize_) || !defined(_di_f_type_uint32s_append_) || !defined(_di_f_type_uint32s_decimate_by_) || !defined(_di_f_type_uint32ss_append_)
-  extern f_status_t private_f_type_uint32s_resize(const f_array_length_t length, f_uint32s_t *uint32s) F_attribute_visibility_internal_d;
-#endif // !defined(_di_f_type_uint32s_resize_) || !defined(_di_f_type_uint32s_append_) || !defined(_di_f_type_uint32s_decimate_by_) || !defined(_di_f_type_uint32ss_append_)
+#if !defined(_di_f_uint32s_resize_) || !defined(_di_f_uint32s_append_) || !defined(_di_f_uint32s_decimate_by_) || !defined(_di_f_uint32ss_append_)
+  extern f_status_t private_f_uint32s_resize(const f_array_length_t length, f_uint32s_t *uint32s) F_attribute_visibility_internal_d;
+#endif // !defined(_di_f_uint32s_resize_) || !defined(_di_f_uint32s_append_) || !defined(_di_f_uint32s_decimate_by_) || !defined(_di_f_uint32ss_append_)
 
 /**
  * Private implementation for resizing the uint32ss array.
@@ -1385,12 +1385,12 @@ extern "C" {
  *   Errors (with error bit) from: f_memory_adjust().
  *   Errors (with error bit) from: f_memory_destroy().
  *
- * @see f_type_uint32ss_adjust()
- * @see f_type_uint32ss_decimate_by()
+ * @see f_uint32ss_adjust()
+ * @see f_uint32ss_decimate_by()
  */
-#if !defined(_di_f_type_uint32ss_adjust_) || !defined(_di_f_type_uint32ss_decimate_by_)
-  extern f_status_t private_f_type_uint32ss_adjust(const f_array_length_t length, f_uint32ss_t *uint32ss) F_attribute_visibility_internal_d;
-#endif // !defined(_di_f_type_uint32ss_adjust_) || !defined(_di_f_type_uint32ss_decimate_by_)
+#if !defined(_di_f_uint32ss_adjust_) || !defined(_di_f_uint32ss_decimate_by_)
+  extern f_status_t private_f_uint32ss_adjust(const f_array_length_t length, f_uint32ss_t *uint32ss) F_attribute_visibility_internal_d;
+#endif // !defined(_di_f_uint32ss_adjust_) || !defined(_di_f_uint32ss_decimate_by_)
 
 /**
  * Private implementation for resizing the uint32ss array.
@@ -1413,14 +1413,14 @@ extern "C" {
  *   Errors (with error bit) from: f_memory_delete().
  *   Errors (with error bit) from: f_memory_resize().
  *
- * @see f_type_uint32ss_decrease_by()
- * @see f_type_uint32ss_increase()
- * @see f_type_uint32ss_increase_by()
- * @see f_type_uint32ss_resize()
+ * @see f_uint32ss_decrease_by()
+ * @see f_uint32ss_increase()
+ * @see f_uint32ss_increase_by()
+ * @see f_uint32ss_resize()
  */
-#if !defined(_di_f_type_uint32ss_decrease_by_) || !defined(_di_f_type_uint32ss_increase_) || !defined(_di_f_type_uint32ss_increase_by_) || !defined(_di_f_type_uint32ss_resize_)
-  extern f_status_t private_f_type_uint32ss_resize(const f_array_length_t length, f_uint32ss_t *uint32ss) F_attribute_visibility_internal_d;
-#endif // !defined(_di_f_type_uint32ss_decrease_by_) || !defined(_di_f_type_uint32ss_increase_) || !defined(_di_f_type_uint32ss_increase_by_) || !defined(_di_f_type_uint32ss_resize_)
+#if !defined(_di_f_uint32ss_decrease_by_) || !defined(_di_f_uint32ss_increase_) || !defined(_di_f_uint32ss_increase_by_) || !defined(_di_f_uint32ss_resize_)
+  extern f_status_t private_f_uint32ss_resize(const f_array_length_t length, f_uint32ss_t *uint32ss) F_attribute_visibility_internal_d;
+#endif // !defined(_di_f_uint32ss_decrease_by_) || !defined(_di_f_uint32ss_increase_) || !defined(_di_f_uint32ss_increase_by_) || !defined(_di_f_uint32ss_resize_)
 
 /**
  * Private implementation for resizing the int64s array.
@@ -1438,12 +1438,12 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_adjust().
  *
- * @see f_type_int64s_adjust()
- * @see f_type_int64s_decimate_by()
+ * @see f_int64s_adjust()
+ * @see f_int64s_decimate_by()
  */
-#if !defined(_di_f_type_int64s_adjust_) || !defined(_di_f_type_int64s_decimate_by_)
-  extern f_status_t private_f_type_int64s_adjust(const f_array_length_t length, f_int64s_t *int64s) F_attribute_visibility_internal_d;
-#endif // !defined(_di_f_type_int64s_adjust_) || !defined(_di_f_type_int64s_decimate_by_)
+#if !defined(_di_f_int64s_adjust_) || !defined(_di_f_int64s_decimate_by_)
+  extern f_status_t private_f_int64s_adjust(const f_array_length_t length, f_int64s_t *int64s) F_attribute_visibility_internal_d;
+#endif // !defined(_di_f_int64s_adjust_) || !defined(_di_f_int64s_decimate_by_)
 
 /**
  * Private implementation for appending the int64 array.
@@ -1460,12 +1460,12 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  *
- * @see f_type_int64s_append()
- * @see f_type_int64ss_append()
+ * @see f_int64s_append()
+ * @see f_int64ss_append()
  */
-#if !defined(_di_f_type_int64s_append_) || !defined(_di_f_type_int64ss_append_)
-  extern f_status_t private_f_type_int64s_append(const f_int64s_t source, f_int64s_t *destination) F_attribute_visibility_internal_d;
-#endif // !defined(_di_f_type_int64s_append_) || !defined(_di_f_type_int64ss_append_)
+#if !defined(_di_f_int64s_append_) || !defined(_di_f_int64ss_append_)
+  extern f_status_t private_f_int64s_append(const f_int64s_t source, f_int64s_t *destination) F_attribute_visibility_internal_d;
+#endif // !defined(_di_f_int64s_append_) || !defined(_di_f_int64ss_append_)
 
 /**
  * Private implementation for resizing the int64s array.
@@ -1483,14 +1483,14 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  *
- * @see f_type_int64s_resize()
- * @see f_type_int64s_append()
- * @see f_type_int64s_decimate_by()
- * @see f_type_int64ss_append()
+ * @see f_int64s_resize()
+ * @see f_int64s_append()
+ * @see f_int64s_decimate_by()
+ * @see f_int64ss_append()
  */
-#if !defined(_di_f_type_int64s_resize_) || !defined(_di_f_type_int64s_append_) || !defined(_di_f_type_int64s_decimate_by_) || !defined(_di_f_type_int64ss_append_)
-  extern f_status_t private_f_type_int64s_resize(const f_array_length_t length, f_int64s_t *int64s) F_attribute_visibility_internal_d;
-#endif // !defined(_di_f_type_int64s_resize_) || !defined(_di_f_type_int64s_append_) || !defined(_di_f_type_int64s_decimate_by_) || !defined(_di_f_type_int64ss_append_)
+#if !defined(_di_f_int64s_resize_) || !defined(_di_f_int64s_append_) || !defined(_di_f_int64s_decimate_by_) || !defined(_di_f_int64ss_append_)
+  extern f_status_t private_f_int64s_resize(const f_array_length_t length, f_int64s_t *int64s) F_attribute_visibility_internal_d;
+#endif // !defined(_di_f_int64s_resize_) || !defined(_di_f_int64s_append_) || !defined(_di_f_int64s_decimate_by_) || !defined(_di_f_int64ss_append_)
 
 /**
  * Private implementation for resizing the int64ss array.
@@ -1513,12 +1513,12 @@ extern "C" {
  *   Errors (with error bit) from: f_memory_adjust().
  *   Errors (with error bit) from: f_memory_destroy().
  *
- * @see f_type_int64ss_adjust()
- * @see f_type_int64ss_decimate_by()
+ * @see f_int64ss_adjust()
+ * @see f_int64ss_decimate_by()
  */
-#if !defined(_di_f_type_int64ss_adjust_) || !defined(_di_f_type_int64ss_decimate_by_)
-  extern f_status_t private_f_type_int64ss_adjust(const f_array_length_t length, f_int64ss_t *int64ss) F_attribute_visibility_internal_d;
-#endif // !defined(_di_f_type_int64ss_adjust_) || !defined(_di_f_type_int64ss_decimate_by_)
+#if !defined(_di_f_int64ss_adjust_) || !defined(_di_f_int64ss_decimate_by_)
+  extern f_status_t private_f_int64ss_adjust(const f_array_length_t length, f_int64ss_t *int64ss) F_attribute_visibility_internal_d;
+#endif // !defined(_di_f_int64ss_adjust_) || !defined(_di_f_int64ss_decimate_by_)
 
 /**
  * Private implementation for resizing the int64ss array.
@@ -1541,14 +1541,14 @@ extern "C" {
  *   Errors (with error bit) from: f_memory_delete().
  *   Errors (with error bit) from: f_memory_resize().
  *
- * @see f_type_int64ss_decrease_by()
- * @see f_type_int64ss_increase()
- * @see f_type_int64ss_increase_by()
- * @see f_type_int64ss_resize()
+ * @see f_int64ss_decrease_by()
+ * @see f_int64ss_increase()
+ * @see f_int64ss_increase_by()
+ * @see f_int64ss_resize()
  */
-#if !defined(_di_f_type_int64ss_decrease_by_) || !defined(_di_f_type_int64ss_increase_) || !defined(_di_f_type_int64ss_increase_by_) || !defined(_di_f_type_int64ss_resize_)
-  extern f_status_t private_f_type_int64ss_resize(const f_array_length_t length, f_int64ss_t *int64ss) F_attribute_visibility_internal_d;
-#endif // !defined(_di_f_type_int64ss_decrease_by_) || !defined(_di_f_type_int64ss_increase_) || !defined(_di_f_type_int64ss_increase_by_) || !defined(_di_f_type_int64ss_resize_)
+#if !defined(_di_f_int64ss_decrease_by_) || !defined(_di_f_int64ss_increase_) || !defined(_di_f_int64ss_increase_by_) || !defined(_di_f_int64ss_resize_)
+  extern f_status_t private_f_int64ss_resize(const f_array_length_t length, f_int64ss_t *int64ss) F_attribute_visibility_internal_d;
+#endif // !defined(_di_f_int64ss_decrease_by_) || !defined(_di_f_int64ss_increase_) || !defined(_di_f_int64ss_increase_by_) || !defined(_di_f_int64ss_resize_)
 
 /**
  * Private implementation for resizing the uint64s array.
@@ -1566,12 +1566,12 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_adjust().
  *
- * @see f_type_uint64s_adjust()
- * @see f_type_uint64s_decimate_by()
+ * @see f_uint64s_adjust()
+ * @see f_uint64s_decimate_by()
  */
-#if !defined(_di_f_type_uint64s_adjust_) || !defined(_di_f_type_uint64s_decimate_by_)
-  extern f_status_t private_f_type_uint64s_adjust(const f_array_length_t length, f_uint64s_t *uint64s) F_attribute_visibility_internal_d;
-#endif // !defined(_di_f_type_uint64s_adjust_) || !defined(_di_f_type_uint64s_decimate_by_)
+#if !defined(_di_f_uint64s_adjust_) || !defined(_di_f_uint64s_decimate_by_)
+  extern f_status_t private_f_uint64s_adjust(const f_array_length_t length, f_uint64s_t *uint64s) F_attribute_visibility_internal_d;
+#endif // !defined(_di_f_uint64s_adjust_) || !defined(_di_f_uint64s_decimate_by_)
 
 /**
  * Private implementation for appending the uint64 array.
@@ -1588,12 +1588,12 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  *
- * @see f_type_uint64s_append()
- * @see f_type_uint64ss_append()
+ * @see f_uint64s_append()
+ * @see f_uint64ss_append()
  */
-#if !defined(_di_f_type_uint64s_append_) || !defined(_di_f_type_uint64ss_append_)
-  extern f_status_t private_f_type_uint64s_append(const f_uint64s_t source, f_uint64s_t *destination) F_attribute_visibility_internal_d;
-#endif // !defined(_di_f_type_uint64s_append_) || !defined(_di_f_type_uint64ss_append_)
+#if !defined(_di_f_uint64s_append_) || !defined(_di_f_uint64ss_append_)
+  extern f_status_t private_f_uint64s_append(const f_uint64s_t source, f_uint64s_t *destination) F_attribute_visibility_internal_d;
+#endif // !defined(_di_f_uint64s_append_) || !defined(_di_f_uint64ss_append_)
 
 /**
  * Private implementation for resizing the uint64s array.
@@ -1611,14 +1611,14 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  *
- * @see f_type_uint64s_resize()
- * @see f_type_uint64s_append()
- * @see f_type_uint64s_decimate_by()
- * @see f_type_uint64ss_append()
+ * @see f_uint64s_resize()
+ * @see f_uint64s_append()
+ * @see f_uint64s_decimate_by()
+ * @see f_uint64ss_append()
  */
-#if !defined(_di_f_type_uint64s_resize_) || !defined(_di_f_type_uint64s_append_) || !defined(_di_f_type_uint64s_decimate_by_) || !defined(_di_f_type_uint64ss_append_)
-  extern f_status_t private_f_type_uint64s_resize(const f_array_length_t length, f_uint64s_t *uint64s) F_attribute_visibility_internal_d;
-#endif // !defined(_di_f_type_uint64s_resize_) || !defined(_di_f_type_uint64s_append_) || !defined(_di_f_type_uint64s_decimate_by_) || !defined(_di_f_type_uint64ss_append_)
+#if !defined(_di_f_uint64s_resize_) || !defined(_di_f_uint64s_append_) || !defined(_di_f_uint64s_decimate_by_) || !defined(_di_f_uint64ss_append_)
+  extern f_status_t private_f_uint64s_resize(const f_array_length_t length, f_uint64s_t *uint64s) F_attribute_visibility_internal_d;
+#endif // !defined(_di_f_uint64s_resize_) || !defined(_di_f_uint64s_append_) || !defined(_di_f_uint64s_decimate_by_) || !defined(_di_f_uint64ss_append_)
 
 /**
  * Private implementation for resizing the uint64ss array.
@@ -1641,12 +1641,12 @@ extern "C" {
  *   Errors (with error bit) from: f_memory_adjust().
  *   Errors (with error bit) from: f_memory_destroy().
  *
- * @see f_type_uint64ss_adjust()
- * @see f_type_uint64ss_decimate_by()
+ * @see f_uint64ss_adjust()
+ * @see f_uint64ss_decimate_by()
  */
-#if !defined(_di_f_type_uint64ss_adjust_) || !defined(_di_f_type_uint64ss_decimate_by_)
-  extern f_status_t private_f_type_uint64ss_adjust(const f_array_length_t length, f_uint64ss_t *uint64ss) F_attribute_visibility_internal_d;
-#endif // !defined(_di_f_type_uint64ss_adjust_) || !defined(_di_f_type_uint64ss_decimate_by_)
+#if !defined(_di_f_uint64ss_adjust_) || !defined(_di_f_uint64ss_decimate_by_)
+  extern f_status_t private_f_uint64ss_adjust(const f_array_length_t length, f_uint64ss_t *uint64ss) F_attribute_visibility_internal_d;
+#endif // !defined(_di_f_uint64ss_adjust_) || !defined(_di_f_uint64ss_decimate_by_)
 
 /**
  * Private implementation for resizing the uint64ss array.
@@ -1669,14 +1669,14 @@ extern "C" {
  *   Errors (with error bit) from: f_memory_delete().
  *   Errors (with error bit) from: f_memory_resize().
  *
- * @see f_type_uint64ss_decrease_by()
- * @see f_type_uint64ss_increase()
- * @see f_type_uint64ss_increase_by()
- * @see f_type_uint64ss_resize()
+ * @see f_uint64ss_decrease_by()
+ * @see f_uint64ss_increase()
+ * @see f_uint64ss_increase_by()
+ * @see f_uint64ss_resize()
  */
-#if !defined(_di_f_type_uint64ss_decrease_by_) || !defined(_di_f_type_uint64ss_increase_) || !defined(_di_f_type_uint64ss_increase_by_) || !defined(_di_f_type_uint64ss_resize_)
-  extern f_status_t private_f_type_uint64ss_resize(const f_array_length_t length, f_uint64ss_t *uint64ss) F_attribute_visibility_internal_d;
-#endif // !defined(_di_f_type_uint64ss_decrease_by_) || !defined(_di_f_type_uint64ss_increase_) || !defined(_di_f_type_uint64ss_increase_by_) || !defined(_di_f_type_uint64ss_resize_)
+#if !defined(_di_f_uint64ss_decrease_by_) || !defined(_di_f_uint64ss_increase_) || !defined(_di_f_uint64ss_increase_by_) || !defined(_di_f_uint64ss_resize_)
+  extern f_status_t private_f_uint64ss_resize(const f_array_length_t length, f_uint64ss_t *uint64ss) F_attribute_visibility_internal_d;
+#endif // !defined(_di_f_uint64ss_decrease_by_) || !defined(_di_f_uint64ss_increase_) || !defined(_di_f_uint64ss_increase_by_) || !defined(_di_f_uint64ss_resize_)
 
 /**
  * Private implementation for resizing the int128s array.
@@ -1694,12 +1694,12 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_adjust().
  *
- * @see f_type_int128s_adjust()
- * @see f_type_int128s_decimate_by()
+ * @see f_int128s_adjust()
+ * @see f_int128s_decimate_by()
  */
-#if !defined(_di_f_type_int128s_adjust_) || !defined(_di_f_type_int128s_decimate_by_)
-  extern f_status_t private_f_type_int128s_adjust(const f_array_length_t length, f_int128s_t *int128s) F_attribute_visibility_internal_d;
-#endif // !defined(_di_f_type_int128s_adjust_) || !defined(_di_f_type_int128s_decimate_by_)
+#if !defined(_di_f_int128s_adjust_) || !defined(_di_f_int128s_decimate_by_)
+  extern f_status_t private_f_int128s_adjust(const f_array_length_t length, f_int128s_t *int128s) F_attribute_visibility_internal_d;
+#endif // !defined(_di_f_int128s_adjust_) || !defined(_di_f_int128s_decimate_by_)
 
 /**
  * Private implementation for appending the int128 array.
@@ -1716,12 +1716,12 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  *
- * @see f_type_int128s_append()
- * @see f_type_int128ss_append()
+ * @see f_int128s_append()
+ * @see f_int128ss_append()
  */
-#if !defined(_di_f_type_int128s_append_) || !defined(_di_f_type_int128ss_append_)
-  extern f_status_t private_f_type_int128s_append(const f_int128s_t source, f_int128s_t *destination) F_attribute_visibility_internal_d;
-#endif // !defined(_di_f_type_int128s_append_) || !defined(_di_f_type_int128ss_append_)
+#if !defined(_di_f_int128s_append_) || !defined(_di_f_int128ss_append_)
+  extern f_status_t private_f_int128s_append(const f_int128s_t source, f_int128s_t *destination) F_attribute_visibility_internal_d;
+#endif // !defined(_di_f_int128s_append_) || !defined(_di_f_int128ss_append_)
 
 /**
  * Private implementation for resizing the int128s array.
@@ -1739,14 +1739,14 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  *
- * @see f_type_int128s_resize()
- * @see f_type_int128s_append()
- * @see f_type_int128s_decimate_by()
- * @see f_type_int128ss_append()
+ * @see f_int128s_resize()
+ * @see f_int128s_append()
+ * @see f_int128s_decimate_by()
+ * @see f_int128ss_append()
  */
-#if !defined(_di_f_type_int128s_resize_) || !defined(_di_f_type_int128s_append_) || !defined(_di_f_type_int128s_decimate_by_) || !defined(_di_f_type_int128ss_append_)
-  extern f_status_t private_f_type_int128s_resize(const f_array_length_t length, f_int128s_t *int128s) F_attribute_visibility_internal_d;
-#endif // !defined(_di_f_type_int128s_resize_) || !defined(_di_f_type_int128s_append_) || !defined(_di_f_type_int128s_decimate_by_) || !defined(_di_f_type_int128ss_append_)
+#if !defined(_di_f_int128s_resize_) || !defined(_di_f_int128s_append_) || !defined(_di_f_int128s_decimate_by_) || !defined(_di_f_int128ss_append_)
+  extern f_status_t private_f_int128s_resize(const f_array_length_t length, f_int128s_t *int128s) F_attribute_visibility_internal_d;
+#endif // !defined(_di_f_int128s_resize_) || !defined(_di_f_int128s_append_) || !defined(_di_f_int128s_decimate_by_) || !defined(_di_f_int128ss_append_)
 
 /**
  * Private implementation for resizing the int128ss array.
@@ -1769,12 +1769,12 @@ extern "C" {
  *   Errors (with error bit) from: f_memory_adjust().
  *   Errors (with error bit) from: f_memory_destroy().
  *
- * @see f_type_int128ss_adjust()
- * @see f_type_int128ss_decimate_by()
+ * @see f_int128ss_adjust()
+ * @see f_int128ss_decimate_by()
  */
-#if !defined(_di_f_type_int128ss_adjust_) || !defined(_di_f_type_int128ss_decimate_by_)
-  extern f_status_t private_f_type_int128ss_adjust(const f_array_length_t length, f_int128ss_t *int128ss) F_attribute_visibility_internal_d;
-#endif // !defined(_di_f_type_int128ss_adjust_) || !defined(_di_f_type_int128ss_decimate_by_)
+#if !defined(_di_f_int128ss_adjust_) || !defined(_di_f_int128ss_decimate_by_)
+  extern f_status_t private_f_int128ss_adjust(const f_array_length_t length, f_int128ss_t *int128ss) F_attribute_visibility_internal_d;
+#endif // !defined(_di_f_int128ss_adjust_) || !defined(_di_f_int128ss_decimate_by_)
 
 /**
  * Private implementation for resizing the int128ss array.
@@ -1797,14 +1797,14 @@ extern "C" {
  *   Errors (with error bit) from: f_memory_delete().
  *   Errors (with error bit) from: f_memory_resize().
  *
- * @see f_type_int128ss_decrease_by()
- * @see f_type_int128ss_increase()
- * @see f_type_int128ss_increase_by()
- * @see f_type_int128ss_resize()
+ * @see f_int128ss_decrease_by()
+ * @see f_int128ss_increase()
+ * @see f_int128ss_increase_by()
+ * @see f_int128ss_resize()
  */
-#if !defined(_di_f_type_int128ss_decrease_by_) || !defined(_di_f_type_int128ss_increase_) || !defined(_di_f_type_int128ss_increase_by_) || !defined(_di_f_type_int128ss_resize_)
-  extern f_status_t private_f_type_int128ss_resize(const f_array_length_t length, f_int128ss_t *int128ss) F_attribute_visibility_internal_d;
-#endif // !defined(_di_f_type_int128ss_decrease_by_) || !defined(_di_f_type_int128ss_increase_) || !defined(_di_f_type_int128ss_increase_by_) || !defined(_di_f_type_int128ss_resize_)
+#if !defined(_di_f_int128ss_decrease_by_) || !defined(_di_f_int128ss_increase_) || !defined(_di_f_int128ss_increase_by_) || !defined(_di_f_int128ss_resize_)
+  extern f_status_t private_f_int128ss_resize(const f_array_length_t length, f_int128ss_t *int128ss) F_attribute_visibility_internal_d;
+#endif // !defined(_di_f_int128ss_decrease_by_) || !defined(_di_f_int128ss_increase_) || !defined(_di_f_int128ss_increase_by_) || !defined(_di_f_int128ss_resize_)
 
 /**
  * Private implementation for resizing the uint128s array.
@@ -1822,12 +1822,12 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_adjust().
  *
- * @see f_type_uint128s_adjust()
- * @see f_type_uint128s_decimate_by()
+ * @see f_uint128s_adjust()
+ * @see f_uint128s_decimate_by()
  */
-#if !defined(_di_f_type_uint128s_adjust_) || !defined(_di_f_type_uint128s_decimate_by_)
-  extern f_status_t private_f_type_uint128s_adjust(const f_array_length_t length, f_uint128s_t *uint128s) F_attribute_visibility_internal_d;
-#endif // !defined(_di_f_type_uint128s_adjust_) || !defined(_di_f_type_uint128s_decimate_by_)
+#if !defined(_di_f_uint128s_adjust_) || !defined(_di_f_uint128s_decimate_by_)
+  extern f_status_t private_f_uint128s_adjust(const f_array_length_t length, f_uint128s_t *uint128s) F_attribute_visibility_internal_d;
+#endif // !defined(_di_f_uint128s_adjust_) || !defined(_di_f_uint128s_decimate_by_)
 
 /**
  * Private implementation for appending the uint128 array.
@@ -1844,12 +1844,12 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  *
- * @see f_type_uint128s_append()
- * @see f_type_uint128ss_append()
+ * @see f_uint128s_append()
+ * @see f_uint128ss_append()
  */
-#if !defined(_di_f_type_uint128s_append_) || !defined(_di_f_type_uint128ss_append_)
-  extern f_status_t private_f_type_uint128s_append(const f_uint128s_t source, f_uint128s_t *destination) F_attribute_visibility_internal_d;
-#endif // !defined(_di_f_type_uint128s_append_) || !defined(_di_f_type_uint128ss_append_)
+#if !defined(_di_f_uint128s_append_) || !defined(_di_f_uint128ss_append_)
+  extern f_status_t private_f_uint128s_append(const f_uint128s_t source, f_uint128s_t *destination) F_attribute_visibility_internal_d;
+#endif // !defined(_di_f_uint128s_append_) || !defined(_di_f_uint128ss_append_)
 
 /**
  * Private implementation for resizing the uint128s array.
@@ -1867,14 +1867,14 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  *
- * @see f_type_uint128s_resize()
- * @see f_type_uint128s_append()
- * @see f_type_uint128s_decimate_by()
- * @see f_type_uint128ss_append()
+ * @see f_uint128s_resize()
+ * @see f_uint128s_append()
+ * @see f_uint128s_decimate_by()
+ * @see f_uint128ss_append()
  */
-#if !defined(_di_f_type_uint128s_resize_) || !defined(_di_f_type_uint128s_append_) || !defined(_di_f_type_uint128s_decimate_by_) || !defined(_di_f_type_uint128ss_append_)
-  extern f_status_t private_f_type_uint128s_resize(const f_array_length_t length, f_uint128s_t *uint128s) F_attribute_visibility_internal_d;
-#endif // !defined(_di_f_type_uint128s_resize_) || !defined(_di_f_type_uint128s_append_) || !defined(_di_f_type_uint128s_decimate_by_) || !defined(_di_f_type_uint128ss_append_)
+#if !defined(_di_f_uint128s_resize_) || !defined(_di_f_uint128s_append_) || !defined(_di_f_uint128s_decimate_by_) || !defined(_di_f_uint128ss_append_)
+  extern f_status_t private_f_uint128s_resize(const f_array_length_t length, f_uint128s_t *uint128s) F_attribute_visibility_internal_d;
+#endif // !defined(_di_f_uint128s_resize_) || !defined(_di_f_uint128s_append_) || !defined(_di_f_uint128s_decimate_by_) || !defined(_di_f_uint128ss_append_)
 
 /**
  * Private implementation for resizing the uint128ss array.
@@ -1897,12 +1897,12 @@ extern "C" {
  *   Errors (with error bit) from: f_memory_adjust().
  *   Errors (with error bit) from: f_memory_destroy().
  *
- * @see f_type_uint128ss_adjust()
- * @see f_type_uint128ss_decimate_by()
+ * @see f_uint128ss_adjust()
+ * @see f_uint128ss_decimate_by()
  */
-#if !defined(_di_f_type_uint128ss_adjust_) || !defined(_di_f_type_uint128ss_decimate_by_)
-  extern f_status_t private_f_type_uint128ss_adjust(const f_array_length_t length, f_uint128ss_t *uint128ss) F_attribute_visibility_internal_d;
-#endif // !defined(_di_f_type_uint128ss_adjust_) || !defined(_di_f_type_uint128ss_decimate_by_)
+#if !defined(_di_f_uint128ss_adjust_) || !defined(_di_f_uint128ss_decimate_by_)
+  extern f_status_t private_f_uint128ss_adjust(const f_array_length_t length, f_uint128ss_t *uint128ss) F_attribute_visibility_internal_d;
+#endif // !defined(_di_f_uint128ss_adjust_) || !defined(_di_f_uint128ss_decimate_by_)
 
 /**
  * Private implementation for resizing the uint128ss array.
@@ -1925,14 +1925,14 @@ extern "C" {
  *   Errors (with error bit) from: f_memory_delete().
  *   Errors (with error bit) from: f_memory_resize().
  *
- * @see f_type_uint128ss_decrease_by()
- * @see f_type_uint128ss_increase()
- * @see f_type_uint128ss_increase_by()
- * @see f_type_uint128ss_resize()
+ * @see f_uint128ss_decrease_by()
+ * @see f_uint128ss_increase()
+ * @see f_uint128ss_increase_by()
+ * @see f_uint128ss_resize()
  */
-#if !defined(_di_f_type_uint128ss_decrease_by_) || !defined(_di_f_type_uint128ss_increase_) || !defined(_di_f_type_uint128ss_increase_by_) || !defined(_di_f_type_uint128ss_resize_)
-  extern f_status_t private_f_type_uint128ss_resize(const f_array_length_t length, f_uint128ss_t *uint128ss) F_attribute_visibility_internal_d;
-#endif // !defined(_di_f_type_uint128ss_decrease_by_) || !defined(_di_f_type_uint128ss_increase_) || !defined(_di_f_type_uint128ss_increase_by_) || !defined(_di_f_type_uint128ss_resize_)
+#if !defined(_di_f_uint128ss_decrease_by_) || !defined(_di_f_uint128ss_increase_) || !defined(_di_f_uint128ss_increase_by_) || !defined(_di_f_uint128ss_resize_)
+  extern f_status_t private_f_uint128ss_resize(const f_array_length_t length, f_uint128ss_t *uint128ss) F_attribute_visibility_internal_d;
+#endif // !defined(_di_f_uint128ss_decrease_by_) || !defined(_di_f_uint128ss_increase_) || !defined(_di_f_uint128ss_increase_by_) || !defined(_di_f_uint128ss_resize_)
 
 #ifdef __cplusplus
 } // extern "C"
index 387c2638f8be2146579f306ac4bb8272776328c5..0ce66e8a49389865fc992517ee15edb103e7f52d 100644 (file)
@@ -5,8 +5,8 @@
 extern "C" {
 #endif
 
-#if !defined(_di_f_type_int128s_adjust_) || !defined(_di_f_type_int128s_decimate_by_)
-  f_status_t private_f_type_int128s_adjust(const f_array_length_t length, f_int128s_t *int128s) {
+#if !defined(_di_f_int128s_adjust_) || !defined(_di_f_int128s_decimate_by_)
+  f_status_t private_f_int128s_adjust(const f_array_length_t length, f_int128s_t *int128s) {
 
     const f_status_t status = f_memory_adjust(int128s->size, length, sizeof(f_int128_t), (void **) & int128s->array);
 
@@ -20,15 +20,15 @@ extern "C" {
 
     return status;
   }
-#endif // !defined(_di_f_type_int128s_adjust_) || !defined(_di_f_type_int128s_decimate_by_)
+#endif // !defined(_di_f_int128s_adjust_) || !defined(_di_f_int128s_decimate_by_)
 
-#if !defined(_di_f_type_int128s_append_) || !defined(_di_f_type_int128ss_append_)
-  extern f_status_t private_f_type_int128s_append(const f_int128s_t source, f_int128s_t *destination) {
+#if !defined(_di_f_int128s_append_) || !defined(_di_f_int128ss_append_)
+  extern f_status_t private_f_int128s_append(const f_int128s_t source, f_int128s_t *destination) {
 
     f_status_t status = F_none;
 
     if (destination->used + source.used > destination->size) {
-      status = private_f_type_int128s_adjust(destination->used + source.used, destination);
+      status = private_f_int128s_adjust(destination->used + source.used, destination);
       if (F_status_is_error(status)) return status;
     }
 
@@ -38,10 +38,10 @@ extern "C" {
 
     return F_none;
   }
-#endif // !defined(_di_f_type_int128s_append_) || !defined(_di_f_type_int128ss_append_)
+#endif // !defined(_di_f_int128s_append_) || !defined(_di_f_int128ss_append_)
 
-#if !defined(_di_f_type_int128s_resize_) || !defined(_di_f_type_int128s_append_) || !defined(_di_f_type_int128s_decimate_by_) || !defined(_di_f_type_int128ss_append_)
-  f_status_t private_f_type_int128s_resize(const f_array_length_t length, f_int128s_t *int128s) {
+#if !defined(_di_f_int128s_resize_) || !defined(_di_f_int128s_append_) || !defined(_di_f_int128s_decimate_by_) || !defined(_di_f_int128ss_append_)
+  f_status_t private_f_int128s_resize(const f_array_length_t length, f_int128s_t *int128s) {
 
     const f_status_t status = f_memory_resize(int128s->size, length, sizeof(f_int128_t), (void **) & int128s->array);
 
@@ -55,10 +55,10 @@ extern "C" {
 
     return status;
   }
-#endif // !defined(_di_f_type_int128s_resize_) || !defined(_di_f_type_int128s_append_) || !defined(_di_f_type_int128s_decimate_by_) || !defined(_di_f_type_int128ss_append_)
+#endif // !defined(_di_f_int128s_resize_) || !defined(_di_f_int128s_append_) || !defined(_di_f_int128s_decimate_by_) || !defined(_di_f_int128ss_append_)
 
-#if !defined(_di_f_type_int128ss_adjust_) || !defined(_di_f_type_int128ss_decimate_by_)
-  f_status_t private_f_type_int128ss_adjust(const f_array_length_t length, f_int128ss_t *int128ss) {
+#if !defined(_di_f_int128ss_adjust_) || !defined(_di_f_int128ss_decimate_by_)
+  f_status_t private_f_int128ss_adjust(const f_array_length_t length, f_int128ss_t *int128ss) {
 
     f_status_t status = F_none;
 
@@ -83,10 +83,10 @@ extern "C" {
 
     return status;
   }
-#endif // !defined(_di_f_type_int128ss_adjust_) || !defined(_di_f_type_int128ss_decimate_by_)
+#endif // !defined(_di_f_int128ss_adjust_) || !defined(_di_f_int128ss_decimate_by_)
 
-#if !defined(_di_f_type_int128ss_decrease_by_) || !defined(_di_f_type_int128ss_increase_) || !defined(_di_f_type_int128ss_increase_by_) || !defined(_di_f_type_int128ss_resize_)
-  f_status_t private_f_type_int128ss_resize(const f_array_length_t length, f_int128ss_t *int128ss) {
+#if !defined(_di_f_int128ss_decrease_by_) || !defined(_di_f_int128ss_increase_) || !defined(_di_f_int128ss_increase_by_) || !defined(_di_f_int128ss_resize_)
+  f_status_t private_f_int128ss_resize(const f_array_length_t length, f_int128ss_t *int128ss) {
 
     f_status_t status = F_none;
 
@@ -111,10 +111,10 @@ extern "C" {
 
     return status;
   }
-#endif // !defined(_di_f_type_int128ss_decrease_by_) || !defined(_di_f_type_int128ss_increase_) || !defined(_di_f_type_int128ss_increase_by_) || !defined(_di_f_type_int128ss_resize_)
+#endif // !defined(_di_f_int128ss_decrease_by_) || !defined(_di_f_int128ss_increase_) || !defined(_di_f_int128ss_increase_by_) || !defined(_di_f_int128ss_resize_)
 
-#if !defined(_di_f_type_uint128s_adjust_) || !defined(_di_f_type_uint128s_decimate_by_)
-  f_status_t private_f_type_uint128s_adjust(const f_array_length_t length, f_uint128s_t *uint128s) {
+#if !defined(_di_f_uint128s_adjust_) || !defined(_di_f_uint128s_decimate_by_)
+  f_status_t private_f_uint128s_adjust(const f_array_length_t length, f_uint128s_t *uint128s) {
 
     const f_status_t status = f_memory_adjust(uint128s->size, length, sizeof(f_uint128_t), (void **) & uint128s->array);
 
@@ -128,15 +128,15 @@ extern "C" {
 
     return status;
   }
-#endif // !defined(_di_f_type_uint128s_adjust_) || !defined(_di_f_type_uint128s_decimate_by_)
+#endif // !defined(_di_f_uint128s_adjust_) || !defined(_di_f_uint128s_decimate_by_)
 
-#if !defined(_di_f_type_uint128s_append_) || !defined(_di_f_type_uint128ss_append_)
-  extern f_status_t private_f_type_uint128s_append(const f_uint128s_t source, f_uint128s_t *destination) {
+#if !defined(_di_f_uint128s_append_) || !defined(_di_f_uint128ss_append_)
+  extern f_status_t private_f_uint128s_append(const f_uint128s_t source, f_uint128s_t *destination) {
 
     f_status_t status = F_none;
 
     if (destination->used + source.used > destination->size) {
-      status = private_f_type_uint128s_adjust(destination->used + source.used, destination);
+      status = private_f_uint128s_adjust(destination->used + source.used, destination);
       if (F_status_is_error(status)) return status;
     }
 
@@ -146,10 +146,10 @@ extern "C" {
 
     return F_none;
   }
-#endif // !defined(_di_f_type_uint128s_append_) || !defined(_di_f_type_uint128ss_append_)
+#endif // !defined(_di_f_uint128s_append_) || !defined(_di_f_uint128ss_append_)
 
-#if !defined(_di_f_type_uint128s_resize_) || !defined(_di_f_type_uint128s_append_) || !defined(_di_f_type_uint128s_decimate_by_) || !defined(_di_f_type_uint128ss_append_)
-  f_status_t private_f_type_uint128s_resize(const f_array_length_t length, f_uint128s_t *uint128s) {
+#if !defined(_di_f_uint128s_resize_) || !defined(_di_f_uint128s_append_) || !defined(_di_f_uint128s_decimate_by_) || !defined(_di_f_uint128ss_append_)
+  f_status_t private_f_uint128s_resize(const f_array_length_t length, f_uint128s_t *uint128s) {
 
     const f_status_t status = f_memory_resize(uint128s->size, length, sizeof(f_uint128_t), (void **) & uint128s->array);
 
@@ -163,10 +163,10 @@ extern "C" {
 
     return status;
   }
-#endif // !defined(_di_f_type_uint128s_resize_) || !defined(_di_f_type_uint128s_append_) || !defined(_di_f_type_uint128s_decimate_by_) || !defined(_di_f_type_uint128ss_append_)
+#endif // !defined(_di_f_uint128s_resize_) || !defined(_di_f_uint128s_append_) || !defined(_di_f_uint128s_decimate_by_) || !defined(_di_f_uint128ss_append_)
 
-#if !defined(_di_f_type_uint128ss_adjust_) || !defined(_di_f_type_uint128ss_decimate_by_)
-  f_status_t private_f_type_uint128ss_adjust(const f_array_length_t length, f_uint128ss_t *uint128ss) {
+#if !defined(_di_f_uint128ss_adjust_) || !defined(_di_f_uint128ss_decimate_by_)
+  f_status_t private_f_uint128ss_adjust(const f_array_length_t length, f_uint128ss_t *uint128ss) {
 
     f_status_t status = F_none;
 
@@ -191,10 +191,10 @@ extern "C" {
 
     return status;
   }
-#endif // !defined(_di_f_type_uint128ss_adjust_) || !defined(_di_f_type_uint128ss_decimate_by_)
+#endif // !defined(_di_f_uint128ss_adjust_) || !defined(_di_f_uint128ss_decimate_by_)
 
-#if !defined(_di_f_type_uint128ss_decrease_by_) || !defined(_di_f_type_uint128ss_increase_) || !defined(_di_f_type_uint128ss_increase_by_) || !defined(_di_f_type_uint128ss_resize_)
-  f_status_t private_f_type_uint128ss_resize(const f_array_length_t length, f_uint128ss_t *uint128ss) {
+#if !defined(_di_f_uint128ss_decrease_by_) || !defined(_di_f_uint128ss_increase_) || !defined(_di_f_uint128ss_increase_by_) || !defined(_di_f_uint128ss_resize_)
+  f_status_t private_f_uint128ss_resize(const f_array_length_t length, f_uint128ss_t *uint128ss) {
 
     f_status_t status = F_none;
 
@@ -219,7 +219,7 @@ extern "C" {
 
     return status;
   }
-#endif // !defined(_di_f_type_uint128ss_decrease_by_) || !defined(_di_f_type_uint128ss_increase_) || !defined(_di_f_type_uint128ss_increase_by_) || !defined(_di_f_type_uint128ss_resize_)
+#endif // !defined(_di_f_uint128ss_decrease_by_) || !defined(_di_f_uint128ss_increase_) || !defined(_di_f_uint128ss_increase_by_) || !defined(_di_f_uint128ss_resize_)
 
 #ifdef __cplusplus
 } // extern "C"
index c7a3b363b49fe772d39dc1fbafd651c7159a6023..919b47c8a604ff94782e83096ec6660947d30833 100644 (file)
@@ -31,12 +31,12 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_adjust().
  *
- * @see f_type_int128s_adjust()
- * @see f_type_int128s_decimate_by()
+ * @see f_int128s_adjust()
+ * @see f_int128s_decimate_by()
  */
-#if !defined(_di_f_type_int128s_adjust_) || !defined(_di_f_type_int128s_decimate_by_)
-  extern f_status_t private_f_type_int128s_adjust(const f_array_length_t length, f_int128s_t *int128s) F_attribute_visibility_internal_d;
-#endif // !defined(_di_f_type_int128s_adjust_) || !defined(_di_f_type_int128s_decimate_by_)
+#if !defined(_di_f_int128s_adjust_) || !defined(_di_f_int128s_decimate_by_)
+  extern f_status_t private_f_int128s_adjust(const f_array_length_t length, f_int128s_t *int128s) F_attribute_visibility_internal_d;
+#endif // !defined(_di_f_int128s_adjust_) || !defined(_di_f_int128s_decimate_by_)
 
 /**
  * Private implementation for appending the int128 array.
@@ -53,12 +53,12 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  *
- * @see f_type_int128s_append()
- * @see f_type_int128ss_append()
+ * @see f_int128s_append()
+ * @see f_int128ss_append()
  */
-#if !defined(_di_f_type_int128s_append_) || !defined(_di_f_type_int128ss_append_)
-  extern f_status_t private_f_type_int128s_append(const f_int128s_t source, f_int128s_t *destination) F_attribute_visibility_internal_d;
-#endif // !defined(_di_f_type_int128s_append_) || !defined(_di_f_type_int128ss_append_)
+#if !defined(_di_f_int128s_append_) || !defined(_di_f_int128ss_append_)
+  extern f_status_t private_f_int128s_append(const f_int128s_t source, f_int128s_t *destination) F_attribute_visibility_internal_d;
+#endif // !defined(_di_f_int128s_append_) || !defined(_di_f_int128ss_append_)
 
 /**
  * Private implementation for resizing the int128s array.
@@ -76,14 +76,14 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  *
- * @see f_type_int128s_resize()
- * @see f_type_int128s_append()
- * @see f_type_int128s_decimate_by()
- * @see f_type_int128ss_append()
+ * @see f_int128s_resize()
+ * @see f_int128s_append()
+ * @see f_int128s_decimate_by()
+ * @see f_int128ss_append()
  */
-#if !defined(_di_f_type_int128s_resize_) || !defined(_di_f_type_int128s_append_) || !defined(_di_f_type_int128s_decimate_by_) || !defined(_di_f_type_int128ss_append_)
-  extern f_status_t private_f_type_int128s_resize(const f_array_length_t length, f_int128s_t *int128s) F_attribute_visibility_internal_d;
-#endif // !defined(_di_f_type_int128s_resize_) || !defined(_di_f_type_int128s_append_) || !defined(_di_f_type_int128s_decimate_by_) || !defined(_di_f_type_int128ss_append_)
+#if !defined(_di_f_int128s_resize_) || !defined(_di_f_int128s_append_) || !defined(_di_f_int128s_decimate_by_) || !defined(_di_f_int128ss_append_)
+  extern f_status_t private_f_int128s_resize(const f_array_length_t length, f_int128s_t *int128s) F_attribute_visibility_internal_d;
+#endif // !defined(_di_f_int128s_resize_) || !defined(_di_f_int128s_append_) || !defined(_di_f_int128s_decimate_by_) || !defined(_di_f_int128ss_append_)
 
 /**
  * Private implementation for resizing the int128ss array.
@@ -106,12 +106,12 @@ extern "C" {
  *   Errors (with error bit) from: f_memory_adjust().
  *   Errors (with error bit) from: f_memory_destroy().
  *
- * @see f_type_int128ss_adjust()
- * @see f_type_int128ss_decimate_by()
+ * @see f_int128ss_adjust()
+ * @see f_int128ss_decimate_by()
  */
-#if !defined(_di_f_type_int128ss_adjust_) || !defined(_di_f_type_int128ss_decimate_by_)
-  extern f_status_t private_f_type_int128ss_adjust(const f_array_length_t length, f_int128ss_t *int128ss) F_attribute_visibility_internal_d;
-#endif // !defined(_di_f_type_int128ss_adjust_) || !defined(_di_f_type_int128ss_decimate_by_)
+#if !defined(_di_f_int128ss_adjust_) || !defined(_di_f_int128ss_decimate_by_)
+  extern f_status_t private_f_int128ss_adjust(const f_array_length_t length, f_int128ss_t *int128ss) F_attribute_visibility_internal_d;
+#endif // !defined(_di_f_int128ss_adjust_) || !defined(_di_f_int128ss_decimate_by_)
 
 /**
  * Private implementation for resizing the int128ss array.
@@ -134,14 +134,14 @@ extern "C" {
  *   Errors (with error bit) from: f_memory_delete().
  *   Errors (with error bit) from: f_memory_resize().
  *
- * @see f_type_int128ss_decrease_by()
- * @see f_type_int128ss_increase()
- * @see f_type_int128ss_increase_by()
- * @see f_type_int128ss_resize()
+ * @see f_int128ss_decrease_by()
+ * @see f_int128ss_increase()
+ * @see f_int128ss_increase_by()
+ * @see f_int128ss_resize()
  */
-#if !defined(_di_f_type_int128ss_decrease_by_) || !defined(_di_f_type_int128ss_increase_) || !defined(_di_f_type_int128ss_increase_by_) || !defined(_di_f_type_int128ss_resize_)
-  extern f_status_t private_f_type_int128ss_resize(const f_array_length_t length, f_int128ss_t *int128ss) F_attribute_visibility_internal_d;
-#endif // !defined(_di_f_type_int128ss_decrease_by_) || !defined(_di_f_type_int128ss_increase_) || !defined(_di_f_type_int128ss_increase_by_) || !defined(_di_f_type_int128ss_resize_)
+#if !defined(_di_f_int128ss_decrease_by_) || !defined(_di_f_int128ss_increase_) || !defined(_di_f_int128ss_increase_by_) || !defined(_di_f_int128ss_resize_)
+  extern f_status_t private_f_int128ss_resize(const f_array_length_t length, f_int128ss_t *int128ss) F_attribute_visibility_internal_d;
+#endif // !defined(_di_f_int128ss_decrease_by_) || !defined(_di_f_int128ss_increase_) || !defined(_di_f_int128ss_increase_by_) || !defined(_di_f_int128ss_resize_)
 
 /**
  * Private implementation for resizing the uint128s array.
@@ -159,12 +159,12 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_adjust().
  *
- * @see f_type_uint128s_adjust()
- * @see f_type_uint128s_decimate_by()
+ * @see f_uint128s_adjust()
+ * @see f_uint128s_decimate_by()
  */
-#if !defined(_di_f_type_uint128s_adjust_) || !defined(_di_f_type_uint128s_decimate_by_)
-  extern f_status_t private_f_type_uint128s_adjust(const f_array_length_t length, f_uint128s_t *uint128s) F_attribute_visibility_internal_d;
-#endif // !defined(_di_f_type_uint128s_adjust_) || !defined(_di_f_type_uint128s_decimate_by_)
+#if !defined(_di_f_uint128s_adjust_) || !defined(_di_f_uint128s_decimate_by_)
+  extern f_status_t private_f_uint128s_adjust(const f_array_length_t length, f_uint128s_t *uint128s) F_attribute_visibility_internal_d;
+#endif // !defined(_di_f_uint128s_adjust_) || !defined(_di_f_uint128s_decimate_by_)
 
 /**
  * Private implementation for appending the uint128 array.
@@ -181,12 +181,12 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  *
- * @see f_type_uint128s_append()
- * @see f_type_uint128ss_append()
+ * @see f_uint128s_append()
+ * @see f_uint128ss_append()
  */
-#if !defined(_di_f_type_uint128s_append_) || !defined(_di_f_type_uint128ss_append_)
-  extern f_status_t private_f_type_uint128s_append(const f_uint128s_t source, f_uint128s_t *destination) F_attribute_visibility_internal_d;
-#endif // !defined(_di_f_type_uint128s_append_) || !defined(_di_f_type_uint128ss_append_)
+#if !defined(_di_f_uint128s_append_) || !defined(_di_f_uint128ss_append_)
+  extern f_status_t private_f_uint128s_append(const f_uint128s_t source, f_uint128s_t *destination) F_attribute_visibility_internal_d;
+#endif // !defined(_di_f_uint128s_append_) || !defined(_di_f_uint128ss_append_)
 
 /**
  * Private implementation for resizing the uint128s array.
@@ -204,14 +204,14 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  *
- * @see f_type_uint128s_resize()
- * @see f_type_uint128s_append()
- * @see f_type_uint128s_decimate_by()
- * @see f_type_uint128ss_append()
+ * @see f_uint128s_resize()
+ * @see f_uint128s_append()
+ * @see f_uint128s_decimate_by()
+ * @see f_uint128ss_append()
  */
-#if !defined(_di_f_type_uint128s_resize_) || !defined(_di_f_type_uint128s_append_) || !defined(_di_f_type_uint128s_decimate_by_) || !defined(_di_f_type_uint128ss_append_)
-  extern f_status_t private_f_type_uint128s_resize(const f_array_length_t length, f_uint128s_t *uint128s) F_attribute_visibility_internal_d;
-#endif // !defined(_di_f_type_uint128s_resize_) || !defined(_di_f_type_uint128s_append_) || !defined(_di_f_type_uint128s_decimate_by_) || !defined(_di_f_type_uint128ss_append_)
+#if !defined(_di_f_uint128s_resize_) || !defined(_di_f_uint128s_append_) || !defined(_di_f_uint128s_decimate_by_) || !defined(_di_f_uint128ss_append_)
+  extern f_status_t private_f_uint128s_resize(const f_array_length_t length, f_uint128s_t *uint128s) F_attribute_visibility_internal_d;
+#endif // !defined(_di_f_uint128s_resize_) || !defined(_di_f_uint128s_append_) || !defined(_di_f_uint128s_decimate_by_) || !defined(_di_f_uint128ss_append_)
 
 /**
  * Private implementation for resizing the uint128ss array.
@@ -234,12 +234,12 @@ extern "C" {
  *   Errors (with error bit) from: f_memory_adjust().
  *   Errors (with error bit) from: f_memory_destroy().
  *
- * @see f_type_uint128ss_adjust()
- * @see f_type_uint128ss_decimate_by()
+ * @see f_uint128ss_adjust()
+ * @see f_uint128ss_decimate_by()
  */
-#if !defined(_di_f_type_uint128ss_adjust_) || !defined(_di_f_type_uint128ss_decimate_by_)
-  extern f_status_t private_f_type_uint128ss_adjust(const f_array_length_t length, f_uint128ss_t *uint128ss) F_attribute_visibility_internal_d;
-#endif // !defined(_di_f_type_uint128ss_adjust_) || !defined(_di_f_type_uint128ss_decimate_by_)
+#if !defined(_di_f_uint128ss_adjust_) || !defined(_di_f_uint128ss_decimate_by_)
+  extern f_status_t private_f_uint128ss_adjust(const f_array_length_t length, f_uint128ss_t *uint128ss) F_attribute_visibility_internal_d;
+#endif // !defined(_di_f_uint128ss_adjust_) || !defined(_di_f_uint128ss_decimate_by_)
 
 /**
  * Private implementation for resizing the uint128ss array.
@@ -262,14 +262,14 @@ extern "C" {
  *   Errors (with error bit) from: f_memory_delete().
  *   Errors (with error bit) from: f_memory_resize().
  *
- * @see f_type_uint128ss_decrease_by()
- * @see f_type_uint128ss_increase()
- * @see f_type_uint128ss_increase_by()
- * @see f_type_uint128ss_resize()
+ * @see f_uint128ss_decrease_by()
+ * @see f_uint128ss_increase()
+ * @see f_uint128ss_increase_by()
+ * @see f_uint128ss_resize()
  */
-#if !defined(_di_f_type_uint128ss_decrease_by_) || !defined(_di_f_type_uint128ss_increase_) || !defined(_di_f_type_uint128ss_increase_by_) || !defined(_di_f_type_uint128ss_resize_)
-  extern f_status_t private_f_type_uint128ss_resize(const f_array_length_t length, f_uint128ss_t *uint128ss) F_attribute_visibility_internal_d;
-#endif // !defined(_di_f_type_uint128ss_decrease_by_) || !defined(_di_f_type_uint128ss_increase_) || !defined(_di_f_type_uint128ss_increase_by_) || !defined(_di_f_type_uint128ss_resize_)
+#if !defined(_di_f_uint128ss_decrease_by_) || !defined(_di_f_uint128ss_increase_) || !defined(_di_f_uint128ss_increase_by_) || !defined(_di_f_uint128ss_resize_)
+  extern f_status_t private_f_uint128ss_resize(const f_array_length_t length, f_uint128ss_t *uint128ss) F_attribute_visibility_internal_d;
+#endif // !defined(_di_f_uint128ss_decrease_by_) || !defined(_di_f_uint128ss_increase_) || !defined(_di_f_uint128ss_increase_by_) || !defined(_di_f_uint128ss_resize_)
 
 #ifdef __cplusplus
 } // extern "C"
index a0ac56a113dbf50122fa6f197de578c20f255939..76a0f22dbb6330ecb26fd9e05447ca102d182e9a 100644 (file)
@@ -5,8 +5,8 @@
 extern "C" {
 #endif
 
-#if !defined(_di_f_type_int16s_adjust_) || !defined(_di_f_type_int16s_decimate_by_)
-  f_status_t private_f_type_int16s_adjust(const f_array_length_t length, f_int16s_t *int16s) {
+#if !defined(_di_f_int16s_adjust_) || !defined(_di_f_int16s_decimate_by_)
+  f_status_t private_f_int16s_adjust(const f_array_length_t length, f_int16s_t *int16s) {
 
     const f_status_t status = f_memory_adjust(int16s->size, length, sizeof(int16_t), (void **) & int16s->array);
 
@@ -20,15 +20,15 @@ extern "C" {
 
     return status;
   }
-#endif // !defined(_di_f_type_int16s_adjust_) || !defined(_di_f_type_int16s_decimate_by_)
+#endif // !defined(_di_f_int16s_adjust_) || !defined(_di_f_int16s_decimate_by_)
 
-#if !defined(_di_f_type_int16s_append_) || !defined(_di_f_type_int16ss_append_)
-  extern f_status_t private_f_type_int16s_append(const f_int16s_t source, f_int16s_t *destination) {
+#if !defined(_di_f_int16s_append_) || !defined(_di_f_int16ss_append_)
+  extern f_status_t private_f_int16s_append(const f_int16s_t source, f_int16s_t *destination) {
 
     f_status_t status = F_none;
 
     if (destination->used + source.used > destination->size) {
-      status = private_f_type_int16s_adjust(destination->used + source.used, destination);
+      status = private_f_int16s_adjust(destination->used + source.used, destination);
       if (F_status_is_error(status)) return status;
     }
 
@@ -38,10 +38,10 @@ extern "C" {
 
     return F_none;
   }
-#endif // !defined(_di_f_type_int16s_append_) || !defined(_di_f_type_int16ss_append_)
+#endif // !defined(_di_f_int16s_append_) || !defined(_di_f_int16ss_append_)
 
-#if !defined(_di_f_type_int16s_resize_) || !defined(_di_f_type_int16s_append_) || !defined(_di_f_type_int16s_decimate_by_) || !defined(_di_f_type_int16ss_append_)
-  f_status_t private_f_type_int16s_resize(const f_array_length_t length, f_int16s_t *int16s) {
+#if !defined(_di_f_int16s_resize_) || !defined(_di_f_int16s_append_) || !defined(_di_f_int16s_decimate_by_) || !defined(_di_f_int16ss_append_)
+  f_status_t private_f_int16s_resize(const f_array_length_t length, f_int16s_t *int16s) {
 
     const f_status_t status = f_memory_resize(int16s->size, length, sizeof(int16_t), (void **) & int16s->array);
 
@@ -55,10 +55,10 @@ extern "C" {
 
     return status;
   }
-#endif // !defined(_di_f_type_int16s_resize_) || !defined(_di_f_type_int16s_append_) || !defined(_di_f_type_int16s_decimate_by_) || !defined(_di_f_type_int16ss_append_)
+#endif // !defined(_di_f_int16s_resize_) || !defined(_di_f_int16s_append_) || !defined(_di_f_int16s_decimate_by_) || !defined(_di_f_int16ss_append_)
 
-#if !defined(_di_f_type_int16ss_adjust_) || !defined(_di_f_type_int16ss_decimate_by_)
-  f_status_t private_f_type_int16ss_adjust(const f_array_length_t length, f_int16ss_t *int16ss) {
+#if !defined(_di_f_int16ss_adjust_) || !defined(_di_f_int16ss_decimate_by_)
+  f_status_t private_f_int16ss_adjust(const f_array_length_t length, f_int16ss_t *int16ss) {
 
     f_status_t status = F_none;
 
@@ -83,10 +83,10 @@ extern "C" {
 
     return status;
   }
-#endif // !defined(_di_f_type_int16ss_adjust_) || !defined(_di_f_type_int16ss_decimate_by_)
+#endif // !defined(_di_f_int16ss_adjust_) || !defined(_di_f_int16ss_decimate_by_)
 
-#if !defined(_di_f_type_int16ss_decrease_by_) || !defined(_di_f_type_int16ss_increase_) || !defined(_di_f_type_int16ss_increase_by_) || !defined(_di_f_type_int16ss_resize_)
-  f_status_t private_f_type_int16ss_resize(const f_array_length_t length, f_int16ss_t *int16ss) {
+#if !defined(_di_f_int16ss_decrease_by_) || !defined(_di_f_int16ss_increase_) || !defined(_di_f_int16ss_increase_by_) || !defined(_di_f_int16ss_resize_)
+  f_status_t private_f_int16ss_resize(const f_array_length_t length, f_int16ss_t *int16ss) {
 
     f_status_t status = F_none;
 
@@ -111,10 +111,10 @@ extern "C" {
 
     return status;
   }
-#endif // !defined(_di_f_type_int16ss_decrease_by_) || !defined(_di_f_type_int16ss_increase_) || !defined(_di_f_type_int16ss_increase_by_) || !defined(_di_f_type_int16ss_resize_)
+#endif // !defined(_di_f_int16ss_decrease_by_) || !defined(_di_f_int16ss_increase_) || !defined(_di_f_int16ss_increase_by_) || !defined(_di_f_int16ss_resize_)
 
-#if !defined(_di_f_type_uint16s_adjust_) || !defined(_di_f_type_uint16s_decimate_by_)
-  f_status_t private_f_type_uint16s_adjust(const f_array_length_t length, f_uint16s_t *uint16s) {
+#if !defined(_di_f_uint16s_adjust_) || !defined(_di_f_uint16s_decimate_by_)
+  f_status_t private_f_uint16s_adjust(const f_array_length_t length, f_uint16s_t *uint16s) {
 
     const f_status_t status = f_memory_adjust(uint16s->size, length, sizeof(uint16_t), (void **) & uint16s->array);
 
@@ -128,15 +128,15 @@ extern "C" {
 
     return status;
   }
-#endif // !defined(_di_f_type_uint16s_adjust_) || !defined(_di_f_type_uint16s_decimate_by_)
+#endif // !defined(_di_f_uint16s_adjust_) || !defined(_di_f_uint16s_decimate_by_)
 
-#if !defined(_di_f_type_uint16s_append_) || !defined(_di_f_type_uint16ss_append_)
-  extern f_status_t private_f_type_uint16s_append(const f_uint16s_t source, f_uint16s_t *destination) {
+#if !defined(_di_f_uint16s_append_) || !defined(_di_f_uint16ss_append_)
+  extern f_status_t private_f_uint16s_append(const f_uint16s_t source, f_uint16s_t *destination) {
 
     f_status_t status = F_none;
 
     if (destination->used + source.used > destination->size) {
-      status = private_f_type_uint16s_adjust(destination->used + source.used, destination);
+      status = private_f_uint16s_adjust(destination->used + source.used, destination);
       if (F_status_is_error(status)) return status;
     }
 
@@ -146,10 +146,10 @@ extern "C" {
 
     return F_none;
   }
-#endif // !defined(_di_f_type_uint16s_append_) || !defined(_di_f_type_uint16ss_append_)
+#endif // !defined(_di_f_uint16s_append_) || !defined(_di_f_uint16ss_append_)
 
-#if !defined(_di_f_type_uint16s_resize_) || !defined(_di_f_type_uint16s_append_) || !defined(_di_f_type_uint16s_decimate_by_) || !defined(_di_f_type_uint16ss_append_)
-  f_status_t private_f_type_uint16s_resize(const f_array_length_t length, f_uint16s_t *uint16s) {
+#if !defined(_di_f_uint16s_resize_) || !defined(_di_f_uint16s_append_) || !defined(_di_f_uint16s_decimate_by_) || !defined(_di_f_uint16ss_append_)
+  f_status_t private_f_uint16s_resize(const f_array_length_t length, f_uint16s_t *uint16s) {
 
     const f_status_t status = f_memory_resize(uint16s->size, length, sizeof(uint16_t), (void **) & uint16s->array);
 
@@ -163,10 +163,10 @@ extern "C" {
 
     return status;
   }
-#endif // !defined(_di_f_type_uint16s_resize_) || !defined(_di_f_type_uint16s_append_) || !defined(_di_f_type_uint16s_decimate_by_) || !defined(_di_f_type_uint16ss_append_)
+#endif // !defined(_di_f_uint16s_resize_) || !defined(_di_f_uint16s_append_) || !defined(_di_f_uint16s_decimate_by_) || !defined(_di_f_uint16ss_append_)
 
-#if !defined(_di_f_type_uint16ss_adjust_) || !defined(_di_f_type_uint16ss_decimate_by_)
-  f_status_t private_f_type_uint16ss_adjust(const f_array_length_t length, f_uint16ss_t *uint16ss) {
+#if !defined(_di_f_uint16ss_adjust_) || !defined(_di_f_uint16ss_decimate_by_)
+  f_status_t private_f_uint16ss_adjust(const f_array_length_t length, f_uint16ss_t *uint16ss) {
 
     f_status_t status = F_none;
 
@@ -191,10 +191,10 @@ extern "C" {
 
     return status;
   }
-#endif // !defined(_di_f_type_uint16ss_adjust_) || !defined(_di_f_type_uint16ss_decimate_by_)
+#endif // !defined(_di_f_uint16ss_adjust_) || !defined(_di_f_uint16ss_decimate_by_)
 
-#if !defined(_di_f_type_uint16ss_decrease_by_) || !defined(_di_f_type_uint16ss_increase_) || !defined(_di_f_type_uint16ss_increase_by_) || !defined(_di_f_type_uint16ss_resize_)
-  f_status_t private_f_type_uint16ss_resize(const f_array_length_t length, f_uint16ss_t *uint16ss) {
+#if !defined(_di_f_uint16ss_decrease_by_) || !defined(_di_f_uint16ss_increase_) || !defined(_di_f_uint16ss_increase_by_) || !defined(_di_f_uint16ss_resize_)
+  f_status_t private_f_uint16ss_resize(const f_array_length_t length, f_uint16ss_t *uint16ss) {
 
     f_status_t status = F_none;
 
@@ -219,7 +219,7 @@ extern "C" {
 
     return status;
   }
-#endif // !defined(_di_f_type_uint16ss_decrease_by_) || !defined(_di_f_type_uint16ss_increase_) || !defined(_di_f_type_uint16ss_increase_by_) || !defined(_di_f_type_uint16ss_resize_)
+#endif // !defined(_di_f_uint16ss_decrease_by_) || !defined(_di_f_uint16ss_increase_) || !defined(_di_f_uint16ss_increase_by_) || !defined(_di_f_uint16ss_resize_)
 
 #ifdef __cplusplus
 } // extern "C"
index a22ea92d43c078fb58e55218f01506aee184e013..ade08c4e029d31a31616d4ac3b0eaa77fc6903c4 100644 (file)
@@ -31,12 +31,12 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_adjust().
  *
- * @see f_type_int16s_adjust()
- * @see f_type_int16s_decimate_by()
+ * @see f_int16s_adjust()
+ * @see f_int16s_decimate_by()
  */
-#if !defined(_di_f_type_int16s_adjust_) || !defined(_di_f_type_int16s_decimate_by_)
-  extern f_status_t private_f_type_int16s_adjust(const f_array_length_t length, f_int16s_t *int16s) F_attribute_visibility_internal_d;
-#endif // !defined(_di_f_type_int16s_adjust_) || !defined(_di_f_type_int16s_decimate_by_)
+#if !defined(_di_f_int16s_adjust_) || !defined(_di_f_int16s_decimate_by_)
+  extern f_status_t private_f_int16s_adjust(const f_array_length_t length, f_int16s_t *int16s) F_attribute_visibility_internal_d;
+#endif // !defined(_di_f_int16s_adjust_) || !defined(_di_f_int16s_decimate_by_)
 
 /**
  * Private implementation for appending the int16 array.
@@ -53,12 +53,12 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  *
- * @see f_type_int16s_append()
- * @see f_type_int16ss_append()
+ * @see f_int16s_append()
+ * @see f_int16ss_append()
  */
-#if !defined(_di_f_type_int16s_append_) || !defined(_di_f_type_int16ss_append_)
-  extern f_status_t private_f_type_int16s_append(const f_int16s_t source, f_int16s_t *destination) F_attribute_visibility_internal_d;
-#endif // !defined(_di_f_type_int16s_append_) || !defined(_di_f_type_int16ss_append_)
+#if !defined(_di_f_int16s_append_) || !defined(_di_f_int16ss_append_)
+  extern f_status_t private_f_int16s_append(const f_int16s_t source, f_int16s_t *destination) F_attribute_visibility_internal_d;
+#endif // !defined(_di_f_int16s_append_) || !defined(_di_f_int16ss_append_)
 
 /**
  * Private implementation for resizing the int16s array.
@@ -76,14 +76,14 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  *
- * @see f_type_int16s_resize()
- * @see f_type_int16s_append()
- * @see f_type_int16s_decimate_by()
- * @see f_type_int16ss_append()
+ * @see f_int16s_resize()
+ * @see f_int16s_append()
+ * @see f_int16s_decimate_by()
+ * @see f_int16ss_append()
  */
-#if !defined(_di_f_type_int16s_resize_) || !defined(_di_f_type_int16s_append_) || !defined(_di_f_type_int16s_decimate_by_) || !defined(_di_f_type_int16ss_append_)
-  extern f_status_t private_f_type_int16s_resize(const f_array_length_t length, f_int16s_t *int16s) F_attribute_visibility_internal_d;
-#endif // !defined(_di_f_type_int16s_resize_) || !defined(_di_f_type_int16s_append_) || !defined(_di_f_type_int16s_decimate_by_) || !defined(_di_f_type_int16ss_append_)
+#if !defined(_di_f_int16s_resize_) || !defined(_di_f_int16s_append_) || !defined(_di_f_int16s_decimate_by_) || !defined(_di_f_int16ss_append_)
+  extern f_status_t private_f_int16s_resize(const f_array_length_t length, f_int16s_t *int16s) F_attribute_visibility_internal_d;
+#endif // !defined(_di_f_int16s_resize_) || !defined(_di_f_int16s_append_) || !defined(_di_f_int16s_decimate_by_) || !defined(_di_f_int16ss_append_)
 
 /**
  * Private implementation for resizing the int16ss array.
@@ -106,12 +106,12 @@ extern "C" {
  *   Errors (with error bit) from: f_memory_adjust().
  *   Errors (with error bit) from: f_memory_destroy().
  *
- * @see f_type_int16ss_adjust()
- * @see f_type_int16ss_decimate_by()
+ * @see f_int16ss_adjust()
+ * @see f_int16ss_decimate_by()
  */
-#if !defined(_di_f_type_int16ss_adjust_) || !defined(_di_f_type_int16ss_decimate_by_)
-  extern f_status_t private_f_type_int16ss_adjust(const f_array_length_t length, f_int16ss_t *int16ss) F_attribute_visibility_internal_d;
-#endif // !defined(_di_f_type_int16ss_adjust_) || !defined(_di_f_type_int16ss_decimate_by_)
+#if !defined(_di_f_int16ss_adjust_) || !defined(_di_f_int16ss_decimate_by_)
+  extern f_status_t private_f_int16ss_adjust(const f_array_length_t length, f_int16ss_t *int16ss) F_attribute_visibility_internal_d;
+#endif // !defined(_di_f_int16ss_adjust_) || !defined(_di_f_int16ss_decimate_by_)
 
 /**
  * Private implementation for resizing the int16ss array.
@@ -134,14 +134,14 @@ extern "C" {
  *   Errors (with error bit) from: f_memory_delete().
  *   Errors (with error bit) from: f_memory_resize().
  *
- * @see f_type_int16ss_decrease_by()
- * @see f_type_int16ss_increase()
- * @see f_type_int16ss_increase_by()
- * @see f_type_int16ss_resize()
+ * @see f_int16ss_decrease_by()
+ * @see f_int16ss_increase()
+ * @see f_int16ss_increase_by()
+ * @see f_int16ss_resize()
  */
-#if !defined(_di_f_type_int16ss_decrease_by_) || !defined(_di_f_type_int16ss_increase_) || !defined(_di_f_type_int16ss_increase_by_) || !defined(_di_f_type_int16ss_resize_)
-  extern f_status_t private_f_type_int16ss_resize(const f_array_length_t length, f_int16ss_t *int16ss) F_attribute_visibility_internal_d;
-#endif // !defined(_di_f_type_int16ss_decrease_by_) || !defined(_di_f_type_int16ss_increase_) || !defined(_di_f_type_int16ss_increase_by_) || !defined(_di_f_type_int16ss_resize_)
+#if !defined(_di_f_int16ss_decrease_by_) || !defined(_di_f_int16ss_increase_) || !defined(_di_f_int16ss_increase_by_) || !defined(_di_f_int16ss_resize_)
+  extern f_status_t private_f_int16ss_resize(const f_array_length_t length, f_int16ss_t *int16ss) F_attribute_visibility_internal_d;
+#endif // !defined(_di_f_int16ss_decrease_by_) || !defined(_di_f_int16ss_increase_) || !defined(_di_f_int16ss_increase_by_) || !defined(_di_f_int16ss_resize_)
 
 /**
  * Private implementation for resizing the uint16s array.
@@ -159,12 +159,12 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_adjust().
  *
- * @see f_type_uint16s_adjust()
- * @see f_type_uint16s_decimate_by()
+ * @see f_uint16s_adjust()
+ * @see f_uint16s_decimate_by()
  */
-#if !defined(_di_f_type_uint16s_adjust_) || !defined(_di_f_type_uint16s_decimate_by_)
-  extern f_status_t private_f_type_uint16s_adjust(const f_array_length_t length, f_uint16s_t *uint16s) F_attribute_visibility_internal_d;
-#endif // !defined(_di_f_type_uint16s_adjust_) || !defined(_di_f_type_uint16s_decimate_by_)
+#if !defined(_di_f_uint16s_adjust_) || !defined(_di_f_uint16s_decimate_by_)
+  extern f_status_t private_f_uint16s_adjust(const f_array_length_t length, f_uint16s_t *uint16s) F_attribute_visibility_internal_d;
+#endif // !defined(_di_f_uint16s_adjust_) || !defined(_di_f_uint16s_decimate_by_)
 
 /**
  * Private implementation for appending the uint16 array.
@@ -181,12 +181,12 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  *
- * @see f_type_uint16s_append()
- * @see f_type_uint16ss_append()
+ * @see f_uint16s_append()
+ * @see f_uint16ss_append()
  */
-#if !defined(_di_f_type_uint16s_append_) || !defined(_di_f_type_uint16ss_append_)
-  extern f_status_t private_f_type_uint16s_append(const f_uint16s_t source, f_uint16s_t *destination) F_attribute_visibility_internal_d;
-#endif // !defined(_di_f_type_uint16s_append_) || !defined(_di_f_type_uint16ss_append_)
+#if !defined(_di_f_uint16s_append_) || !defined(_di_f_uint16ss_append_)
+  extern f_status_t private_f_uint16s_append(const f_uint16s_t source, f_uint16s_t *destination) F_attribute_visibility_internal_d;
+#endif // !defined(_di_f_uint16s_append_) || !defined(_di_f_uint16ss_append_)
 
 /**
  * Private implementation for resizing the uint16s array.
@@ -204,14 +204,14 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  *
- * @see f_type_uint16s_resize()
- * @see f_type_uint16s_append()
- * @see f_type_uint16s_decimate_by()
- * @see f_type_uint16ss_append()
+ * @see f_uint16s_resize()
+ * @see f_uint16s_append()
+ * @see f_uint16s_decimate_by()
+ * @see f_uint16ss_append()
  */
-#if !defined(_di_f_type_uint16s_resize_) || !defined(_di_f_type_uint16s_append_) || !defined(_di_f_type_uint16s_decimate_by_) || !defined(_di_f_type_uint16ss_append_)
-  extern f_status_t private_f_type_uint16s_resize(const f_array_length_t length, f_uint16s_t *uint16s) F_attribute_visibility_internal_d;
-#endif // !defined(_di_f_type_uint16s_resize_) || !defined(_di_f_type_uint16s_append_) || !defined(_di_f_type_uint16s_decimate_by_) || !defined(_di_f_type_uint16ss_append_)
+#if !defined(_di_f_uint16s_resize_) || !defined(_di_f_uint16s_append_) || !defined(_di_f_uint16s_decimate_by_) || !defined(_di_f_uint16ss_append_)
+  extern f_status_t private_f_uint16s_resize(const f_array_length_t length, f_uint16s_t *uint16s) F_attribute_visibility_internal_d;
+#endif // !defined(_di_f_uint16s_resize_) || !defined(_di_f_uint16s_append_) || !defined(_di_f_uint16s_decimate_by_) || !defined(_di_f_uint16ss_append_)
 
 /**
  * Private implementation for resizing the uint16ss array.
@@ -234,12 +234,12 @@ extern "C" {
  *   Errors (with error bit) from: f_memory_adjust().
  *   Errors (with error bit) from: f_memory_destroy().
  *
- * @see f_type_uint16ss_adjust()
- * @see f_type_uint16ss_decimate_by()
+ * @see f_uint16ss_adjust()
+ * @see f_uint16ss_decimate_by()
  */
-#if !defined(_di_f_type_uint16ss_adjust_) || !defined(_di_f_type_uint16ss_decimate_by_)
-  extern f_status_t private_f_type_uint16ss_adjust(const f_array_length_t length, f_uint16ss_t *uint16ss) F_attribute_visibility_internal_d;
-#endif // !defined(_di_f_type_uint16ss_adjust_) || !defined(_di_f_type_uint16ss_decimate_by_)
+#if !defined(_di_f_uint16ss_adjust_) || !defined(_di_f_uint16ss_decimate_by_)
+  extern f_status_t private_f_uint16ss_adjust(const f_array_length_t length, f_uint16ss_t *uint16ss) F_attribute_visibility_internal_d;
+#endif // !defined(_di_f_uint16ss_adjust_) || !defined(_di_f_uint16ss_decimate_by_)
 
 /**
  * Private implementation for resizing the uint16ss array.
@@ -262,14 +262,14 @@ extern "C" {
  *   Errors (with error bit) from: f_memory_delete().
  *   Errors (with error bit) from: f_memory_resize().
  *
- * @see f_type_uint16ss_decrease_by()
- * @see f_type_uint16ss_increase()
- * @see f_type_uint16ss_increase_by()
- * @see f_type_uint16ss_resize()
+ * @see f_uint16ss_decrease_by()
+ * @see f_uint16ss_increase()
+ * @see f_uint16ss_increase_by()
+ * @see f_uint16ss_resize()
  */
-#if !defined(_di_f_type_uint16ss_decrease_by_) || !defined(_di_f_type_uint16ss_increase_) || !defined(_di_f_type_uint16ss_increase_by_) || !defined(_di_f_type_uint16ss_resize_)
-  extern f_status_t private_f_type_uint16ss_resize(const f_array_length_t length, f_uint16ss_t *uint16ss) F_attribute_visibility_internal_d;
-#endif // !defined(_di_f_type_uint16ss_decrease_by_) || !defined(_di_f_type_uint16ss_increase_) || !defined(_di_f_type_uint16ss_increase_by_) || !defined(_di_f_type_uint16ss_resize_)
+#if !defined(_di_f_uint16ss_decrease_by_) || !defined(_di_f_uint16ss_increase_) || !defined(_di_f_uint16ss_increase_by_) || !defined(_di_f_uint16ss_resize_)
+  extern f_status_t private_f_uint16ss_resize(const f_array_length_t length, f_uint16ss_t *uint16ss) F_attribute_visibility_internal_d;
+#endif // !defined(_di_f_uint16ss_decrease_by_) || !defined(_di_f_uint16ss_increase_) || !defined(_di_f_uint16ss_increase_by_) || !defined(_di_f_uint16ss_resize_)
 
 #ifdef __cplusplus
 } // extern "C"
index 8cda65c6730ae9f77bdf81dc2c29f176c1e0d41b..10f910d4e1efd35b3132f5b1b2a6c5506447369c 100644 (file)
@@ -5,8 +5,8 @@
 extern "C" {
 #endif
 
-#if !defined(_di_f_type_int32s_adjust_) || !defined(_di_f_type_int32s_decimate_by_)
-  f_status_t private_f_type_int32s_adjust(const f_array_length_t length, f_int32s_t *int32s) {
+#if !defined(_di_f_int32s_adjust_) || !defined(_di_f_int32s_decimate_by_)
+  f_status_t private_f_int32s_adjust(const f_array_length_t length, f_int32s_t *int32s) {
 
     const f_status_t status = f_memory_adjust(int32s->size, length, sizeof(int32_t), (void **) & int32s->array);
 
@@ -20,15 +20,15 @@ extern "C" {
 
     return status;
   }
-#endif // !defined(_di_f_type_int32s_adjust_) || !defined(_di_f_type_int32s_decimate_by_)
+#endif // !defined(_di_f_int32s_adjust_) || !defined(_di_f_int32s_decimate_by_)
 
-#if !defined(_di_f_type_int32s_append_) || !defined(_di_f_type_int32ss_append_)
-  extern f_status_t private_f_type_int32s_append(const f_int32s_t source, f_int32s_t *destination) {
+#if !defined(_di_f_int32s_append_) || !defined(_di_f_int32ss_append_)
+  extern f_status_t private_f_int32s_append(const f_int32s_t source, f_int32s_t *destination) {
 
     f_status_t status = F_none;
 
     if (destination->used + source.used > destination->size) {
-      status = private_f_type_int32s_adjust(destination->used + source.used, destination);
+      status = private_f_int32s_adjust(destination->used + source.used, destination);
       if (F_status_is_error(status)) return status;
     }
 
@@ -38,10 +38,10 @@ extern "C" {
 
     return F_none;
   }
-#endif // !defined(_di_f_type_int32s_append_) || !defined(_di_f_type_int32ss_append_)
+#endif // !defined(_di_f_int32s_append_) || !defined(_di_f_int32ss_append_)
 
-#if !defined(_di_f_type_int32s_resize_) || !defined(_di_f_type_int32s_append_) || !defined(_di_f_type_int32s_decimate_by_) || !defined(_di_f_type_int32ss_append_)
-  f_status_t private_f_type_int32s_resize(const f_array_length_t length, f_int32s_t *int32s) {
+#if !defined(_di_f_int32s_resize_) || !defined(_di_f_int32s_append_) || !defined(_di_f_int32s_decimate_by_) || !defined(_di_f_int32ss_append_)
+  f_status_t private_f_int32s_resize(const f_array_length_t length, f_int32s_t *int32s) {
 
     const f_status_t status = f_memory_resize(int32s->size, length, sizeof(int32_t), (void **) & int32s->array);
 
@@ -55,10 +55,10 @@ extern "C" {
 
     return status;
   }
-#endif // !defined(_di_f_type_int32s_resize_) || !defined(_di_f_type_int32s_append_) || !defined(_di_f_type_int32s_decimate_by_) || !defined(_di_f_type_int32ss_append_)
+#endif // !defined(_di_f_int32s_resize_) || !defined(_di_f_int32s_append_) || !defined(_di_f_int32s_decimate_by_) || !defined(_di_f_int32ss_append_)
 
-#if !defined(_di_f_type_int32ss_adjust_) || !defined(_di_f_type_int32ss_decimate_by_)
-  f_status_t private_f_type_int32ss_adjust(const f_array_length_t length, f_int32ss_t *int32ss) {
+#if !defined(_di_f_int32ss_adjust_) || !defined(_di_f_int32ss_decimate_by_)
+  f_status_t private_f_int32ss_adjust(const f_array_length_t length, f_int32ss_t *int32ss) {
 
     f_status_t status = F_none;
 
@@ -83,10 +83,10 @@ extern "C" {
 
     return status;
   }
-#endif // !defined(_di_f_type_int32ss_adjust_) || !defined(_di_f_type_int32ss_decimate_by_)
+#endif // !defined(_di_f_int32ss_adjust_) || !defined(_di_f_int32ss_decimate_by_)
 
-#if !defined(_di_f_type_int32ss_decrease_by_) || !defined(_di_f_type_int32ss_increase_) || !defined(_di_f_type_int32ss_increase_by_) || !defined(_di_f_type_int32ss_resize_)
-  f_status_t private_f_type_int32ss_resize(const f_array_length_t length, f_int32ss_t *int32ss) {
+#if !defined(_di_f_int32ss_decrease_by_) || !defined(_di_f_int32ss_increase_) || !defined(_di_f_int32ss_increase_by_) || !defined(_di_f_int32ss_resize_)
+  f_status_t private_f_int32ss_resize(const f_array_length_t length, f_int32ss_t *int32ss) {
 
     f_status_t status = F_none;
 
@@ -111,10 +111,10 @@ extern "C" {
 
     return status;
   }
-#endif // !defined(_di_f_type_int32ss_decrease_by_) || !defined(_di_f_type_int32ss_increase_) || !defined(_di_f_type_int32ss_increase_by_) || !defined(_di_f_type_int32ss_resize_)
+#endif // !defined(_di_f_int32ss_decrease_by_) || !defined(_di_f_int32ss_increase_) || !defined(_di_f_int32ss_increase_by_) || !defined(_di_f_int32ss_resize_)
 
-#if !defined(_di_f_type_uint32s_adjust_) || !defined(_di_f_type_uint32s_decimate_by_)
-  f_status_t private_f_type_uint32s_adjust(const f_array_length_t length, f_uint32s_t *uint32s) {
+#if !defined(_di_f_uint32s_adjust_) || !defined(_di_f_uint32s_decimate_by_)
+  f_status_t private_f_uint32s_adjust(const f_array_length_t length, f_uint32s_t *uint32s) {
 
     const f_status_t status = f_memory_adjust(uint32s->size, length, sizeof(uint32_t), (void **) & uint32s->array);
 
@@ -128,15 +128,15 @@ extern "C" {
 
     return status;
   }
-#endif // !defined(_di_f_type_uint32s_adjust_) || !defined(_di_f_type_uint32s_decimate_by_)
+#endif // !defined(_di_f_uint32s_adjust_) || !defined(_di_f_uint32s_decimate_by_)
 
-#if !defined(_di_f_type_uint32s_append_) || !defined(_di_f_type_uint32ss_append_)
-  extern f_status_t private_f_type_uint32s_append(const f_uint32s_t source, f_uint32s_t *destination) {
+#if !defined(_di_f_uint32s_append_) || !defined(_di_f_uint32ss_append_)
+  extern f_status_t private_f_uint32s_append(const f_uint32s_t source, f_uint32s_t *destination) {
 
     f_status_t status = F_none;
 
     if (destination->used + source.used > destination->size) {
-      status = private_f_type_uint32s_adjust(destination->used + source.used, destination);
+      status = private_f_uint32s_adjust(destination->used + source.used, destination);
       if (F_status_is_error(status)) return status;
     }
 
@@ -146,10 +146,10 @@ extern "C" {
 
     return F_none;
   }
-#endif // !defined(_di_f_type_uint32s_append_) || !defined(_di_f_type_uint32ss_append_)
+#endif // !defined(_di_f_uint32s_append_) || !defined(_di_f_uint32ss_append_)
 
-#if !defined(_di_f_type_uint32s_resize_) || !defined(_di_f_type_uint32s_append_) || !defined(_di_f_type_uint32s_decimate_by_) || !defined(_di_f_type_uint32ss_append_)
-  f_status_t private_f_type_uint32s_resize(const f_array_length_t length, f_uint32s_t *uint32s) {
+#if !defined(_di_f_uint32s_resize_) || !defined(_di_f_uint32s_append_) || !defined(_di_f_uint32s_decimate_by_) || !defined(_di_f_uint32ss_append_)
+  f_status_t private_f_uint32s_resize(const f_array_length_t length, f_uint32s_t *uint32s) {
 
     const f_status_t status = f_memory_resize(uint32s->size, length, sizeof(uint32_t), (void **) & uint32s->array);
 
@@ -163,10 +163,10 @@ extern "C" {
 
     return status;
   }
-#endif // !defined(_di_f_type_uint32s_resize_) || !defined(_di_f_type_uint32s_append_) || !defined(_di_f_type_uint32s_decimate_by_) || !defined(_di_f_type_uint32ss_append_)
+#endif // !defined(_di_f_uint32s_resize_) || !defined(_di_f_uint32s_append_) || !defined(_di_f_uint32s_decimate_by_) || !defined(_di_f_uint32ss_append_)
 
-#if !defined(_di_f_type_uint32ss_adjust_) || !defined(_di_f_type_uint32ss_decimate_by_)
-  f_status_t private_f_type_uint32ss_adjust(const f_array_length_t length, f_uint32ss_t *uint32ss) {
+#if !defined(_di_f_uint32ss_adjust_) || !defined(_di_f_uint32ss_decimate_by_)
+  f_status_t private_f_uint32ss_adjust(const f_array_length_t length, f_uint32ss_t *uint32ss) {
 
     f_status_t status = F_none;
 
@@ -191,10 +191,10 @@ extern "C" {
 
     return status;
   }
-#endif // !defined(_di_f_type_uint32ss_adjust_) || !defined(_di_f_type_uint32ss_decimate_by_)
+#endif // !defined(_di_f_uint32ss_adjust_) || !defined(_di_f_uint32ss_decimate_by_)
 
-#if !defined(_di_f_type_uint32ss_decrease_by_) || !defined(_di_f_type_uint32ss_increase_) || !defined(_di_f_type_uint32ss_increase_by_) || !defined(_di_f_type_uint32ss_resize_)
-  f_status_t private_f_type_uint32ss_resize(const f_array_length_t length, f_uint32ss_t *uint32ss) {
+#if !defined(_di_f_uint32ss_decrease_by_) || !defined(_di_f_uint32ss_increase_) || !defined(_di_f_uint32ss_increase_by_) || !defined(_di_f_uint32ss_resize_)
+  f_status_t private_f_uint32ss_resize(const f_array_length_t length, f_uint32ss_t *uint32ss) {
 
     f_status_t status = F_none;
 
@@ -219,7 +219,7 @@ extern "C" {
 
     return status;
   }
-#endif // !defined(_di_f_type_uint32ss_decrease_by_) || !defined(_di_f_type_uint32ss_increase_) || !defined(_di_f_type_uint32ss_increase_by_) || !defined(_di_f_type_uint32ss_resize_)
+#endif // !defined(_di_f_uint32ss_decrease_by_) || !defined(_di_f_uint32ss_increase_) || !defined(_di_f_uint32ss_increase_by_) || !defined(_di_f_uint32ss_resize_)
 
 #ifdef __cplusplus
 } // extern "C"
index fcf854ec897d2db16bb3c525529a2aa08c7a0d67..920021fdcda2a7dc6dec220f685a83f14924437c 100644 (file)
@@ -31,12 +31,12 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_adjust().
  *
- * @see f_type_int32s_adjust()
- * @see f_type_int32s_decimate_by()
+ * @see f_int32s_adjust()
+ * @see f_int32s_decimate_by()
  */
-#if !defined(_di_f_type_int32s_adjust_) || !defined(_di_f_type_int32s_decimate_by_)
-  extern f_status_t private_f_type_int32s_adjust(const f_array_length_t length, f_int32s_t *int32s) F_attribute_visibility_internal_d;
-#endif // !defined(_di_f_type_int32s_adjust_) || !defined(_di_f_type_int32s_decimate_by_)
+#if !defined(_di_f_int32s_adjust_) || !defined(_di_f_int32s_decimate_by_)
+  extern f_status_t private_f_int32s_adjust(const f_array_length_t length, f_int32s_t *int32s) F_attribute_visibility_internal_d;
+#endif // !defined(_di_f_int32s_adjust_) || !defined(_di_f_int32s_decimate_by_)
 
 /**
  * Private implementation for appending the int32 array.
@@ -53,12 +53,12 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  *
- * @see f_type_int32s_append()
- * @see f_type_int32ss_append()
+ * @see f_int32s_append()
+ * @see f_int32ss_append()
  */
-#if !defined(_di_f_type_int32s_append_) || !defined(_di_f_type_int32ss_append_)
-  extern f_status_t private_f_type_int32s_append(const f_int32s_t source, f_int32s_t *destination) F_attribute_visibility_internal_d;
-#endif // !defined(_di_f_type_int32s_append_) || !defined(_di_f_type_int32ss_append_)
+#if !defined(_di_f_int32s_append_) || !defined(_di_f_int32ss_append_)
+  extern f_status_t private_f_int32s_append(const f_int32s_t source, f_int32s_t *destination) F_attribute_visibility_internal_d;
+#endif // !defined(_di_f_int32s_append_) || !defined(_di_f_int32ss_append_)
 
 /**
  * Private implementation for resizing the int32s array.
@@ -76,14 +76,14 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  *
- * @see f_type_int32s_resize()
- * @see f_type_int32s_append()
- * @see f_type_int32s_decimate_by()
- * @see f_type_int32ss_append()
+ * @see f_int32s_resize()
+ * @see f_int32s_append()
+ * @see f_int32s_decimate_by()
+ * @see f_int32ss_append()
  */
-#if !defined(_di_f_type_int32s_resize_) || !defined(_di_f_type_int32s_append_) || !defined(_di_f_type_int32s_decimate_by_) || !defined(_di_f_type_int32ss_append_)
-  extern f_status_t private_f_type_int32s_resize(const f_array_length_t length, f_int32s_t *int32s) F_attribute_visibility_internal_d;
-#endif // !defined(_di_f_type_int32s_resize_) || !defined(_di_f_type_int32s_append_) || !defined(_di_f_type_int32s_decimate_by_) || !defined(_di_f_type_int32ss_append_)
+#if !defined(_di_f_int32s_resize_) || !defined(_di_f_int32s_append_) || !defined(_di_f_int32s_decimate_by_) || !defined(_di_f_int32ss_append_)
+  extern f_status_t private_f_int32s_resize(const f_array_length_t length, f_int32s_t *int32s) F_attribute_visibility_internal_d;
+#endif // !defined(_di_f_int32s_resize_) || !defined(_di_f_int32s_append_) || !defined(_di_f_int32s_decimate_by_) || !defined(_di_f_int32ss_append_)
 
 /**
  * Private implementation for resizing the int32ss array.
@@ -106,12 +106,12 @@ extern "C" {
  *   Errors (with error bit) from: f_memory_adjust().
  *   Errors (with error bit) from: f_memory_destroy().
  *
- * @see f_type_int32ss_adjust()
- * @see f_type_int32ss_decimate_by()
+ * @see f_int32ss_adjust()
+ * @see f_int32ss_decimate_by()
  */
-#if !defined(_di_f_type_int32ss_adjust_) || !defined(_di_f_type_int32ss_decimate_by_)
-  extern f_status_t private_f_type_int32ss_adjust(const f_array_length_t length, f_int32ss_t *int32ss) F_attribute_visibility_internal_d;
-#endif // !defined(_di_f_type_int32ss_adjust_) || !defined(_di_f_type_int32ss_decimate_by_)
+#if !defined(_di_f_int32ss_adjust_) || !defined(_di_f_int32ss_decimate_by_)
+  extern f_status_t private_f_int32ss_adjust(const f_array_length_t length, f_int32ss_t *int32ss) F_attribute_visibility_internal_d;
+#endif // !defined(_di_f_int32ss_adjust_) || !defined(_di_f_int32ss_decimate_by_)
 
 /**
  * Private implementation for resizing the int32ss array.
@@ -134,14 +134,14 @@ extern "C" {
  *   Errors (with error bit) from: f_memory_delete().
  *   Errors (with error bit) from: f_memory_resize().
  *
- * @see f_type_int32ss_decrease_by()
- * @see f_type_int32ss_increase()
- * @see f_type_int32ss_increase_by()
- * @see f_type_int32ss_resize()
+ * @see f_int32ss_decrease_by()
+ * @see f_int32ss_increase()
+ * @see f_int32ss_increase_by()
+ * @see f_int32ss_resize()
  */
-#if !defined(_di_f_type_int32ss_decrease_by_) || !defined(_di_f_type_int32ss_increase_) || !defined(_di_f_type_int32ss_increase_by_) || !defined(_di_f_type_int32ss_resize_)
-  extern f_status_t private_f_type_int32ss_resize(const f_array_length_t length, f_int32ss_t *int32ss) F_attribute_visibility_internal_d;
-#endif // !defined(_di_f_type_int32ss_decrease_by_) || !defined(_di_f_type_int32ss_increase_) || !defined(_di_f_type_int32ss_increase_by_) || !defined(_di_f_type_int32ss_resize_)
+#if !defined(_di_f_int32ss_decrease_by_) || !defined(_di_f_int32ss_increase_) || !defined(_di_f_int32ss_increase_by_) || !defined(_di_f_int32ss_resize_)
+  extern f_status_t private_f_int32ss_resize(const f_array_length_t length, f_int32ss_t *int32ss) F_attribute_visibility_internal_d;
+#endif // !defined(_di_f_int32ss_decrease_by_) || !defined(_di_f_int32ss_increase_) || !defined(_di_f_int32ss_increase_by_) || !defined(_di_f_int32ss_resize_)
 
 /**
  * Private implementation for resizing the uint32s array.
@@ -159,12 +159,12 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_adjust().
  *
- * @see f_type_uint32s_adjust()
- * @see f_type_uint32s_decimate_by()
+ * @see f_uint32s_adjust()
+ * @see f_uint32s_decimate_by()
  */
-#if !defined(_di_f_type_uint32s_adjust_) || !defined(_di_f_type_uint32s_decimate_by_)
-  extern f_status_t private_f_type_uint32s_adjust(const f_array_length_t length, f_uint32s_t *uint32s) F_attribute_visibility_internal_d;
-#endif // !defined(_di_f_type_uint32s_adjust_) || !defined(_di_f_type_uint32s_decimate_by_)
+#if !defined(_di_f_uint32s_adjust_) || !defined(_di_f_uint32s_decimate_by_)
+  extern f_status_t private_f_uint32s_adjust(const f_array_length_t length, f_uint32s_t *uint32s) F_attribute_visibility_internal_d;
+#endif // !defined(_di_f_uint32s_adjust_) || !defined(_di_f_uint32s_decimate_by_)
 
 /**
  * Private implementation for appending the uint32 array.
@@ -181,12 +181,12 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  *
- * @see f_type_uint32s_append()
- * @see f_type_uint32ss_append()
+ * @see f_uint32s_append()
+ * @see f_uint32ss_append()
  */
-#if !defined(_di_f_type_uint32s_append_) || !defined(_di_f_type_uint32ss_append_)
-  extern f_status_t private_f_type_uint32s_append(const f_uint32s_t source, f_uint32s_t *destination) F_attribute_visibility_internal_d;
-#endif // !defined(_di_f_type_uint32s_append_) || !defined(_di_f_type_uint32ss_append_)
+#if !defined(_di_f_uint32s_append_) || !defined(_di_f_uint32ss_append_)
+  extern f_status_t private_f_uint32s_append(const f_uint32s_t source, f_uint32s_t *destination) F_attribute_visibility_internal_d;
+#endif // !defined(_di_f_uint32s_append_) || !defined(_di_f_uint32ss_append_)
 
 /**
  * Private implementation for resizing the uint32s array.
@@ -204,14 +204,14 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  *
- * @see f_type_uint32s_resize()
- * @see f_type_uint32s_append()
- * @see f_type_uint32s_decimate_by()
- * @see f_type_uint32ss_append()
+ * @see f_uint32s_resize()
+ * @see f_uint32s_append()
+ * @see f_uint32s_decimate_by()
+ * @see f_uint32ss_append()
  */
-#if !defined(_di_f_type_uint32s_resize_) || !defined(_di_f_type_uint32s_append_) || !defined(_di_f_type_uint32s_decimate_by_) || !defined(_di_f_type_uint32ss_append_)
-  extern f_status_t private_f_type_uint32s_resize(const f_array_length_t length, f_uint32s_t *uint32s) F_attribute_visibility_internal_d;
-#endif // !defined(_di_f_type_uint32s_resize_) || !defined(_di_f_type_uint32s_append_) || !defined(_di_f_type_uint32s_decimate_by_) || !defined(_di_f_type_uint32ss_append_)
+#if !defined(_di_f_uint32s_resize_) || !defined(_di_f_uint32s_append_) || !defined(_di_f_uint32s_decimate_by_) || !defined(_di_f_uint32ss_append_)
+  extern f_status_t private_f_uint32s_resize(const f_array_length_t length, f_uint32s_t *uint32s) F_attribute_visibility_internal_d;
+#endif // !defined(_di_f_uint32s_resize_) || !defined(_di_f_uint32s_append_) || !defined(_di_f_uint32s_decimate_by_) || !defined(_di_f_uint32ss_append_)
 
 /**
  * Private implementation for resizing the uint32ss array.
@@ -234,12 +234,12 @@ extern "C" {
  *   Errors (with error bit) from: f_memory_adjust().
  *   Errors (with error bit) from: f_memory_destroy().
  *
- * @see f_type_uint32ss_adjust()
- * @see f_type_uint32ss_decimate_by()
+ * @see f_uint32ss_adjust()
+ * @see f_uint32ss_decimate_by()
  */
-#if !defined(_di_f_type_uint32ss_adjust_) || !defined(_di_f_type_uint32ss_decimate_by_)
-  extern f_status_t private_f_type_uint32ss_adjust(const f_array_length_t length, f_uint32ss_t *uint32ss) F_attribute_visibility_internal_d;
-#endif // !defined(_di_f_type_uint32ss_adjust_) || !defined(_di_f_type_uint32ss_decimate_by_)
+#if !defined(_di_f_uint32ss_adjust_) || !defined(_di_f_uint32ss_decimate_by_)
+  extern f_status_t private_f_uint32ss_adjust(const f_array_length_t length, f_uint32ss_t *uint32ss) F_attribute_visibility_internal_d;
+#endif // !defined(_di_f_uint32ss_adjust_) || !defined(_di_f_uint32ss_decimate_by_)
 
 /**
  * Private implementation for resizing the uint32ss array.
@@ -262,14 +262,14 @@ extern "C" {
  *   Errors (with error bit) from: f_memory_delete().
  *   Errors (with error bit) from: f_memory_resize().
  *
- * @see f_type_uint32ss_decrease_by()
- * @see f_type_uint32ss_increase()
- * @see f_type_uint32ss_increase_by()
- * @see f_type_uint32ss_resize()
+ * @see f_uint32ss_decrease_by()
+ * @see f_uint32ss_increase()
+ * @see f_uint32ss_increase_by()
+ * @see f_uint32ss_resize()
  */
-#if !defined(_di_f_type_uint32ss_decrease_by_) || !defined(_di_f_type_uint32ss_increase_) || !defined(_di_f_type_uint32ss_increase_by_) || !defined(_di_f_type_uint32ss_resize_)
-  extern f_status_t private_f_type_uint32ss_resize(const f_array_length_t length, f_uint32ss_t *uint32ss) F_attribute_visibility_internal_d;
-#endif // !defined(_di_f_type_uint32ss_decrease_by_) || !defined(_di_f_type_uint32ss_increase_) || !defined(_di_f_type_uint32ss_increase_by_) || !defined(_di_f_type_uint32ss_resize_)
+#if !defined(_di_f_uint32ss_decrease_by_) || !defined(_di_f_uint32ss_increase_) || !defined(_di_f_uint32ss_increase_by_) || !defined(_di_f_uint32ss_resize_)
+  extern f_status_t private_f_uint32ss_resize(const f_array_length_t length, f_uint32ss_t *uint32ss) F_attribute_visibility_internal_d;
+#endif // !defined(_di_f_uint32ss_decrease_by_) || !defined(_di_f_uint32ss_increase_) || !defined(_di_f_uint32ss_increase_by_) || !defined(_di_f_uint32ss_resize_)
 
 #ifdef __cplusplus
 } // extern "C"
index 84e128f1115eb90ab7708ceb60f41d79c494dc0a..e3c12d8fe682c676a742bf3be3df1002506f17c9 100644 (file)
@@ -5,8 +5,8 @@
 extern "C" {
 #endif
 
-#if !defined(_di_f_type_int64s_adjust_) || !defined(_di_f_type_int64s_decimate_by_)
-  f_status_t private_f_type_int64s_adjust(const f_array_length_t length, f_int64s_t *int64s) {
+#if !defined(_di_f_int64s_adjust_) || !defined(_di_f_int64s_decimate_by_)
+  f_status_t private_f_int64s_adjust(const f_array_length_t length, f_int64s_t *int64s) {
 
     const f_status_t status = f_memory_adjust(int64s->size, length, sizeof(int64_t), (void **) & int64s->array);
 
@@ -20,15 +20,15 @@ extern "C" {
 
     return status;
   }
-#endif // !defined(_di_f_type_int64s_adjust_) || !defined(_di_f_type_int64s_decimate_by_)
+#endif // !defined(_di_f_int64s_adjust_) || !defined(_di_f_int64s_decimate_by_)
 
-#if !defined(_di_f_type_int64s_append_) || !defined(_di_f_type_int64ss_append_)
-  extern f_status_t private_f_type_int64s_append(const f_int64s_t source, f_int64s_t *destination) {
+#if !defined(_di_f_int64s_append_) || !defined(_di_f_int64ss_append_)
+  extern f_status_t private_f_int64s_append(const f_int64s_t source, f_int64s_t *destination) {
 
     f_status_t status = F_none;
 
     if (destination->used + source.used > destination->size) {
-      status = private_f_type_int64s_adjust(destination->used + source.used, destination);
+      status = private_f_int64s_adjust(destination->used + source.used, destination);
       if (F_status_is_error(status)) return status;
     }
 
@@ -38,10 +38,10 @@ extern "C" {
 
     return F_none;
   }
-#endif // !defined(_di_f_type_int64s_append_) || !defined(_di_f_type_int64ss_append_)
+#endif // !defined(_di_f_int64s_append_) || !defined(_di_f_int64ss_append_)
 
-#if !defined(_di_f_type_int64s_resize_) || !defined(_di_f_type_int64s_append_) || !defined(_di_f_type_int64s_decimate_by_) || !defined(_di_f_type_int64ss_append_)
-  f_status_t private_f_type_int64s_resize(const f_array_length_t length, f_int64s_t *int64s) {
+#if !defined(_di_f_int64s_resize_) || !defined(_di_f_int64s_append_) || !defined(_di_f_int64s_decimate_by_) || !defined(_di_f_int64ss_append_)
+  f_status_t private_f_int64s_resize(const f_array_length_t length, f_int64s_t *int64s) {
 
     const f_status_t status = f_memory_resize(int64s->size, length, sizeof(int64_t), (void **) & int64s->array);
 
@@ -55,10 +55,10 @@ extern "C" {
 
     return status;
   }
-#endif // !defined(_di_f_type_int64s_resize_) || !defined(_di_f_type_int64s_append_) || !defined(_di_f_type_int64s_decimate_by_) || !defined(_di_f_type_int64ss_append_)
+#endif // !defined(_di_f_int64s_resize_) || !defined(_di_f_int64s_append_) || !defined(_di_f_int64s_decimate_by_) || !defined(_di_f_int64ss_append_)
 
-#if !defined(_di_f_type_int64ss_adjust_) || !defined(_di_f_type_int64ss_decimate_by_)
-  f_status_t private_f_type_int64ss_adjust(const f_array_length_t length, f_int64ss_t *int64ss) {
+#if !defined(_di_f_int64ss_adjust_) || !defined(_di_f_int64ss_decimate_by_)
+  f_status_t private_f_int64ss_adjust(const f_array_length_t length, f_int64ss_t *int64ss) {
 
     f_status_t status = F_none;
 
@@ -83,10 +83,10 @@ extern "C" {
 
     return status;
   }
-#endif // !defined(_di_f_type_int64ss_adjust_) || !defined(_di_f_type_int64ss_decimate_by_)
+#endif // !defined(_di_f_int64ss_adjust_) || !defined(_di_f_int64ss_decimate_by_)
 
-#if !defined(_di_f_type_int64ss_decrease_by_) || !defined(_di_f_type_int64ss_increase_) || !defined(_di_f_type_int64ss_increase_by_) || !defined(_di_f_type_int64ss_resize_)
-  f_status_t private_f_type_int64ss_resize(const f_array_length_t length, f_int64ss_t *int64ss) {
+#if !defined(_di_f_int64ss_decrease_by_) || !defined(_di_f_int64ss_increase_) || !defined(_di_f_int64ss_increase_by_) || !defined(_di_f_int64ss_resize_)
+  f_status_t private_f_int64ss_resize(const f_array_length_t length, f_int64ss_t *int64ss) {
 
     f_status_t status = F_none;
 
@@ -111,10 +111,10 @@ extern "C" {
 
     return status;
   }
-#endif // !defined(_di_f_type_int64ss_decrease_by_) || !defined(_di_f_type_int64ss_increase_) || !defined(_di_f_type_int64ss_increase_by_) || !defined(_di_f_type_int64ss_resize_)
+#endif // !defined(_di_f_int64ss_decrease_by_) || !defined(_di_f_int64ss_increase_) || !defined(_di_f_int64ss_increase_by_) || !defined(_di_f_int64ss_resize_)
 
-#if !defined(_di_f_type_uint64s_adjust_) || !defined(_di_f_type_uint64s_decimate_by_)
-  f_status_t private_f_type_uint64s_adjust(const f_array_length_t length, f_uint64s_t *uint64s) {
+#if !defined(_di_f_uint64s_adjust_) || !defined(_di_f_uint64s_decimate_by_)
+  f_status_t private_f_uint64s_adjust(const f_array_length_t length, f_uint64s_t *uint64s) {
 
     const f_status_t status = f_memory_adjust(uint64s->size, length, sizeof(uint64_t), (void **) & uint64s->array);
 
@@ -128,15 +128,15 @@ extern "C" {
 
     return status;
   }
-#endif // !defined(_di_f_type_uint64s_adjust_) || !defined(_di_f_type_uint64s_decimate_by_)
+#endif // !defined(_di_f_uint64s_adjust_) || !defined(_di_f_uint64s_decimate_by_)
 
-#if !defined(_di_f_type_uint64s_append_) || !defined(_di_f_type_uint64ss_append_)
-  extern f_status_t private_f_type_uint64s_append(const f_uint64s_t source, f_uint64s_t *destination) {
+#if !defined(_di_f_uint64s_append_) || !defined(_di_f_uint64ss_append_)
+  extern f_status_t private_f_uint64s_append(const f_uint64s_t source, f_uint64s_t *destination) {
 
     f_status_t status = F_none;
 
     if (destination->used + source.used > destination->size) {
-      status = private_f_type_uint64s_adjust(destination->used + source.used, destination);
+      status = private_f_uint64s_adjust(destination->used + source.used, destination);
       if (F_status_is_error(status)) return status;
     }
 
@@ -146,10 +146,10 @@ extern "C" {
 
     return F_none;
   }
-#endif // !defined(_di_f_type_uint64s_append_) || !defined(_di_f_type_uint64ss_append_)
+#endif // !defined(_di_f_uint64s_append_) || !defined(_di_f_uint64ss_append_)
 
-#if !defined(_di_f_type_uint64s_resize_) || !defined(_di_f_type_uint64s_append_) || !defined(_di_f_type_uint64s_decimate_by_) || !defined(_di_f_type_uint64ss_append_)
-  f_status_t private_f_type_uint64s_resize(const f_array_length_t length, f_uint64s_t *uint64s) {
+#if !defined(_di_f_uint64s_resize_) || !defined(_di_f_uint64s_append_) || !defined(_di_f_uint64s_decimate_by_) || !defined(_di_f_uint64ss_append_)
+  f_status_t private_f_uint64s_resize(const f_array_length_t length, f_uint64s_t *uint64s) {
 
     const f_status_t status = f_memory_resize(uint64s->size, length, sizeof(uint64_t), (void **) & uint64s->array);
 
@@ -163,10 +163,10 @@ extern "C" {
 
     return status;
   }
-#endif // !defined(_di_f_type_uint64s_resize_) || !defined(_di_f_type_uint64s_append_) || !defined(_di_f_type_uint64s_decimate_by_) || !defined(_di_f_type_uint64ss_append_)
+#endif // !defined(_di_f_uint64s_resize_) || !defined(_di_f_uint64s_append_) || !defined(_di_f_uint64s_decimate_by_) || !defined(_di_f_uint64ss_append_)
 
-#if !defined(_di_f_type_uint64ss_adjust_) || !defined(_di_f_type_uint64ss_decimate_by_)
-  f_status_t private_f_type_uint64ss_adjust(const f_array_length_t length, f_uint64ss_t *uint64ss) {
+#if !defined(_di_f_uint64ss_adjust_) || !defined(_di_f_uint64ss_decimate_by_)
+  f_status_t private_f_uint64ss_adjust(const f_array_length_t length, f_uint64ss_t *uint64ss) {
 
     f_status_t status = F_none;
 
@@ -191,10 +191,10 @@ extern "C" {
 
     return status;
   }
-#endif // !defined(_di_f_type_uint64ss_adjust_) || !defined(_di_f_type_uint64ss_decimate_by_)
+#endif // !defined(_di_f_uint64ss_adjust_) || !defined(_di_f_uint64ss_decimate_by_)
 
-#if !defined(_di_f_type_uint64ss_decrease_by_) || !defined(_di_f_type_uint64ss_increase_) || !defined(_di_f_type_uint64ss_increase_by_) || !defined(_di_f_type_uint64ss_resize_)
-  f_status_t private_f_type_uint64ss_resize(const f_array_length_t length, f_uint64ss_t *uint64ss) {
+#if !defined(_di_f_uint64ss_decrease_by_) || !defined(_di_f_uint64ss_increase_) || !defined(_di_f_uint64ss_increase_by_) || !defined(_di_f_uint64ss_resize_)
+  f_status_t private_f_uint64ss_resize(const f_array_length_t length, f_uint64ss_t *uint64ss) {
 
     f_status_t status = F_none;
 
@@ -219,7 +219,7 @@ extern "C" {
 
     return status;
   }
-#endif // !defined(_di_f_type_uint64ss_decrease_by_) || !defined(_di_f_type_uint64ss_increase_) || !defined(_di_f_type_uint64ss_increase_by_) || !defined(_di_f_type_uint64ss_resize_)
+#endif // !defined(_di_f_uint64ss_decrease_by_) || !defined(_di_f_uint64ss_increase_) || !defined(_di_f_uint64ss_increase_by_) || !defined(_di_f_uint64ss_resize_)
 
 #ifdef __cplusplus
 } // extern "C"
index bcf17a2af2bcc2b00a3b3f3dc9227df2211621a9..741065d54b800cf75b081352552e5259d3700dd3 100644 (file)
@@ -31,12 +31,12 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_adjust().
  *
- * @see f_type_int64s_adjust()
- * @see f_type_int64s_decimate_by()
+ * @see f_int64s_adjust()
+ * @see f_int64s_decimate_by()
  */
-#if !defined(_di_f_type_int64s_adjust_) || !defined(_di_f_type_int64s_decimate_by_)
-  extern f_status_t private_f_type_int64s_adjust(const f_array_length_t length, f_int64s_t *int64s) F_attribute_visibility_internal_d;
-#endif // !defined(_di_f_type_int64s_adjust_) || !defined(_di_f_type_int64s_decimate_by_)
+#if !defined(_di_f_int64s_adjust_) || !defined(_di_f_int64s_decimate_by_)
+  extern f_status_t private_f_int64s_adjust(const f_array_length_t length, f_int64s_t *int64s) F_attribute_visibility_internal_d;
+#endif // !defined(_di_f_int64s_adjust_) || !defined(_di_f_int64s_decimate_by_)
 
 /**
  * Private implementation for appending the int64 array.
@@ -53,12 +53,12 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  *
- * @see f_type_int64s_append()
- * @see f_type_int64ss_append()
+ * @see f_int64s_append()
+ * @see f_int64ss_append()
  */
-#if !defined(_di_f_type_int64s_append_) || !defined(_di_f_type_int64ss_append_)
-  extern f_status_t private_f_type_int64s_append(const f_int64s_t source, f_int64s_t *destination) F_attribute_visibility_internal_d;
-#endif // !defined(_di_f_type_int64s_append_) || !defined(_di_f_type_int64ss_append_)
+#if !defined(_di_f_int64s_append_) || !defined(_di_f_int64ss_append_)
+  extern f_status_t private_f_int64s_append(const f_int64s_t source, f_int64s_t *destination) F_attribute_visibility_internal_d;
+#endif // !defined(_di_f_int64s_append_) || !defined(_di_f_int64ss_append_)
 
 /**
  * Private implementation for resizing the int64s array.
@@ -76,14 +76,14 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  *
- * @see f_type_int64s_resize()
- * @see f_type_int64s_append()
- * @see f_type_int64s_decimate_by()
- * @see f_type_int64ss_append()
+ * @see f_int64s_resize()
+ * @see f_int64s_append()
+ * @see f_int64s_decimate_by()
+ * @see f_int64ss_append()
  */
-#if !defined(_di_f_type_int64s_resize_) || !defined(_di_f_type_int64s_append_) || !defined(_di_f_type_int64s_decimate_by_) || !defined(_di_f_type_int64ss_append_)
-  extern f_status_t private_f_type_int64s_resize(const f_array_length_t length, f_int64s_t *int64s) F_attribute_visibility_internal_d;
-#endif // !defined(_di_f_type_int64s_resize_) || !defined(_di_f_type_int64s_append_) || !defined(_di_f_type_int64s_decimate_by_) || !defined(_di_f_type_int64ss_append_)
+#if !defined(_di_f_int64s_resize_) || !defined(_di_f_int64s_append_) || !defined(_di_f_int64s_decimate_by_) || !defined(_di_f_int64ss_append_)
+  extern f_status_t private_f_int64s_resize(const f_array_length_t length, f_int64s_t *int64s) F_attribute_visibility_internal_d;
+#endif // !defined(_di_f_int64s_resize_) || !defined(_di_f_int64s_append_) || !defined(_di_f_int64s_decimate_by_) || !defined(_di_f_int64ss_append_)
 
 /**
  * Private implementation for resizing the int64ss array.
@@ -106,12 +106,12 @@ extern "C" {
  *   Errors (with error bit) from: f_memory_adjust().
  *   Errors (with error bit) from: f_memory_destroy().
  *
- * @see f_type_int64ss_adjust()
- * @see f_type_int64ss_decimate_by()
+ * @see f_int64ss_adjust()
+ * @see f_int64ss_decimate_by()
  */
-#if !defined(_di_f_type_int64ss_adjust_) || !defined(_di_f_type_int64ss_decimate_by_)
-  extern f_status_t private_f_type_int64ss_adjust(const f_array_length_t length, f_int64ss_t *int64ss) F_attribute_visibility_internal_d;
-#endif // !defined(_di_f_type_int64ss_adjust_) || !defined(_di_f_type_int64ss_decimate_by_)
+#if !defined(_di_f_int64ss_adjust_) || !defined(_di_f_int64ss_decimate_by_)
+  extern f_status_t private_f_int64ss_adjust(const f_array_length_t length, f_int64ss_t *int64ss) F_attribute_visibility_internal_d;
+#endif // !defined(_di_f_int64ss_adjust_) || !defined(_di_f_int64ss_decimate_by_)
 
 /**
  * Private implementation for resizing the int64ss array.
@@ -134,14 +134,14 @@ extern "C" {
  *   Errors (with error bit) from: f_memory_delete().
  *   Errors (with error bit) from: f_memory_resize().
  *
- * @see f_type_int64ss_decrease_by()
- * @see f_type_int64ss_increase()
- * @see f_type_int64ss_increase_by()
- * @see f_type_int64ss_resize()
+ * @see f_int64ss_decrease_by()
+ * @see f_int64ss_increase()
+ * @see f_int64ss_increase_by()
+ * @see f_int64ss_resize()
  */
-#if !defined(_di_f_type_int64ss_decrease_by_) || !defined(_di_f_type_int64ss_increase_) || !defined(_di_f_type_int64ss_increase_by_) || !defined(_di_f_type_int64ss_resize_)
-  extern f_status_t private_f_type_int64ss_resize(const f_array_length_t length, f_int64ss_t *int64ss) F_attribute_visibility_internal_d;
-#endif // !defined(_di_f_type_int64ss_decrease_by_) || !defined(_di_f_type_int64ss_increase_) || !defined(_di_f_type_int64ss_increase_by_) || !defined(_di_f_type_int64ss_resize_)
+#if !defined(_di_f_int64ss_decrease_by_) || !defined(_di_f_int64ss_increase_) || !defined(_di_f_int64ss_increase_by_) || !defined(_di_f_int64ss_resize_)
+  extern f_status_t private_f_int64ss_resize(const f_array_length_t length, f_int64ss_t *int64ss) F_attribute_visibility_internal_d;
+#endif // !defined(_di_f_int64ss_decrease_by_) || !defined(_di_f_int64ss_increase_) || !defined(_di_f_int64ss_increase_by_) || !defined(_di_f_int64ss_resize_)
 
 /**
  * Private implementation for resizing the uint64s array.
@@ -159,12 +159,12 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_adjust().
  *
- * @see f_type_uint64s_adjust()
- * @see f_type_uint64s_decimate_by()
+ * @see f_uint64s_adjust()
+ * @see f_uint64s_decimate_by()
  */
-#if !defined(_di_f_type_uint64s_adjust_) || !defined(_di_f_type_uint64s_decimate_by_)
-  extern f_status_t private_f_type_uint64s_adjust(const f_array_length_t length, f_uint64s_t *uint64s) F_attribute_visibility_internal_d;
-#endif // !defined(_di_f_type_uint64s_adjust_) || !defined(_di_f_type_uint64s_decimate_by_)
+#if !defined(_di_f_uint64s_adjust_) || !defined(_di_f_uint64s_decimate_by_)
+  extern f_status_t private_f_uint64s_adjust(const f_array_length_t length, f_uint64s_t *uint64s) F_attribute_visibility_internal_d;
+#endif // !defined(_di_f_uint64s_adjust_) || !defined(_di_f_uint64s_decimate_by_)
 
 /**
  * Private implementation for appending the uint64 array.
@@ -181,12 +181,12 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  *
- * @see f_type_uint64s_append()
- * @see f_type_uint64ss_append()
+ * @see f_uint64s_append()
+ * @see f_uint64ss_append()
  */
-#if !defined(_di_f_type_uint64s_append_) || !defined(_di_f_type_uint64ss_append_)
-  extern f_status_t private_f_type_uint64s_append(const f_uint64s_t source, f_uint64s_t *destination) F_attribute_visibility_internal_d;
-#endif // !defined(_di_f_type_uint64s_append_) || !defined(_di_f_type_uint64ss_append_)
+#if !defined(_di_f_uint64s_append_) || !defined(_di_f_uint64ss_append_)
+  extern f_status_t private_f_uint64s_append(const f_uint64s_t source, f_uint64s_t *destination) F_attribute_visibility_internal_d;
+#endif // !defined(_di_f_uint64s_append_) || !defined(_di_f_uint64ss_append_)
 
 /**
  * Private implementation for resizing the uint64s array.
@@ -204,14 +204,14 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  *
- * @see f_type_uint64s_resize()
- * @see f_type_uint64s_append()
- * @see f_type_uint64s_decimate_by()
- * @see f_type_uint64ss_append()
+ * @see f_uint64s_resize()
+ * @see f_uint64s_append()
+ * @see f_uint64s_decimate_by()
+ * @see f_uint64ss_append()
  */
-#if !defined(_di_f_type_uint64s_resize_) || !defined(_di_f_type_uint64s_append_) || !defined(_di_f_type_uint64s_decimate_by_) || !defined(_di_f_type_uint64ss_append_)
-  extern f_status_t private_f_type_uint64s_resize(const f_array_length_t length, f_uint64s_t *uint64s) F_attribute_visibility_internal_d;
-#endif // !defined(_di_f_type_uint64s_resize_) || !defined(_di_f_type_uint64s_append_) || !defined(_di_f_type_uint64s_decimate_by_) || !defined(_di_f_type_uint64ss_append_)
+#if !defined(_di_f_uint64s_resize_) || !defined(_di_f_uint64s_append_) || !defined(_di_f_uint64s_decimate_by_) || !defined(_di_f_uint64ss_append_)
+  extern f_status_t private_f_uint64s_resize(const f_array_length_t length, f_uint64s_t *uint64s) F_attribute_visibility_internal_d;
+#endif // !defined(_di_f_uint64s_resize_) || !defined(_di_f_uint64s_append_) || !defined(_di_f_uint64s_decimate_by_) || !defined(_di_f_uint64ss_append_)
 
 /**
  * Private implementation for resizing the uint64ss array.
@@ -234,12 +234,12 @@ extern "C" {
  *   Errors (with error bit) from: f_memory_adjust().
  *   Errors (with error bit) from: f_memory_destroy().
  *
- * @see f_type_uint64ss_adjust()
- * @see f_type_uint64ss_decimate_by()
+ * @see f_uint64ss_adjust()
+ * @see f_uint64ss_decimate_by()
  */
-#if !defined(_di_f_type_uint64ss_adjust_) || !defined(_di_f_type_uint64ss_decimate_by_)
-  extern f_status_t private_f_type_uint64ss_adjust(const f_array_length_t length, f_uint64ss_t *uint64ss) F_attribute_visibility_internal_d;
-#endif // !defined(_di_f_type_uint64ss_adjust_) || !defined(_di_f_type_uint64ss_decimate_by_)
+#if !defined(_di_f_uint64ss_adjust_) || !defined(_di_f_uint64ss_decimate_by_)
+  extern f_status_t private_f_uint64ss_adjust(const f_array_length_t length, f_uint64ss_t *uint64ss) F_attribute_visibility_internal_d;
+#endif // !defined(_di_f_uint64ss_adjust_) || !defined(_di_f_uint64ss_decimate_by_)
 
 /**
  * Private implementation for resizing the uint64ss array.
@@ -262,14 +262,14 @@ extern "C" {
  *   Errors (with error bit) from: f_memory_delete().
  *   Errors (with error bit) from: f_memory_resize().
  *
- * @see f_type_uint64ss_decrease_by()
- * @see f_type_uint64ss_increase()
- * @see f_type_uint64ss_increase_by()
- * @see f_type_uint64ss_resize()
+ * @see f_uint64ss_decrease_by()
+ * @see f_uint64ss_increase()
+ * @see f_uint64ss_increase_by()
+ * @see f_uint64ss_resize()
  */
-#if !defined(_di_f_type_uint64ss_decrease_by_) || !defined(_di_f_type_uint64ss_increase_) || !defined(_di_f_type_uint64ss_increase_by_) || !defined(_di_f_type_uint64ss_resize_)
-  extern f_status_t private_f_type_uint64ss_resize(const f_array_length_t length, f_uint64ss_t *uint64ss) F_attribute_visibility_internal_d;
-#endif // !defined(_di_f_type_uint64ss_decrease_by_) || !defined(_di_f_type_uint64ss_increase_) || !defined(_di_f_type_uint64ss_increase_by_) || !defined(_di_f_type_uint64ss_resize_)
+#if !defined(_di_f_uint64ss_decrease_by_) || !defined(_di_f_uint64ss_increase_) || !defined(_di_f_uint64ss_increase_by_) || !defined(_di_f_uint64ss_resize_)
+  extern f_status_t private_f_uint64ss_resize(const f_array_length_t length, f_uint64ss_t *uint64ss) F_attribute_visibility_internal_d;
+#endif // !defined(_di_f_uint64ss_decrease_by_) || !defined(_di_f_uint64ss_increase_) || !defined(_di_f_uint64ss_increase_by_) || !defined(_di_f_uint64ss_resize_)
 
 #ifdef __cplusplus
 } // extern "C"
index 55fa02bbe5a6eddb83eabc6f38f2b98e3324eff5..7b5cb2d8fdd0a3d525ce20f2bd8cfca6c64bc8ce 100644 (file)
@@ -5,8 +5,8 @@
 extern "C" {
 #endif
 
-#if !defined(_di_f_type_int8s_adjust_) || !defined(_di_f_type_int8s_decimate_by_)
-  f_status_t private_f_type_int8s_adjust(const f_array_length_t length, f_int8s_t *int8s) {
+#if !defined(_di_f_int8s_adjust_) || !defined(_di_f_int8s_decimate_by_)
+  f_status_t private_f_int8s_adjust(const f_array_length_t length, f_int8s_t *int8s) {
 
     const f_status_t status = f_memory_adjust(int8s->size, length, sizeof(int8_t), (void **) & int8s->array);
 
@@ -20,15 +20,15 @@ extern "C" {
 
     return status;
   }
-#endif // !defined(_di_f_type_int8s_adjust_) || !defined(_di_f_type_int8s_decimate_by_)
+#endif // !defined(_di_f_int8s_adjust_) || !defined(_di_f_int8s_decimate_by_)
 
-#if !defined(_di_f_type_int8s_append_) || !defined(_di_f_type_int8ss_append_)
-  extern f_status_t private_f_type_int8s_append(const f_int8s_t source, f_int8s_t *destination) {
+#if !defined(_di_f_int8s_append_) || !defined(_di_f_int8ss_append_)
+  extern f_status_t private_f_int8s_append(const f_int8s_t source, f_int8s_t *destination) {
 
     f_status_t status = F_none;
 
     if (destination->used + source.used > destination->size) {
-      status = private_f_type_int8s_adjust(destination->used + source.used, destination);
+      status = private_f_int8s_adjust(destination->used + source.used, destination);
       if (F_status_is_error(status)) return status;
     }
 
@@ -38,10 +38,10 @@ extern "C" {
 
     return F_none;
   }
-#endif // !defined(_di_f_type_int8s_append_) || !defined(_di_f_type_int8ss_append_)
+#endif // !defined(_di_f_int8s_append_) || !defined(_di_f_int8ss_append_)
 
-#if !defined(_di_f_type_int8s_resize_) || !defined(_di_f_type_int8s_append_) || !defined(_di_f_type_int8s_decimate_by_) || !defined(_di_f_type_int8ss_append_)
-  f_status_t private_f_type_int8s_resize(const f_array_length_t length, f_int8s_t *int8s) {
+#if !defined(_di_f_int8s_resize_) || !defined(_di_f_int8s_append_) || !defined(_di_f_int8s_decimate_by_) || !defined(_di_f_int8ss_append_)
+  f_status_t private_f_int8s_resize(const f_array_length_t length, f_int8s_t *int8s) {
 
     const f_status_t status = f_memory_resize(int8s->size, length, sizeof(int8_t), (void **) & int8s->array);
 
@@ -55,10 +55,10 @@ extern "C" {
 
     return status;
   }
-#endif // !defined(_di_f_type_int8s_resize_) || !defined(_di_f_type_int8s_append_) || !defined(_di_f_type_int8s_decimate_by_) || !defined(_di_f_type_int8ss_append_)
+#endif // !defined(_di_f_int8s_resize_) || !defined(_di_f_int8s_append_) || !defined(_di_f_int8s_decimate_by_) || !defined(_di_f_int8ss_append_)
 
-#if !defined(_di_f_type_int8ss_adjust_) || !defined(_di_f_type_int8ss_decimate_by_)
-  f_status_t private_f_type_int8ss_adjust(const f_array_length_t length, f_int8ss_t *int8ss) {
+#if !defined(_di_f_int8ss_adjust_) || !defined(_di_f_int8ss_decimate_by_)
+  f_status_t private_f_int8ss_adjust(const f_array_length_t length, f_int8ss_t *int8ss) {
 
     f_status_t status = F_none;
 
@@ -83,10 +83,10 @@ extern "C" {
 
     return status;
   }
-#endif // !defined(_di_f_type_int8ss_adjust_) || !defined(_di_f_type_int8ss_decimate_by_)
+#endif // !defined(_di_f_int8ss_adjust_) || !defined(_di_f_int8ss_decimate_by_)
 
-#if !defined(_di_f_type_int8ss_decrease_by_) || !defined(_di_f_type_int8ss_increase_) || !defined(_di_f_type_int8ss_increase_by_) || !defined(_di_f_type_int8ss_resize_)
-  f_status_t private_f_type_int8ss_resize(const f_array_length_t length, f_int8ss_t *int8ss) {
+#if !defined(_di_f_int8ss_decrease_by_) || !defined(_di_f_int8ss_increase_) || !defined(_di_f_int8ss_increase_by_) || !defined(_di_f_int8ss_resize_)
+  f_status_t private_f_int8ss_resize(const f_array_length_t length, f_int8ss_t *int8ss) {
 
     f_status_t status = F_none;
 
@@ -111,10 +111,10 @@ extern "C" {
 
     return status;
   }
-#endif // !defined(_di_f_type_int8ss_decrease_by_) || !defined(_di_f_type_int8ss_increase_) || !defined(_di_f_type_int8ss_increase_by_) || !defined(_di_f_type_int8ss_resize_)
+#endif // !defined(_di_f_int8ss_decrease_by_) || !defined(_di_f_int8ss_increase_) || !defined(_di_f_int8ss_increase_by_) || !defined(_di_f_int8ss_resize_)
 
-#if !defined(_di_f_type_uint8s_adjust_) || !defined(_di_f_type_uint8s_decimate_by_)
-  f_status_t private_f_type_uint8s_adjust(const f_array_length_t length, f_uint8s_t *uint8s) {
+#if !defined(_di_f_uint8s_adjust_) || !defined(_di_f_uint8s_decimate_by_)
+  f_status_t private_f_uint8s_adjust(const f_array_length_t length, f_uint8s_t *uint8s) {
 
     const f_status_t status = f_memory_adjust(uint8s->size, length, sizeof(uint8_t), (void **) & uint8s->array);
 
@@ -128,15 +128,15 @@ extern "C" {
 
     return status;
   }
-#endif // !defined(_di_f_type_uint8s_adjust_) || !defined(_di_f_type_uint8s_decimate_by_)
+#endif // !defined(_di_f_uint8s_adjust_) || !defined(_di_f_uint8s_decimate_by_)
 
-#if !defined(_di_f_type_uint8s_append_) || !defined(_di_f_type_uint8ss_append_)
-  extern f_status_t private_f_type_uint8s_append(const f_uint8s_t source, f_uint8s_t *destination) {
+#if !defined(_di_f_uint8s_append_) || !defined(_di_f_uint8ss_append_)
+  extern f_status_t private_f_uint8s_append(const f_uint8s_t source, f_uint8s_t *destination) {
 
     f_status_t status = F_none;
 
     if (destination->used + source.used > destination->size) {
-      status = private_f_type_uint8s_adjust(destination->used + source.used, destination);
+      status = private_f_uint8s_adjust(destination->used + source.used, destination);
       if (F_status_is_error(status)) return status;
     }
 
@@ -146,10 +146,10 @@ extern "C" {
 
     return F_none;
   }
-#endif // !defined(_di_f_type_uint8s_append_) || !defined(_di_f_type_uint8ss_append_)
+#endif // !defined(_di_f_uint8s_append_) || !defined(_di_f_uint8ss_append_)
 
-#if !defined(_di_f_type_uint8s_resize_) || !defined(_di_f_type_uint8s_append_) || !defined(_di_f_type_uint8s_decimate_by_) || !defined(_di_f_type_uint8ss_append_)
-  f_status_t private_f_type_uint8s_resize(const f_array_length_t length, f_uint8s_t *uint8s) {
+#if !defined(_di_f_uint8s_resize_) || !defined(_di_f_uint8s_append_) || !defined(_di_f_uint8s_decimate_by_) || !defined(_di_f_uint8ss_append_)
+  f_status_t private_f_uint8s_resize(const f_array_length_t length, f_uint8s_t *uint8s) {
 
     const f_status_t status = f_memory_resize(uint8s->size, length, sizeof(uint8_t), (void **) & uint8s->array);
 
@@ -163,10 +163,10 @@ extern "C" {
 
     return status;
   }
-#endif // !defined(_di_f_type_uint8s_resize_) || !defined(_di_f_type_uint8s_append_) || !defined(_di_f_type_uint8s_decimate_by_) || !defined(_di_f_type_uint8ss_append_)
+#endif // !defined(_di_f_uint8s_resize_) || !defined(_di_f_uint8s_append_) || !defined(_di_f_uint8s_decimate_by_) || !defined(_di_f_uint8ss_append_)
 
-#if !defined(_di_f_type_uint8ss_adjust_) || !defined(_di_f_type_uint8ss_decimate_by_)
-  f_status_t private_f_type_uint8ss_adjust(const f_array_length_t length, f_uint8ss_t *uint8ss) {
+#if !defined(_di_f_uint8ss_adjust_) || !defined(_di_f_uint8ss_decimate_by_)
+  f_status_t private_f_uint8ss_adjust(const f_array_length_t length, f_uint8ss_t *uint8ss) {
 
     f_status_t status = F_none;
 
@@ -191,10 +191,10 @@ extern "C" {
 
     return status;
   }
-#endif // !defined(_di_f_type_uint8ss_adjust_) || !defined(_di_f_type_uint8ss_decimate_by_)
+#endif // !defined(_di_f_uint8ss_adjust_) || !defined(_di_f_uint8ss_decimate_by_)
 
-#if !defined(_di_f_type_uint8ss_decrease_by_) || !defined(_di_f_type_uint8ss_increase_) || !defined(_di_f_type_uint8ss_increase_by_) || !defined(_di_f_type_uint8ss_resize_)
-  f_status_t private_f_type_uint8ss_resize(const f_array_length_t length, f_uint8ss_t *uint8ss) {
+#if !defined(_di_f_uint8ss_decrease_by_) || !defined(_di_f_uint8ss_increase_) || !defined(_di_f_uint8ss_increase_by_) || !defined(_di_f_uint8ss_resize_)
+  f_status_t private_f_uint8ss_resize(const f_array_length_t length, f_uint8ss_t *uint8ss) {
 
     f_status_t status = F_none;
 
@@ -219,7 +219,7 @@ extern "C" {
 
     return status;
   }
-#endif // !defined(_di_f_type_uint8ss_decrease_by_) || !defined(_di_f_type_uint8ss_increase_) || !defined(_di_f_type_uint8ss_increase_by_) || !defined(_di_f_type_uint8ss_resize_)
+#endif // !defined(_di_f_uint8ss_decrease_by_) || !defined(_di_f_uint8ss_increase_) || !defined(_di_f_uint8ss_increase_by_) || !defined(_di_f_uint8ss_resize_)
 
 #ifdef __cplusplus
 } // extern "C"
index 3354ab25ecbd6fc505c86b73571b2fae30641613..101e111d0277235f452f994c9c2889d0b6a34f13 100644 (file)
@@ -31,12 +31,12 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_adjust().
  *
- * @see f_type_int8s_adjust()
- * @see f_type_int8s_decimate_by()
+ * @see f_int8s_adjust()
+ * @see f_int8s_decimate_by()
  */
-#if !defined(_di_f_type_int8s_adjust_) || !defined(_di_f_type_int8s_decimate_by_)
-  extern f_status_t private_f_type_int8s_adjust(const f_array_length_t length, f_int8s_t *int8s) F_attribute_visibility_internal_d;
-#endif // !defined(_di_f_type_int8s_adjust_) || !defined(_di_f_type_int8s_decimate_by_)
+#if !defined(_di_f_int8s_adjust_) || !defined(_di_f_int8s_decimate_by_)
+  extern f_status_t private_f_int8s_adjust(const f_array_length_t length, f_int8s_t *int8s) F_attribute_visibility_internal_d;
+#endif // !defined(_di_f_int8s_adjust_) || !defined(_di_f_int8s_decimate_by_)
 
 /**
  * Private implementation for appending the int8 array.
@@ -53,12 +53,12 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  *
- * @see f_type_int8s_append()
- * @see f_type_int8ss_append()
+ * @see f_int8s_append()
+ * @see f_int8ss_append()
  */
-#if !defined(_di_f_type_int8s_append_) || !defined(_di_f_type_int8ss_append_)
-  extern f_status_t private_f_type_int8s_append(const f_int8s_t source, f_int8s_t *destination) F_attribute_visibility_internal_d;
-#endif // !defined(_di_f_type_int8s_append_) || !defined(_di_f_type_int8ss_append_)
+#if !defined(_di_f_int8s_append_) || !defined(_di_f_int8ss_append_)
+  extern f_status_t private_f_int8s_append(const f_int8s_t source, f_int8s_t *destination) F_attribute_visibility_internal_d;
+#endif // !defined(_di_f_int8s_append_) || !defined(_di_f_int8ss_append_)
 
 /**
  * Private implementation for resizing the int8s array.
@@ -76,14 +76,14 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  *
- * @see f_type_int8s_resize()
- * @see f_type_int8s_append()
- * @see f_type_int8s_decimate_by()
- * @see f_type_int8ss_append()
+ * @see f_int8s_resize()
+ * @see f_int8s_append()
+ * @see f_int8s_decimate_by()
+ * @see f_int8ss_append()
  */
-#if !defined(_di_f_type_int8s_resize_) || !defined(_di_f_type_int8s_append_) || !defined(_di_f_type_int8s_decimate_by_) || !defined(_di_f_type_int8ss_append_)
-  extern f_status_t private_f_type_int8s_resize(const f_array_length_t length, f_int8s_t *int8s) F_attribute_visibility_internal_d;
-#endif // !defined(_di_f_type_int8s_resize_) || !defined(_di_f_type_int8s_append_) || !defined(_di_f_type_int8s_decimate_by_) || !defined(_di_f_type_int8ss_append_)
+#if !defined(_di_f_int8s_resize_) || !defined(_di_f_int8s_append_) || !defined(_di_f_int8s_decimate_by_) || !defined(_di_f_int8ss_append_)
+  extern f_status_t private_f_int8s_resize(const f_array_length_t length, f_int8s_t *int8s) F_attribute_visibility_internal_d;
+#endif // !defined(_di_f_int8s_resize_) || !defined(_di_f_int8s_append_) || !defined(_di_f_int8s_decimate_by_) || !defined(_di_f_int8ss_append_)
 
 /**
  * Private implementation for resizing the int8ss array.
@@ -106,12 +106,12 @@ extern "C" {
  *   Errors (with error bit) from: f_memory_adjust().
  *   Errors (with error bit) from: f_memory_destroy().
  *
- * @see f_type_int8ss_adjust()
- * @see f_type_int8ss_decimate_by()
+ * @see f_int8ss_adjust()
+ * @see f_int8ss_decimate_by()
  */
-#if !defined(_di_f_type_int8ss_adjust_) || !defined(_di_f_type_int8ss_decimate_by_)
-  extern f_status_t private_f_type_int8ss_adjust(const f_array_length_t length, f_int8ss_t *int8ss) F_attribute_visibility_internal_d;
-#endif // !defined(_di_f_type_int8ss_adjust_) || !defined(_di_f_type_int8ss_decimate_by_)
+#if !defined(_di_f_int8ss_adjust_) || !defined(_di_f_int8ss_decimate_by_)
+  extern f_status_t private_f_int8ss_adjust(const f_array_length_t length, f_int8ss_t *int8ss) F_attribute_visibility_internal_d;
+#endif // !defined(_di_f_int8ss_adjust_) || !defined(_di_f_int8ss_decimate_by_)
 
 /**
  * Private implementation for resizing the int8ss array.
@@ -134,14 +134,14 @@ extern "C" {
  *   Errors (with error bit) from: f_memory_delete().
  *   Errors (with error bit) from: f_memory_resize().
  *
- * @see f_type_int8ss_decrease_by()
- * @see f_type_int8ss_increase()
- * @see f_type_int8ss_increase_by()
- * @see f_type_int8ss_resize()
+ * @see f_int8ss_decrease_by()
+ * @see f_int8ss_increase()
+ * @see f_int8ss_increase_by()
+ * @see f_int8ss_resize()
  */
-#if !defined(_di_f_type_int8ss_decrease_by_) || !defined(_di_f_type_int8ss_increase_) || !defined(_di_f_type_int8ss_increase_by_) || !defined(_di_f_type_int8ss_resize_)
-  extern f_status_t private_f_type_int8ss_resize(const f_array_length_t length, f_int8ss_t *int8ss) F_attribute_visibility_internal_d;
-#endif // !defined(_di_f_type_int8ss_decrease_by_) || !defined(_di_f_type_int8ss_increase_) || !defined(_di_f_type_int8ss_increase_by_) || !defined(_di_f_type_int8ss_resize_)
+#if !defined(_di_f_int8ss_decrease_by_) || !defined(_di_f_int8ss_increase_) || !defined(_di_f_int8ss_increase_by_) || !defined(_di_f_int8ss_resize_)
+  extern f_status_t private_f_int8ss_resize(const f_array_length_t length, f_int8ss_t *int8ss) F_attribute_visibility_internal_d;
+#endif // !defined(_di_f_int8ss_decrease_by_) || !defined(_di_f_int8ss_increase_) || !defined(_di_f_int8ss_increase_by_) || !defined(_di_f_int8ss_resize_)
 
 /**
  * Private implementation for resizing the uint8s array.
@@ -159,12 +159,12 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_adjust().
  *
- * @see f_type_uint8s_adjust()
- * @see f_type_uint8s_decimate_by()
+ * @see f_uint8s_adjust()
+ * @see f_uint8s_decimate_by()
  */
-#if !defined(_di_f_type_uint8s_adjust_) || !defined(_di_f_type_uint8s_decimate_by_)
-  extern f_status_t private_f_type_uint8s_adjust(const f_array_length_t length, f_uint8s_t *uint8s) F_attribute_visibility_internal_d;
-#endif // !defined(_di_f_type_uint8s_adjust_) || !defined(_di_f_type_uint8s_decimate_by_)
+#if !defined(_di_f_uint8s_adjust_) || !defined(_di_f_uint8s_decimate_by_)
+  extern f_status_t private_f_uint8s_adjust(const f_array_length_t length, f_uint8s_t *uint8s) F_attribute_visibility_internal_d;
+#endif // !defined(_di_f_uint8s_adjust_) || !defined(_di_f_uint8s_decimate_by_)
 
 /**
  * Private implementation for appending the uint8 array.
@@ -181,12 +181,12 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  *
- * @see f_type_uint8s_append()
- * @see f_type_uint8ss_append()
+ * @see f_uint8s_append()
+ * @see f_uint8ss_append()
  */
-#if !defined(_di_f_type_uint8s_append_) || !defined(_di_f_type_uint8ss_append_)
-  extern f_status_t private_f_type_uint8s_append(const f_uint8s_t source, f_uint8s_t *destination) F_attribute_visibility_internal_d;
-#endif // !defined(_di_f_type_uint8s_append_) || !defined(_di_f_type_uint8ss_append_)
+#if !defined(_di_f_uint8s_append_) || !defined(_di_f_uint8ss_append_)
+  extern f_status_t private_f_uint8s_append(const f_uint8s_t source, f_uint8s_t *destination) F_attribute_visibility_internal_d;
+#endif // !defined(_di_f_uint8s_append_) || !defined(_di_f_uint8ss_append_)
 
 /**
  * Private implementation for resizing the uint8s array.
@@ -204,14 +204,14 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  *
- * @see f_type_uint8s_resize()
- * @see f_type_uint8s_append()
- * @see f_type_uint8s_decimate_by()
- * @see f_type_uint8ss_append()
+ * @see f_uint8s_resize()
+ * @see f_uint8s_append()
+ * @see f_uint8s_decimate_by()
+ * @see f_uint8ss_append()
  */
-#if !defined(_di_f_type_uint8s_resize_) || !defined(_di_f_type_uint8s_append_) || !defined(_di_f_type_uint8s_decimate_by_) || !defined(_di_f_type_uint8ss_append_)
-  extern f_status_t private_f_type_uint8s_resize(const f_array_length_t length, f_uint8s_t *uint8s) F_attribute_visibility_internal_d;
-#endif // !defined(_di_f_type_uint8s_resize_) || !defined(_di_f_type_uint8s_append_) || !defined(_di_f_type_uint8s_decimate_by_) || !defined(_di_f_type_uint8ss_append_)
+#if !defined(_di_f_uint8s_resize_) || !defined(_di_f_uint8s_append_) || !defined(_di_f_uint8s_decimate_by_) || !defined(_di_f_uint8ss_append_)
+  extern f_status_t private_f_uint8s_resize(const f_array_length_t length, f_uint8s_t *uint8s) F_attribute_visibility_internal_d;
+#endif // !defined(_di_f_uint8s_resize_) || !defined(_di_f_uint8s_append_) || !defined(_di_f_uint8s_decimate_by_) || !defined(_di_f_uint8ss_append_)
 
 /**
  * Private implementation for resizing the uint8ss array.
@@ -234,12 +234,12 @@ extern "C" {
  *   Errors (with error bit) from: f_memory_adjust().
  *   Errors (with error bit) from: f_memory_destroy().
  *
- * @see f_type_uint8ss_adjust()
- * @see f_type_uint8ss_decimate_by()
+ * @see f_uint8ss_adjust()
+ * @see f_uint8ss_decimate_by()
  */
-#if !defined(_di_f_type_uint8ss_adjust_) || !defined(_di_f_type_uint8ss_decimate_by_)
-  extern f_status_t private_f_type_uint8ss_adjust(const f_array_length_t length, f_uint8ss_t *uint8ss) F_attribute_visibility_internal_d;
-#endif // !defined(_di_f_type_uint8ss_adjust_) || !defined(_di_f_type_uint8ss_decimate_by_)
+#if !defined(_di_f_uint8ss_adjust_) || !defined(_di_f_uint8ss_decimate_by_)
+  extern f_status_t private_f_uint8ss_adjust(const f_array_length_t length, f_uint8ss_t *uint8ss) F_attribute_visibility_internal_d;
+#endif // !defined(_di_f_uint8ss_adjust_) || !defined(_di_f_uint8ss_decimate_by_)
 
 /**
  * Private implementation for resizing the uint8ss array.
@@ -262,14 +262,14 @@ extern "C" {
  *   Errors (with error bit) from: f_memory_delete().
  *   Errors (with error bit) from: f_memory_resize().
  *
- * @see f_type_uint8ss_decrease_by()
- * @see f_type_uint8ss_increase()
- * @see f_type_uint8ss_increase_by()
- * @see f_type_uint8ss_resize()
+ * @see f_uint8ss_decrease_by()
+ * @see f_uint8ss_increase()
+ * @see f_uint8ss_increase_by()
+ * @see f_uint8ss_resize()
  */
-#if !defined(_di_f_type_uint8ss_decrease_by_) || !defined(_di_f_type_uint8ss_increase_) || !defined(_di_f_type_uint8ss_increase_by_) || !defined(_di_f_type_uint8ss_resize_)
-  extern f_status_t private_f_type_uint8ss_resize(const f_array_length_t length, f_uint8ss_t *uint8ss) F_attribute_visibility_internal_d;
-#endif // !defined(_di_f_type_uint8ss_decrease_by_) || !defined(_di_f_type_uint8ss_increase_) || !defined(_di_f_type_uint8ss_increase_by_) || !defined(_di_f_type_uint8ss_resize_)
+#if !defined(_di_f_uint8ss_decrease_by_) || !defined(_di_f_uint8ss_increase_) || !defined(_di_f_uint8ss_increase_by_) || !defined(_di_f_uint8ss_resize_)
+  extern f_status_t private_f_uint8ss_resize(const f_array_length_t length, f_uint8ss_t *uint8ss) F_attribute_visibility_internal_d;
+#endif // !defined(_di_f_uint8ss_decrease_by_) || !defined(_di_f_uint8ss_increase_) || !defined(_di_f_uint8ss_increase_by_) || !defined(_di_f_uint8ss_resize_)
 
 #ifdef __cplusplus
 } // extern "C"
index a5973fa5cc558e4d156ab3c0ab0d4f73185f222e..4990b518d4a4f98b96ba0136c96ff9d67d63bc05 100644 (file)
@@ -5,8 +5,8 @@
 extern "C" {
 #endif
 
-#if !defined(_di_f_type_states_adjust_) || !defined(_di_f_type_states_decimate_by_)
-  f_status_t private_f_type_states_adjust(const f_array_length_t length, f_states_t *states) {
+#if !defined(_di_f_states_adjust_) || !defined(_di_f_states_decimate_by_)
+  f_status_t private_f_states_adjust(const f_array_length_t length, f_states_t *states) {
 
     const f_status_t status = f_memory_adjust(states->size, length, sizeof(f_state_t), (void **) & states->array);
 
@@ -20,15 +20,15 @@ extern "C" {
 
     return status;
   }
-#endif // !defined(_di_f_type_states_adjust_) || !defined(_di_f_type_states_decimate_by_)
+#endif // !defined(_di_f_states_adjust_) || !defined(_di_f_states_decimate_by_)
 
-#if !defined(_di_f_type_states_append_) || !defined(_di_f_type_statess_append_)
-  extern f_status_t private_f_type_states_append(const f_states_t source, f_states_t *destination) {
+#if !defined(_di_f_states_append_) || !defined(_di_f_statess_append_)
+  extern f_status_t private_f_states_append(const f_states_t source, f_states_t *destination) {
 
     f_status_t status = F_none;
 
     if (destination->used + source.used > destination->size) {
-      status = private_f_type_states_adjust(destination->used + source.used, destination);
+      status = private_f_states_adjust(destination->used + source.used, destination);
       if (F_status_is_error(status)) return status;
     }
 
@@ -38,10 +38,10 @@ extern "C" {
 
     return F_none;
   }
-#endif // !defined(_di_f_type_states_append_) || !defined(_di_f_type_statess_append_)
+#endif // !defined(_di_f_states_append_) || !defined(_di_f_statess_append_)
 
-#if !defined(_di_f_type_states_resize_) || !defined(_di_f_type_states_append_) || !defined(_di_f_type_states_decimate_by_) || !defined(_di_f_type_statess_append_)
-  f_status_t private_f_type_states_resize(const f_array_length_t length, f_states_t *states) {
+#if !defined(_di_f_states_resize_) || !defined(_di_f_states_append_) || !defined(_di_f_states_decimate_by_) || !defined(_di_f_statess_append_)
+  f_status_t private_f_states_resize(const f_array_length_t length, f_states_t *states) {
 
     const f_status_t status = f_memory_resize(states->size, length, sizeof(f_state_t), (void **) & states->array);
 
@@ -55,10 +55,10 @@ extern "C" {
 
     return status;
   }
-#endif // !defined(_di_f_type_states_resize_) || !defined(_di_f_type_states_append_) || !defined(_di_f_type_states_decimate_by_) || !defined(_di_f_type_statess_append_)
+#endif // !defined(_di_f_states_resize_) || !defined(_di_f_states_append_) || !defined(_di_f_states_decimate_by_) || !defined(_di_f_statess_append_)
 
-#if !defined(_di_f_type_statess_adjust_) || !defined(_di_f_type_statess_decimate_by_)
-  f_status_t private_f_type_statess_adjust(const f_array_length_t length, f_statess_t *statess) {
+#if !defined(_di_f_statess_adjust_) || !defined(_di_f_statess_decimate_by_)
+  f_status_t private_f_statess_adjust(const f_array_length_t length, f_statess_t *statess) {
 
     f_status_t status = F_none;
 
@@ -83,10 +83,10 @@ extern "C" {
 
     return status;
   }
-#endif // !defined(_di_f_type_statess_adjust_) || !defined(_di_f_type_statess_decimate_by_)
+#endif // !defined(_di_f_statess_adjust_) || !defined(_di_f_statess_decimate_by_)
 
-#if !defined(_di_f_type_statess_decrease_by_) || !defined(_di_f_type_statess_increase_) || !defined(_di_f_type_statess_increase_by_) || !defined(_di_f_type_statess_resize_)
-  f_status_t private_f_type_statess_resize(const f_array_length_t length, f_statess_t *statess) {
+#if !defined(_di_f_statess_decrease_by_) || !defined(_di_f_statess_increase_) || !defined(_di_f_statess_increase_by_) || !defined(_di_f_statess_resize_)
+  f_status_t private_f_statess_resize(const f_array_length_t length, f_statess_t *statess) {
 
     f_status_t status = F_none;
 
@@ -111,7 +111,7 @@ extern "C" {
 
     return status;
   }
-#endif // !defined(_di_f_type_statess_decrease_by_) || !defined(_di_f_type_statess_increase_) || !defined(_di_f_type_statess_increase_by_) || !defined(_di_f_type_statess_resize_)
+#endif // !defined(_di_f_statess_decrease_by_) || !defined(_di_f_statess_increase_) || !defined(_di_f_statess_increase_by_) || !defined(_di_f_statess_resize_)
 
 #ifdef __cplusplus
 } // extern "C"
index ab93ce5644e010d16ee8055e04857c69dbd6e0c0..d6616883740efb5cf1917487355e32cbf71062cd 100644 (file)
@@ -31,12 +31,12 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_adjust().
  *
- * @see f_type_states_adjust()
- * @see f_type_states_decimate_by()
+ * @see f_states_adjust()
+ * @see f_states_decimate_by()
  */
-#if !defined(_di_f_type_states_adjust_) || !defined(_di_f_type_states_decimate_by_)
-  extern f_status_t private_f_type_states_adjust(const f_array_length_t length, f_states_t *states) F_attribute_visibility_internal_d;
-#endif // !defined(_di_f_type_states_adjust_) || !defined(_di_f_type_states_decimate_by_)
+#if !defined(_di_f_states_adjust_) || !defined(_di_f_states_decimate_by_)
+  extern f_status_t private_f_states_adjust(const f_array_length_t length, f_states_t *states) F_attribute_visibility_internal_d;
+#endif // !defined(_di_f_states_adjust_) || !defined(_di_f_states_decimate_by_)
 
 /**
  * Private implementation for appending the state array.
@@ -53,12 +53,12 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  *
- * @see f_type_states_append()
- * @see f_type_statess_append()
+ * @see f_states_append()
+ * @see f_statess_append()
  */
-#if !defined(_di_f_type_states_append_) || !defined(_di_f_type_statess_append_)
-  extern f_status_t private_f_type_states_append(const f_states_t source, f_states_t *destination) F_attribute_visibility_internal_d;
-#endif // !defined(_di_f_type_states_append_) || !defined(_di_f_type_statess_append_)
+#if !defined(_di_f_states_append_) || !defined(_di_f_statess_append_)
+  extern f_status_t private_f_states_append(const f_states_t source, f_states_t *destination) F_attribute_visibility_internal_d;
+#endif // !defined(_di_f_states_append_) || !defined(_di_f_statess_append_)
 
 /**
  * Private implementation for resizing the states array.
@@ -76,14 +76,14 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  *
- * @see f_type_states_resize()
- * @see f_type_states_append()
- * @see f_type_states_decimate_by()
- * @see f_type_statess_append()
+ * @see f_states_resize()
+ * @see f_states_append()
+ * @see f_states_decimate_by()
+ * @see f_statess_append()
  */
-#if !defined(_di_f_type_states_resize_) || !defined(_di_f_type_states_append_) || !defined(_di_f_type_states_decimate_by_) || !defined(_di_f_type_statess_append_)
-  extern f_status_t private_f_type_states_resize(const f_array_length_t length, f_states_t *states) F_attribute_visibility_internal_d;
-#endif // !defined(_di_f_type_states_resize_) || !defined(_di_f_type_states_append_) || !defined(_di_f_type_states_decimate_by_) || !defined(_di_f_type_statess_append_)
+#if !defined(_di_f_states_resize_) || !defined(_di_f_states_append_) || !defined(_di_f_states_decimate_by_) || !defined(_di_f_statess_append_)
+  extern f_status_t private_f_states_resize(const f_array_length_t length, f_states_t *states) F_attribute_visibility_internal_d;
+#endif // !defined(_di_f_states_resize_) || !defined(_di_f_states_append_) || !defined(_di_f_states_decimate_by_) || !defined(_di_f_statess_append_)
 
 /**
  * Private implementation for resizing the statess array.
@@ -106,12 +106,12 @@ extern "C" {
  *   Errors (with error bit) from: f_memory_adjust().
  *   Errors (with error bit) from: f_memory_destroy().
  *
- * @see f_type_statess_adjust()
- * @see f_type_statess_decimate_by()
+ * @see f_statess_adjust()
+ * @see f_statess_decimate_by()
  */
-#if !defined(_di_f_type_statess_adjust_) || !defined(_di_f_type_statess_decimate_by_)
-  extern f_status_t private_f_type_statess_adjust(const f_array_length_t length, f_statess_t *statess) F_attribute_visibility_internal_d;
-#endif // !defined(_di_f_type_statess_adjust_) || !defined(_di_f_type_statess_decimate_by_)
+#if !defined(_di_f_statess_adjust_) || !defined(_di_f_statess_decimate_by_)
+  extern f_status_t private_f_statess_adjust(const f_array_length_t length, f_statess_t *statess) F_attribute_visibility_internal_d;
+#endif // !defined(_di_f_statess_adjust_) || !defined(_di_f_statess_decimate_by_)
 
 /**
  * Private implementation for resizing the statess array.
@@ -134,14 +134,14 @@ extern "C" {
  *   Errors (with error bit) from: f_memory_delete().
  *   Errors (with error bit) from: f_memory_resize().
  *
- * @see f_type_statess_decrease_by()
- * @see f_type_statess_increase()
- * @see f_type_statess_increase_by()
- * @see f_type_statess_resize()
+ * @see f_statess_decrease_by()
+ * @see f_statess_increase()
+ * @see f_statess_increase_by()
+ * @see f_statess_resize()
  */
-#if !defined(_di_f_type_statess_decrease_by_) || !defined(_di_f_type_statess_increase_) || !defined(_di_f_type_statess_increase_by_) || !defined(_di_f_type_statess_resize_)
-  extern f_status_t private_f_type_statess_resize(const f_array_length_t length, f_statess_t *statess) F_attribute_visibility_internal_d;
-#endif // !defined(_di_f_type_statess_decrease_by_) || !defined(_di_f_type_statess_increase_) || !defined(_di_f_type_statess_increase_by_) || !defined(_di_f_type_statess_resize_)
+#if !defined(_di_f_statess_decrease_by_) || !defined(_di_f_statess_increase_) || !defined(_di_f_statess_increase_by_) || !defined(_di_f_statess_resize_)
+  extern f_status_t private_f_statess_resize(const f_array_length_t length, f_statess_t *statess) F_attribute_visibility_internal_d;
+#endif // !defined(_di_f_statess_decrease_by_) || !defined(_di_f_statess_increase_) || !defined(_di_f_statess_increase_by_) || !defined(_di_f_statess_resize_)
 
 #ifdef __cplusplus
 } // extern "C"
index 1f5fdd8b29f7ae0dc4029ea846b556101adf16c0..024372b189ea3de75706498d3baf98a0fd0111e3 100644 (file)
@@ -5,8 +5,8 @@
 extern "C" {
 #endif
 
-#if !defined(_di_f_type_statuss_adjust_) || !defined(_di_f_type_statuss_decimate_by_)
-  f_status_t private_f_type_statuss_adjust(const f_array_length_t length, f_statuss_t *statuss) {
+#if !defined(_di_f_statuss_adjust_) || !defined(_di_f_statuss_decimate_by_)
+  f_status_t private_f_statuss_adjust(const f_array_length_t length, f_statuss_t *statuss) {
 
     const f_status_t status = f_memory_adjust(statuss->size, length, sizeof(f_status_t), (void **) & statuss->array);
 
@@ -20,15 +20,15 @@ extern "C" {
 
     return status;
   }
-#endif // !defined(_di_f_type_statuss_adjust_) || !defined(_di_f_type_statuss_decimate_by_)
+#endif // !defined(_di_f_statuss_adjust_) || !defined(_di_f_statuss_decimate_by_)
 
-#if !defined(_di_f_type_statuss_append_) || !defined(_di_f_type_statusss_append_)
-  extern f_status_t private_f_type_statuss_append(const f_statuss_t source, f_statuss_t *destination) {
+#if !defined(_di_f_statuss_append_) || !defined(_di_f_statusss_append_)
+  extern f_status_t private_f_statuss_append(const f_statuss_t source, f_statuss_t *destination) {
 
     f_status_t status = F_none;
 
     if (destination->used + source.used > destination->size) {
-      status = private_f_type_statuss_adjust(destination->used + source.used, destination);
+      status = private_f_statuss_adjust(destination->used + source.used, destination);
       if (F_status_is_error(status)) return status;
     }
 
@@ -38,10 +38,10 @@ extern "C" {
 
     return F_none;
   }
-#endif // !defined(_di_f_type_statuss_append_) || !defined(_di_f_type_statusss_append_)
+#endif // !defined(_di_f_statuss_append_) || !defined(_di_f_statusss_append_)
 
-#if !defined(_di_f_type_statuss_resize_) || !defined(_di_f_type_statuss_append_) || !defined(_di_f_type_statuss_decimate_by_) || !defined(_di_f_type_statusss_append_)
-  f_status_t private_f_type_statuss_resize(const f_array_length_t length, f_statuss_t *statuss) {
+#if !defined(_di_f_statuss_resize_) || !defined(_di_f_statuss_append_) || !defined(_di_f_statuss_decimate_by_) || !defined(_di_f_statusss_append_)
+  f_status_t private_f_statuss_resize(const f_array_length_t length, f_statuss_t *statuss) {
 
     const f_status_t status = f_memory_resize(statuss->size, length, sizeof(f_status_t), (void **) & statuss->array);
 
@@ -55,10 +55,10 @@ extern "C" {
 
     return status;
   }
-#endif // !defined(_di_f_type_statuss_resize_) || !defined(_di_f_type_statuss_append_) || !defined(_di_f_type_statuss_decimate_by_) || !defined(_di_f_type_statusss_append_)
+#endif // !defined(_di_f_statuss_resize_) || !defined(_di_f_statuss_append_) || !defined(_di_f_statuss_decimate_by_) || !defined(_di_f_statusss_append_)
 
-#if !defined(_di_f_type_statusss_adjust_) || !defined(_di_f_type_statusss_decimate_by_)
-  f_status_t private_f_type_statusss_adjust(const f_array_length_t length, f_statusss_t *statusss) {
+#if !defined(_di_f_statusss_adjust_) || !defined(_di_f_statusss_decimate_by_)
+  f_status_t private_f_statusss_adjust(const f_array_length_t length, f_statusss_t *statusss) {
 
     f_status_t status = F_none;
 
@@ -83,10 +83,10 @@ extern "C" {
 
     return status;
   }
-#endif // !defined(_di_f_type_statusss_adjust_) || !defined(_di_f_type_statusss_decimate_by_)
+#endif // !defined(_di_f_statusss_adjust_) || !defined(_di_f_statusss_decimate_by_)
 
-#if !defined(_di_f_type_statusss_decrease_by_) || !defined(_di_f_type_statusss_increase_) || !defined(_di_f_type_statusss_increase_by_) || !defined(_di_f_type_statusss_resize_)
-  f_status_t private_f_type_statusss_resize(const f_array_length_t length, f_statusss_t *statusss) {
+#if !defined(_di_f_statusss_decrease_by_) || !defined(_di_f_statusss_increase_) || !defined(_di_f_statusss_increase_by_) || !defined(_di_f_statusss_resize_)
+  f_status_t private_f_statusss_resize(const f_array_length_t length, f_statusss_t *statusss) {
 
     f_status_t status = F_none;
 
@@ -111,7 +111,7 @@ extern "C" {
 
     return status;
   }
-#endif // !defined(_di_f_type_statusss_decrease_by_) || !defined(_di_f_type_statusss_increase_) || !defined(_di_f_type_statusss_increase_by_) || !defined(_di_f_type_statusss_resize_)
+#endif // !defined(_di_f_statusss_decrease_by_) || !defined(_di_f_statusss_increase_) || !defined(_di_f_statusss_increase_by_) || !defined(_di_f_statusss_resize_)
 
 #ifdef __cplusplus
 } // extern "C"
index 54c0aed794f680352a4eeafe9724d173b50a9602..5e328f2de336686530f895927936397f2842f44f 100644 (file)
@@ -31,12 +31,12 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_adjust().
  *
- * @see f_type_statuss_adjust()
- * @see f_type_statuss_decimate_by()
+ * @see f_statuss_adjust()
+ * @see f_statuss_decimate_by()
  */
-#if !defined(_di_f_type_statuss_adjust_) || !defined(_di_f_type_statuss_decimate_by_)
-  extern f_status_t private_f_type_statuss_adjust(const f_array_length_t length, f_statuss_t *statuss) F_attribute_visibility_internal_d;
-#endif // !defined(_di_f_type_statuss_adjust_) || !defined(_di_f_type_statuss_decimate_by_)
+#if !defined(_di_f_statuss_adjust_) || !defined(_di_f_statuss_decimate_by_)
+  extern f_status_t private_f_statuss_adjust(const f_array_length_t length, f_statuss_t *statuss) F_attribute_visibility_internal_d;
+#endif // !defined(_di_f_statuss_adjust_) || !defined(_di_f_statuss_decimate_by_)
 
 /**
  * Private implementation for appending the status array.
@@ -53,12 +53,12 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  *
- * @see f_type_statuss_append()
- * @see f_type_statusss_append()
+ * @see f_statuss_append()
+ * @see f_statusss_append()
  */
-#if !defined(_di_f_type_statuss_append_) || !defined(_di_f_type_statusss_append_)
-  extern f_status_t private_f_type_statuss_append(const f_statuss_t source, f_statuss_t *destination) F_attribute_visibility_internal_d;
-#endif // !defined(_di_f_type_statuss_append_) || !defined(_di_f_type_statusss_append_)
+#if !defined(_di_f_statuss_append_) || !defined(_di_f_statusss_append_)
+  extern f_status_t private_f_statuss_append(const f_statuss_t source, f_statuss_t *destination) F_attribute_visibility_internal_d;
+#endif // !defined(_di_f_statuss_append_) || !defined(_di_f_statusss_append_)
 
 /**
  * Private implementation for resizing the statuss array.
@@ -76,14 +76,14 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  *
- * @see f_type_statuss_resize()
- * @see f_type_statuss_append()
- * @see f_type_statuss_decimate_by()
- * @see f_type_statusss_append()
+ * @see f_statuss_resize()
+ * @see f_statuss_append()
+ * @see f_statuss_decimate_by()
+ * @see f_statusss_append()
  */
-#if !defined(_di_f_type_statuss_resize_) || !defined(_di_f_type_statuss_append_) || !defined(_di_f_type_statuss_decimate_by_) || !defined(_di_f_type_statusss_append_)
-  extern f_status_t private_f_type_statuss_resize(const f_array_length_t length, f_statuss_t *statuss) F_attribute_visibility_internal_d;
-#endif // !defined(_di_f_type_statuss_resize_) || !defined(_di_f_type_statuss_append_) || !defined(_di_f_type_statuss_decimate_by_) || !defined(_di_f_type_statusss_append_)
+#if !defined(_di_f_statuss_resize_) || !defined(_di_f_statuss_append_) || !defined(_di_f_statuss_decimate_by_) || !defined(_di_f_statusss_append_)
+  extern f_status_t private_f_statuss_resize(const f_array_length_t length, f_statuss_t *statuss) F_attribute_visibility_internal_d;
+#endif // !defined(_di_f_statuss_resize_) || !defined(_di_f_statuss_append_) || !defined(_di_f_statuss_decimate_by_) || !defined(_di_f_statusss_append_)
 
 /**
  * Private implementation for resizing the statusss array.
@@ -106,12 +106,12 @@ extern "C" {
  *   Errors (with error bit) from: f_memory_adjust().
  *   Errors (with error bit) from: f_memory_destroy().
  *
- * @see f_type_statusss_adjust()
- * @see f_type_statusss_decimate_by()
+ * @see f_statusss_adjust()
+ * @see f_statusss_decimate_by()
  */
-#if !defined(_di_f_type_statusss_adjust_) || !defined(_di_f_type_statusss_decimate_by_)
-  extern f_status_t private_f_type_statusss_adjust(const f_array_length_t length, f_statusss_t *statusss) F_attribute_visibility_internal_d;
-#endif // !defined(_di_f_type_statusss_adjust_) || !defined(_di_f_type_statusss_decimate_by_)
+#if !defined(_di_f_statusss_adjust_) || !defined(_di_f_statusss_decimate_by_)
+  extern f_status_t private_f_statusss_adjust(const f_array_length_t length, f_statusss_t *statusss) F_attribute_visibility_internal_d;
+#endif // !defined(_di_f_statusss_adjust_) || !defined(_di_f_statusss_decimate_by_)
 
 /**
  * Private implementation for resizing the statusss array.
@@ -134,14 +134,14 @@ extern "C" {
  *   Errors (with error bit) from: f_memory_delete().
  *   Errors (with error bit) from: f_memory_resize().
  *
- * @see f_type_statusss_decrease_by()
- * @see f_type_statusss_increase()
- * @see f_type_statusss_increase_by()
- * @see f_type_statusss_resize()
+ * @see f_statusss_decrease_by()
+ * @see f_statusss_increase()
+ * @see f_statusss_increase_by()
+ * @see f_statusss_resize()
  */
-#if !defined(_di_f_type_statusss_decrease_by_) || !defined(_di_f_type_statusss_increase_) || !defined(_di_f_type_statusss_increase_by_) || !defined(_di_f_type_statusss_resize_)
-  extern f_status_t private_f_type_statusss_resize(const f_array_length_t length, f_statusss_t *statusss) F_attribute_visibility_internal_d;
-#endif // !defined(_di_f_type_statusss_decrease_by_) || !defined(_di_f_type_statusss_increase_) || !defined(_di_f_type_statusss_increase_by_) || !defined(_di_f_type_statusss_resize_)
+#if !defined(_di_f_statusss_decrease_by_) || !defined(_di_f_statusss_increase_) || !defined(_di_f_statusss_increase_by_) || !defined(_di_f_statusss_resize_)
+  extern f_status_t private_f_statusss_resize(const f_array_length_t length, f_statusss_t *statusss) F_attribute_visibility_internal_d;
+#endif // !defined(_di_f_statusss_decrease_by_) || !defined(_di_f_statusss_increase_) || !defined(_di_f_statusss_increase_by_) || !defined(_di_f_statusss_resize_)
 
 #ifdef __cplusplus
 } // extern "C"
index e3889497603ef9c5c27380f81a26fa015da0fdc5..2273223896b3b92f4393027bfa111aea5cfe958a 100644 (file)
@@ -6,60 +6,60 @@
 extern "C" {
 #endif
 
-#ifndef _di_f_type_states_adjust_
-  f_status_t f_type_states_adjust(const f_array_length_t length, f_states_t *states) {
+#ifndef _di_f_states_adjust_
+  f_status_t f_states_adjust(const f_array_length_t length, f_states_t *states) {
     #ifndef _di_level_0_parameter_checking_
       if (!states) return F_status_set_error(F_parameter);
     #endif // _di_level_0_parameter_checking_
 
-    return private_f_type_states_adjust(length, states);
+    return private_f_states_adjust(length, states);
   }
-#endif // _di_f_type_states_adjust_
+#endif // _di_f_states_adjust_
 
-#ifndef _di_f_type_states_append_
-  f_status_t f_type_states_append(const f_states_t source, f_states_t *destination) {
+#ifndef _di_f_states_append_
+  f_status_t f_states_append(const f_states_t source, f_states_t *destination) {
     #ifndef _di_level_0_parameter_checking_
       if (!destination) return F_status_set_error(F_parameter);
     #endif // _di_level_0_parameter_checking_
 
     if (!source.used) return F_data_not;
 
-    return private_f_type_states_append(source, destination);
+    return private_f_states_append(source, destination);
   }
-#endif // _di_f_type_states_append_
+#endif // _di_f_states_append_
 
-#ifndef _di_f_type_states_decimate_by_
-  f_status_t f_type_states_decimate_by(const f_array_length_t amount, f_states_t *states) {
+#ifndef _di_f_states_decimate_by_
+  f_status_t f_states_decimate_by(const f_array_length_t amount, f_states_t *states) {
     #ifndef _di_level_0_parameter_checking_
       if (!amount) return F_status_set_error(F_parameter);
       if (!states) return F_status_set_error(F_parameter);
     #endif // _di_level_0_parameter_checking_
 
     if (states->size - amount > 0) {
-      return private_f_type_states_adjust(states->size - amount, states);
+      return private_f_states_adjust(states->size - amount, states);
     }
 
-    return private_f_type_states_adjust(0, states);
+    return private_f_states_adjust(0, states);
   }
-#endif // _di_f_type_states_decimate_by_
+#endif // _di_f_states_decimate_by_
 
-#ifndef _di_f_type_states_decrease_by_
-  f_status_t f_type_states_decrease_by(const f_array_length_t amount, f_states_t *states) {
+#ifndef _di_f_states_decrease_by_
+  f_status_t f_states_decrease_by(const f_array_length_t amount, f_states_t *states) {
     #ifndef _di_level_0_parameter_checking_
       if (!amount) return F_status_set_error(F_parameter);
       if (!states) return F_status_set_error(F_parameter);
     #endif // _di_level_0_parameter_checking_
 
     if (states->size - amount > 0) {
-      return private_f_type_states_resize(states->size - amount, states);
+      return private_f_states_resize(states->size - amount, states);
     }
 
-    return private_f_type_states_resize(0, states);
+    return private_f_states_resize(0, states);
   }
-#endif // _di_f_type_states_decrease_by_
+#endif // _di_f_states_decrease_by_
 
-#ifndef _di_f_type_states_increase_
-  f_status_t f_type_states_increase(const uint16_t step, f_states_t *states) {
+#ifndef _di_f_states_increase_
+  f_status_t f_states_increase(const uint16_t step, f_states_t *states) {
     #ifndef _di_level_0_parameter_checking_
       if (!step) return F_status_set_error(F_parameter);
       if (!states) return F_status_set_error(F_parameter);
@@ -76,15 +76,15 @@ extern "C" {
         size = F_array_length_t_size_d;
       }
 
-      return private_f_type_states_resize(size, states);
+      return private_f_states_resize(size, states);
     }
 
     return F_data_not;
   }
-#endif // _di_f_type_states_increase_
+#endif // _di_f_states_increase_
 
-#ifndef _di_f_type_states_increase_by_
-  f_status_t f_type_states_increase_by(const f_array_length_t amount, f_states_t *states) {
+#ifndef _di_f_states_increase_by_
+  f_status_t f_states_increase_by(const f_array_length_t amount, f_states_t *states) {
     #ifndef _di_level_0_parameter_checking_
       if (!amount) return F_status_set_error(F_parameter);
       if (!states) return F_status_set_error(F_parameter);
@@ -95,35 +95,35 @@ extern "C" {
         return F_status_set_error(F_array_too_large);
       }
 
-      return private_f_type_states_resize(states->used + amount, states);
+      return private_f_states_resize(states->used + amount, states);
     }
 
     return F_data_not;
   }
-#endif // _di_f_type_states_increase_by_
+#endif // _di_f_states_increase_by_
 
-#ifndef _di_f_type_states_resize_
-  f_status_t f_type_states_resize(const f_array_length_t length, f_states_t *states) {
+#ifndef _di_f_states_resize_
+  f_status_t f_states_resize(const f_array_length_t length, f_states_t *states) {
     #ifndef _di_level_0_parameter_checking_
       if (!states) return F_status_set_error(F_parameter);
     #endif // _di_level_0_parameter_checking_
 
-    return private_f_type_states_resize(length, states);
+    return private_f_states_resize(length, states);
   }
-#endif // _di_f_type_states_resize_
+#endif // _di_f_states_resize_
 
-#ifndef _di_f_type_statess_adjust_
-  f_status_t f_type_statess_adjust(const f_array_length_t length, f_statess_t *statess) {
+#ifndef _di_f_statess_adjust_
+  f_status_t f_statess_adjust(const f_array_length_t length, f_statess_t *statess) {
     #ifndef _di_level_0_parameter_checking_
       if (!statess) return F_status_set_error(F_parameter);
     #endif // _di_level_0_parameter_checking_
 
-    return private_f_type_statess_adjust(length, statess);
+    return private_f_statess_adjust(length, statess);
   }
-#endif // _di_f_type_statess_adjust_
+#endif // _di_f_statess_adjust_
 
-#ifndef _di_f_type_statess_append_
-  f_status_t f_type_statess_append(const f_statess_t source, f_statess_t *destination) {
+#ifndef _di_f_statess_append_
+  f_status_t f_statess_append(const f_statess_t source, f_statess_t *destination) {
     #ifndef _di_level_0_parameter_checking_
       if (!destination) return F_status_set_error(F_parameter);
     #endif // _di_level_0_parameter_checking_
@@ -133,51 +133,51 @@ extern "C" {
     f_status_t status = F_none;
 
     if (destination->used + source.used > destination->size) {
-      status = private_f_type_statess_resize(destination->used + source.used, destination);
+      status = private_f_statess_resize(destination->used + source.used, destination);
       if (F_status_is_error(status)) return status;
     }
 
     for (f_array_length_t i = 0; i < source.used; ++i, ++destination->used) {
-      status = private_f_type_states_append(source.array[i], &destination->array[destination->used]);
+      status = private_f_states_append(source.array[i], &destination->array[destination->used]);
       if (F_status_is_error(status)) return status;
     } // for
 
     return F_none;
   }
-#endif // _di_f_type_statess_append_
+#endif // _di_f_statess_append_
 
-#ifndef _di_f_type_statess_decimate_by_
-  f_status_t f_type_statess_decimate_by(const f_array_length_t amount, f_statess_t *statess) {
+#ifndef _di_f_statess_decimate_by_
+  f_status_t f_statess_decimate_by(const f_array_length_t amount, f_statess_t *statess) {
     #ifndef _di_level_0_parameter_checking_
       if (!amount) return F_status_set_error(F_parameter);
       if (!statess) return F_status_set_error(F_parameter);
     #endif // _di_level_0_parameter_checking_
 
     if (statess->size - amount > 0) {
-      return private_f_type_statess_adjust(statess->size - amount, statess);
+      return private_f_statess_adjust(statess->size - amount, statess);
     }
 
-    return private_f_type_statess_adjust(0, statess);
+    return private_f_statess_adjust(0, statess);
   }
-#endif // _di_f_type_statess_decimate_by_
+#endif // _di_f_statess_decimate_by_
 
-#ifndef _di_f_type_statess_decrease_by_
-  f_status_t f_type_statess_decrease_by(const f_array_length_t amount, f_statess_t *statess) {
+#ifndef _di_f_statess_decrease_by_
+  f_status_t f_statess_decrease_by(const f_array_length_t amount, f_statess_t *statess) {
     #ifndef _di_level_0_parameter_checking_
       if (!amount) return F_status_set_error(F_parameter);
       if (!statess) return F_status_set_error(F_parameter);
     #endif // _di_level_0_parameter_checking_
 
     if (statess->size - amount > 0) {
-      return private_f_type_statess_resize(statess->size - amount, statess);
+      return private_f_statess_resize(statess->size - amount, statess);
     }
 
-    return private_f_type_statess_resize(0, statess);
+    return private_f_statess_resize(0, statess);
   }
-#endif // _di_f_type_statess_decrease_by_
+#endif // _di_f_statess_decrease_by_
 
-#ifndef _di_f_type_statess_increase_
-  f_status_t f_type_statess_increase(const uint16_t step, f_statess_t *statess) {
+#ifndef _di_f_statess_increase_
+  f_status_t f_statess_increase(const uint16_t step, f_statess_t *statess) {
     #ifndef _di_level_0_parameter_checking_
       if (!step) return F_status_set_error(F_parameter);
       if (!statess) return F_status_set_error(F_parameter);
@@ -194,15 +194,15 @@ extern "C" {
         size = F_array_length_t_size_d;
       }
 
-      return private_f_type_statess_resize(size, statess);
+      return private_f_statess_resize(size, statess);
     }
 
     return F_data_not;
   }
-#endif // _di_f_type_statess_increase_
+#endif // _di_f_statess_increase_
 
-#ifndef _di_f_type_statess_increase_by_
-  f_status_t f_type_statess_increase_by(const f_array_length_t amount, f_statess_t *statess) {
+#ifndef _di_f_statess_increase_by_
+  f_status_t f_statess_increase_by(const f_array_length_t amount, f_statess_t *statess) {
     #ifndef _di_level_0_parameter_checking_
       if (!amount) return F_status_set_error(F_parameter);
       if (!statess) return F_status_set_error(F_parameter);
@@ -213,22 +213,22 @@ extern "C" {
         return F_status_set_error(F_array_too_large);
       }
 
-      return private_f_type_statess_resize(statess->used + amount, statess);
+      return private_f_statess_resize(statess->used + amount, statess);
     }
 
     return F_data_not;
   }
-#endif // _di_f_type_statess_increase_by_
+#endif // _di_f_statess_increase_by_
 
-#ifndef _di_f_type_statess_resize_
-  f_status_t f_type_statess_resize(const f_array_length_t length, f_statess_t *statess) {
+#ifndef _di_f_statess_resize_
+  f_status_t f_statess_resize(const f_array_length_t length, f_statess_t *statess) {
     #ifndef _di_level_0_parameter_checking_
       if (!statess) return F_status_set_error(F_parameter);
     #endif // _di_level_0_parameter_checking_
 
-    return private_f_type_statess_resize(length, statess);
+    return private_f_statess_resize(length, statess);
   }
-#endif // _di_f_type_statess_resize_
+#endif // _di_f_statess_resize_
 
 #ifdef __cplusplus
 } // extern "C"
index fd489bb23688cba41495fcda30519d05a47cf985..223fd806e140af3d24ba3198fbfa5d96ee0dc0a2 100644 (file)
@@ -31,9 +31,9 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_adjust().
  */
-#ifndef _di_f_type_states_adjust_
-  extern f_status_t f_type_states_adjust(const f_array_length_t length, f_states_t *states);
-#endif // _di_f_type_states_adjust_
+#ifndef _di_f_states_adjust_
+  extern f_status_t f_states_adjust(const f_array_length_t length, f_states_t *states);
+#endif // _di_f_states_adjust_
 
 /**
  * Append the source states onto the destination.
@@ -51,9 +51,9 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  */
-#ifndef _di_f_type_states_append_
-  extern f_status_t f_type_states_append(const f_states_t source, f_states_t *destination);
-#endif // _di_f_type_states_append_
+#ifndef _di_f_states_append_
+  extern f_status_t f_states_append(const f_states_t source, f_states_t *destination);
+#endif // _di_f_states_append_
 
 /**
  * Resize the string states array to a smaller size.
@@ -74,9 +74,9 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_adjust().
  */
-#ifndef _di_f_type_states_decimate_by_
-  extern f_status_t f_type_states_decimate_by(const f_array_length_t amount, f_states_t *states);
-#endif // _di_f_type_states_decimate_by_
+#ifndef _di_f_states_decimate_by_
+  extern f_status_t f_states_decimate_by(const f_array_length_t amount, f_states_t *states);
+#endif // _di_f_states_decimate_by_
 
 /**
  * Resize the string states array to a smaller size.
@@ -97,9 +97,9 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  */
-#ifndef _di_f_type_states_decrease_by_
-  extern f_status_t f_type_states_decrease_by(const f_array_length_t amount, f_states_t *states);
-#endif // _di_f_type_states_decrease_by_
+#ifndef _di_f_states_decrease_by_
+  extern f_status_t f_states_decrease_by(const f_array_length_t amount, f_states_t *states);
+#endif // _di_f_states_decrease_by_
 
 /**
  * Increase the size of the string states array, but only if necesary.
@@ -122,9 +122,9 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  */
-#ifndef _di_f_type_states_increase_
-  extern f_status_t f_type_states_increase(const uint16_t step, f_states_t *states);
-#endif // _di_f_type_states_increase_
+#ifndef _di_f_states_increase_
+  extern f_status_t f_states_increase(const uint16_t step, f_states_t *states);
+#endif // _di_f_states_increase_
 
 /**
  * Resize the string states array to a larger size.
@@ -147,9 +147,9 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  */
-#ifndef _di_f_type_states_increase_by_
-  extern f_status_t f_type_states_increase_by(const f_array_length_t amount, f_states_t *states);
-#endif // _di_f_type_states_increase_by_
+#ifndef _di_f_states_increase_by_
+  extern f_status_t f_states_increase_by(const f_array_length_t amount, f_states_t *states);
+#endif // _di_f_states_increase_by_
 
 /**
  * Resize the string states array.
@@ -166,9 +166,9 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  */
-#ifndef _di_f_type_states_resize_
-  extern f_status_t f_type_states_resize(const f_array_length_t length, f_states_t *states);
-#endif // _di_f_type_states_resize_
+#ifndef _di_f_states_resize_
+  extern f_status_t f_states_resize(const f_array_length_t length, f_states_t *states);
+#endif // _di_f_states_resize_
 
 /**
  * Resize the string statess array.
@@ -186,9 +186,9 @@ extern "C" {
  *   Errors (with error bit) from: f_memory_adjust().
  *   Errors (with error bit) from: f_memory_destroy().
  */
-#ifndef _di_f_type_statess_adjust_
-  extern f_status_t f_type_statess_adjust(const f_array_length_t length, f_statess_t *statess);
-#endif // _di_f_type_statess_adjust_
+#ifndef _di_f_statess_adjust_
+  extern f_status_t f_statess_adjust(const f_array_length_t length, f_statess_t *statess);
+#endif // _di_f_statess_adjust_
 
 /**
  * Append the source statess onto the destination.
@@ -206,9 +206,9 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  */
-#ifndef _di_f_type_statess_append_
-  extern f_status_t f_type_statess_append(const f_statess_t source, f_statess_t *destination);
-#endif // _di_f_type_statess_append_
+#ifndef _di_f_statess_append_
+  extern f_status_t f_statess_append(const f_statess_t source, f_statess_t *destination);
+#endif // _di_f_statess_append_
 
 /**
  * Resize the string statess array.
@@ -226,9 +226,9 @@ extern "C" {
  *   Errors (with error bit) from: f_memory_adjust().
  *   Errors (with error bit) from: f_memory_destroy().
  */
-#ifndef _di_f_type_statess_adjust_
-  extern f_status_t f_type_statess_adjust(const f_array_length_t length, f_statess_t *statess);
-#endif // _di_f_type_statess_adjust_
+#ifndef _di_f_statess_adjust_
+  extern f_status_t f_statess_adjust(const f_array_length_t length, f_statess_t *statess);
+#endif // _di_f_statess_adjust_
 
 /**
  * Resize the string statess array to a smaller size.
@@ -250,9 +250,9 @@ extern "C" {
  *   Errors (with error bit) from: f_memory_adjust().
  *   Errors (with error bit) from: f_memory_destroy().
  */
-#ifndef _di_f_type_statess_decimate_by_
-  extern f_status_t f_type_statess_decimate_by(const f_array_length_t amount, f_statess_t *statess);
-#endif // _di_f_type_statess_decimate_by_
+#ifndef _di_f_statess_decimate_by_
+  extern f_status_t f_statess_decimate_by(const f_array_length_t amount, f_statess_t *statess);
+#endif // _di_f_statess_decimate_by_
 
 /**
  * Resize the string statess array to a smaller size.
@@ -274,9 +274,9 @@ extern "C" {
  *   Errors (with error bit) from: f_memory_delete().
  *   Errors (with error bit) from: f_memory_resize().
  */
-#ifndef _di_f_type_statess_decrease_by_
-  extern f_status_t f_type_statess_decrease_by(const f_array_length_t amount, f_statess_t *statess);
-#endif // _di_f_type_statess_decrease_by_
+#ifndef _di_f_statess_decrease_by_
+  extern f_status_t f_statess_decrease_by(const f_array_length_t amount, f_statess_t *statess);
+#endif // _di_f_statess_decrease_by_
 
 /**
  * Increase the size of the string statess array, but only if necessary.
@@ -299,9 +299,9 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  */
-#ifndef _di_f_type_statess_increase_
-  extern f_status_t f_type_statess_increase(const uint16_t step, f_statess_t *statess);
-#endif // _di_f_type_statess_increase_
+#ifndef _di_f_statess_increase_
+  extern f_status_t f_statess_increase(const uint16_t step, f_statess_t *statess);
+#endif // _di_f_statess_increase_
 
 /**
  * Resize the string statess array to a larger size.
@@ -324,9 +324,9 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  */
-#ifndef _di_f_type_statess_increase_by_
-  extern f_status_t f_type_statess_increase_by(const f_array_length_t amount, f_statess_t *statess);
-#endif // _di_f_type_statess_increase_by_
+#ifndef _di_f_statess_increase_by_
+  extern f_status_t f_statess_increase_by(const f_array_length_t amount, f_statess_t *statess);
+#endif // _di_f_statess_increase_by_
 
 /**
  * Resize the string statess array.
@@ -344,9 +344,9 @@ extern "C" {
  *   Errors (with error bit) from: f_memory_delete().
  *   Errors (with error bit) from: f_memory_resize().
  */
-#ifndef _di_f_type_statess_resize_
-  extern f_status_t f_type_statess_resize(const f_array_length_t length, f_statess_t *statess);
-#endif // _di_f_type_statess_resize_
+#ifndef _di_f_statess_resize_
+  extern f_status_t f_statess_resize(const f_array_length_t length, f_statess_t *statess);
+#endif // _di_f_statess_resize_
 
 #ifdef __cplusplus
 } // extern "C"
index ce1f34d4585358c3ed896d9782724a83f9ff60cc..4c911d12ed0dc62a750a39c1f7e5070eff5b020a 100644 (file)
@@ -6,60 +6,60 @@
 extern "C" {
 #endif
 
-#ifndef _di_f_type_statuss_adjust_
-  f_status_t f_type_statuss_adjust(const f_array_length_t length, f_statuss_t *statuss) {
+#ifndef _di_f_statuss_adjust_
+  f_status_t f_statuss_adjust(const f_array_length_t length, f_statuss_t *statuss) {
     #ifndef _di_level_0_parameter_checking_
       if (!statuss) return F_status_set_error(F_parameter);
     #endif // _di_level_0_parameter_checking_
 
-    return private_f_type_statuss_adjust(length, statuss);
+    return private_f_statuss_adjust(length, statuss);
   }
-#endif // _di_f_type_statuss_adjust_
+#endif // _di_f_statuss_adjust_
 
-#ifndef _di_f_type_statuss_append_
-  f_status_t f_type_statuss_append(const f_statuss_t source, f_statuss_t *destination) {
+#ifndef _di_f_statuss_append_
+  f_status_t f_statuss_append(const f_statuss_t source, f_statuss_t *destination) {
     #ifndef _di_level_0_parameter_checking_
       if (!destination) return F_status_set_error(F_parameter);
     #endif // _di_level_0_parameter_checking_
 
     if (!source.used) return F_data_not;
 
-    return private_f_type_statuss_append(source, destination);
+    return private_f_statuss_append(source, destination);
   }
-#endif // _di_f_type_statuss_append_
+#endif // _di_f_statuss_append_
 
-#ifndef _di_f_type_statuss_decimate_by_
-  f_status_t f_type_statuss_decimate_by(const f_array_length_t amount, f_statuss_t *statuss) {
+#ifndef _di_f_statuss_decimate_by_
+  f_status_t f_statuss_decimate_by(const f_array_length_t amount, f_statuss_t *statuss) {
     #ifndef _di_level_0_parameter_checking_
       if (!amount) return F_status_set_error(F_parameter);
       if (!statuss) return F_status_set_error(F_parameter);
     #endif // _di_level_0_parameter_checking_
 
     if (statuss->size - amount > 0) {
-      return private_f_type_statuss_adjust(statuss->size - amount, statuss);
+      return private_f_statuss_adjust(statuss->size - amount, statuss);
     }
 
-    return private_f_type_statuss_adjust(0, statuss);
+    return private_f_statuss_adjust(0, statuss);
   }
-#endif // _di_f_type_statuss_decimate_by_
+#endif // _di_f_statuss_decimate_by_
 
-#ifndef _di_f_type_statuss_decrease_by_
-  f_status_t f_type_statuss_decrease_by(const f_array_length_t amount, f_statuss_t *statuss) {
+#ifndef _di_f_statuss_decrease_by_
+  f_status_t f_statuss_decrease_by(const f_array_length_t amount, f_statuss_t *statuss) {
     #ifndef _di_level_0_parameter_checking_
       if (!amount) return F_status_set_error(F_parameter);
       if (!statuss) return F_status_set_error(F_parameter);
     #endif // _di_level_0_parameter_checking_
 
     if (statuss->size - amount > 0) {
-      return private_f_type_statuss_resize(statuss->size - amount, statuss);
+      return private_f_statuss_resize(statuss->size - amount, statuss);
     }
 
-    return private_f_type_statuss_resize(0, statuss);
+    return private_f_statuss_resize(0, statuss);
   }
-#endif // _di_f_type_statuss_decrease_by_
+#endif // _di_f_statuss_decrease_by_
 
-#ifndef _di_f_type_statuss_increase_
-  f_status_t f_type_statuss_increase(const uint16_t step, f_statuss_t *statuss) {
+#ifndef _di_f_statuss_increase_
+  f_status_t f_statuss_increase(const uint16_t step, f_statuss_t *statuss) {
     #ifndef _di_level_0_parameter_checking_
       if (!step) return F_status_set_error(F_parameter);
       if (!statuss) return F_status_set_error(F_parameter);
@@ -76,15 +76,15 @@ extern "C" {
         size = F_array_length_t_size_d;
       }
 
-      return private_f_type_statuss_resize(size, statuss);
+      return private_f_statuss_resize(size, statuss);
     }
 
     return F_data_not;
   }
-#endif // _di_f_type_statuss_increase_
+#endif // _di_f_statuss_increase_
 
-#ifndef _di_f_type_statuss_increase_by_
-  f_status_t f_type_statuss_increase_by(const f_array_length_t amount, f_statuss_t *statuss) {
+#ifndef _di_f_statuss_increase_by_
+  f_status_t f_statuss_increase_by(const f_array_length_t amount, f_statuss_t *statuss) {
     #ifndef _di_level_0_parameter_checking_
       if (!amount) return F_status_set_error(F_parameter);
       if (!statuss) return F_status_set_error(F_parameter);
@@ -95,35 +95,35 @@ extern "C" {
         return F_status_set_error(F_array_too_large);
       }
 
-      return private_f_type_statuss_resize(statuss->used + amount, statuss);
+      return private_f_statuss_resize(statuss->used + amount, statuss);
     }
 
     return F_data_not;
   }
-#endif // _di_f_type_statuss_increase_by_
+#endif // _di_f_statuss_increase_by_
 
-#ifndef _di_f_type_statuss_resize_
-  f_status_t f_type_statuss_resize(const f_array_length_t length, f_statuss_t *statuss) {
+#ifndef _di_f_statuss_resize_
+  f_status_t f_statuss_resize(const f_array_length_t length, f_statuss_t *statuss) {
     #ifndef _di_level_0_parameter_checking_
       if (!statuss) return F_status_set_error(F_parameter);
     #endif // _di_level_0_parameter_checking_
 
-    return private_f_type_statuss_resize(length, statuss);
+    return private_f_statuss_resize(length, statuss);
   }
-#endif // _di_f_type_statuss_resize_
+#endif // _di_f_statuss_resize_
 
-#ifndef _di_f_type_statusss_adjust_
-  f_status_t f_type_statusss_adjust(const f_array_length_t length, f_statusss_t *statusss) {
+#ifndef _di_f_statusss_adjust_
+  f_status_t f_statusss_adjust(const f_array_length_t length, f_statusss_t *statusss) {
     #ifndef _di_level_0_parameter_checking_
       if (!statusss) return F_status_set_error(F_parameter);
     #endif // _di_level_0_parameter_checking_
 
-    return private_f_type_statusss_adjust(length, statusss);
+    return private_f_statusss_adjust(length, statusss);
   }
-#endif // _di_f_type_statusss_adjust_
+#endif // _di_f_statusss_adjust_
 
-#ifndef _di_f_type_statusss_append_
-  f_status_t f_type_statusss_append(const f_statusss_t source, f_statusss_t *destination) {
+#ifndef _di_f_statusss_append_
+  f_status_t f_statusss_append(const f_statusss_t source, f_statusss_t *destination) {
     #ifndef _di_level_0_parameter_checking_
       if (!destination) return F_status_set_error(F_parameter);
     #endif // _di_level_0_parameter_checking_
@@ -133,51 +133,51 @@ extern "C" {
     f_status_t status = F_none;
 
     if (destination->used + source.used > destination->size) {
-      status = private_f_type_statusss_resize(destination->used + source.used, destination);
+      status = private_f_statusss_resize(destination->used + source.used, destination);
       if (F_status_is_error(status)) return status;
     }
 
     for (f_array_length_t i = 0; i < source.used; ++i, ++destination->used) {
-      status = private_f_type_statuss_append(source.array[i], &destination->array[destination->used]);
+      status = private_f_statuss_append(source.array[i], &destination->array[destination->used]);
       if (F_status_is_error(status)) return status;
     } // for
 
     return F_none;
   }
-#endif // _di_f_type_statusss_append_
+#endif // _di_f_statusss_append_
 
-#ifndef _di_f_type_statusss_decimate_by_
-  f_status_t f_type_statusss_decimate_by(const f_array_length_t amount, f_statusss_t *statusss) {
+#ifndef _di_f_statusss_decimate_by_
+  f_status_t f_statusss_decimate_by(const f_array_length_t amount, f_statusss_t *statusss) {
     #ifndef _di_level_0_parameter_checking_
       if (!amount) return F_status_set_error(F_parameter);
       if (!statusss) return F_status_set_error(F_parameter);
     #endif // _di_level_0_parameter_checking_
 
     if (statusss->size - amount > 0) {
-      return private_f_type_statusss_adjust(statusss->size - amount, statusss);
+      return private_f_statusss_adjust(statusss->size - amount, statusss);
     }
 
-    return private_f_type_statusss_adjust(0, statusss);
+    return private_f_statusss_adjust(0, statusss);
   }
-#endif // _di_f_type_statusss_decimate_by_
+#endif // _di_f_statusss_decimate_by_
 
-#ifndef _di_f_type_statusss_decrease_by_
-  f_status_t f_type_statusss_decrease_by(const f_array_length_t amount, f_statusss_t *statusss) {
+#ifndef _di_f_statusss_decrease_by_
+  f_status_t f_statusss_decrease_by(const f_array_length_t amount, f_statusss_t *statusss) {
     #ifndef _di_level_0_parameter_checking_
       if (!amount) return F_status_set_error(F_parameter);
       if (!statusss) return F_status_set_error(F_parameter);
     #endif // _di_level_0_parameter_checking_
 
     if (statusss->size - amount > 0) {
-      return private_f_type_statusss_resize(statusss->size - amount, statusss);
+      return private_f_statusss_resize(statusss->size - amount, statusss);
     }
 
-    return private_f_type_statusss_resize(0, statusss);
+    return private_f_statusss_resize(0, statusss);
   }
-#endif // _di_f_type_statusss_decrease_by_
+#endif // _di_f_statusss_decrease_by_
 
-#ifndef _di_f_type_statusss_increase_
-  f_status_t f_type_statusss_increase(const uint16_t step, f_statusss_t *statusss) {
+#ifndef _di_f_statusss_increase_
+  f_status_t f_statusss_increase(const uint16_t step, f_statusss_t *statusss) {
     #ifndef _di_level_0_parameter_checking_
       if (!step) return F_status_set_error(F_parameter);
       if (!statusss) return F_status_set_error(F_parameter);
@@ -194,15 +194,15 @@ extern "C" {
         size = F_array_length_t_size_d;
       }
 
-      return private_f_type_statusss_resize(size, statusss);
+      return private_f_statusss_resize(size, statusss);
     }
 
     return F_data_not;
   }
-#endif // _di_f_type_statusss_increase_
+#endif // _di_f_statusss_increase_
 
-#ifndef _di_f_type_statusss_increase_by_
-  f_status_t f_type_statusss_increase_by(const f_array_length_t amount, f_statusss_t *statusss) {
+#ifndef _di_f_statusss_increase_by_
+  f_status_t f_statusss_increase_by(const f_array_length_t amount, f_statusss_t *statusss) {
     #ifndef _di_level_0_parameter_checking_
       if (!amount) return F_status_set_error(F_parameter);
       if (!statusss) return F_status_set_error(F_parameter);
@@ -213,22 +213,22 @@ extern "C" {
         return F_status_set_error(F_array_too_large);
       }
 
-      return private_f_type_statusss_resize(statusss->used + amount, statusss);
+      return private_f_statusss_resize(statusss->used + amount, statusss);
     }
 
     return F_data_not;
   }
-#endif // _di_f_type_statusss_increase_by_
+#endif // _di_f_statusss_increase_by_
 
-#ifndef _di_f_type_statusss_resize_
-  f_status_t f_type_statusss_resize(const f_array_length_t length, f_statusss_t *statusss) {
+#ifndef _di_f_statusss_resize_
+  f_status_t f_statusss_resize(const f_array_length_t length, f_statusss_t *statusss) {
     #ifndef _di_level_0_parameter_checking_
       if (!statusss) return F_status_set_error(F_parameter);
     #endif // _di_level_0_parameter_checking_
 
-    return private_f_type_statusss_resize(length, statusss);
+    return private_f_statusss_resize(length, statusss);
   }
-#endif // _di_f_type_statusss_resize_
+#endif // _di_f_statusss_resize_
 
 #ifdef __cplusplus
 } // extern "C"
index f99b86fd80f623615cd7ac0a7488243c04bf4573..7f743e31b8338be5787ac35edf31146453f787ca 100644 (file)
@@ -31,9 +31,9 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_adjust().
  */
-#ifndef _di_f_type_statuss_adjust_
-  extern f_status_t f_type_statuss_adjust(const f_array_length_t length, f_statuss_t *statuss);
-#endif // _di_f_type_statuss_adjust_
+#ifndef _di_f_statuss_adjust_
+  extern f_status_t f_statuss_adjust(const f_array_length_t length, f_statuss_t *statuss);
+#endif // _di_f_statuss_adjust_
 
 /**
  * Append the source statuss onto the destination.
@@ -51,9 +51,9 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  */
-#ifndef _di_f_type_statuss_append_
-  extern f_status_t f_type_statuss_append(const f_statuss_t source, f_statuss_t *destination);
-#endif // _di_f_type_statuss_append_
+#ifndef _di_f_statuss_append_
+  extern f_status_t f_statuss_append(const f_statuss_t source, f_statuss_t *destination);
+#endif // _di_f_statuss_append_
 
 /**
  * Resize the string statuss array to a smaller size.
@@ -74,9 +74,9 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_adjust().
  */
-#ifndef _di_f_type_statuss_decimate_by_
-  extern f_status_t f_type_statuss_decimate_by(const f_array_length_t amount, f_statuss_t *statuss);
-#endif // _di_f_type_statuss_decimate_by_
+#ifndef _di_f_statuss_decimate_by_
+  extern f_status_t f_statuss_decimate_by(const f_array_length_t amount, f_statuss_t *statuss);
+#endif // _di_f_statuss_decimate_by_
 
 /**
  * Resize the string statuss array to a smaller size.
@@ -97,9 +97,9 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  */
-#ifndef _di_f_type_statuss_decrease_by_
-  extern f_status_t f_type_statuss_decrease_by(const f_array_length_t amount, f_statuss_t *statuss);
-#endif // _di_f_type_statuss_decrease_by_
+#ifndef _di_f_statuss_decrease_by_
+  extern f_status_t f_statuss_decrease_by(const f_array_length_t amount, f_statuss_t *statuss);
+#endif // _di_f_statuss_decrease_by_
 
 /**
  * Increase the size of the string statuss array, but only if necesary.
@@ -122,9 +122,9 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  */
-#ifndef _di_f_type_statuss_increase_
-  extern f_status_t f_type_statuss_increase(const uint16_t step, f_statuss_t *statuss);
-#endif // _di_f_type_statuss_increase_
+#ifndef _di_f_statuss_increase_
+  extern f_status_t f_statuss_increase(const uint16_t step, f_statuss_t *statuss);
+#endif // _di_f_statuss_increase_
 
 /**
  * Resize the string statuss array to a larger size.
@@ -147,9 +147,9 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  */
-#ifndef _di_f_type_statuss_increase_by_
-  extern f_status_t f_type_statuss_increase_by(const f_array_length_t amount, f_statuss_t *statuss);
-#endif // _di_f_type_statuss_increase_by_
+#ifndef _di_f_statuss_increase_by_
+  extern f_status_t f_statuss_increase_by(const f_array_length_t amount, f_statuss_t *statuss);
+#endif // _di_f_statuss_increase_by_
 
 /**
  * Resize the string statuss array.
@@ -166,9 +166,9 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  */
-#ifndef _di_f_type_statuss_resize_
-  extern f_status_t f_type_statuss_resize(const f_array_length_t length, f_statuss_t *statuss);
-#endif // _di_f_type_statuss_resize_
+#ifndef _di_f_statuss_resize_
+  extern f_status_t f_statuss_resize(const f_array_length_t length, f_statuss_t *statuss);
+#endif // _di_f_statuss_resize_
 
 /**
  * Resize the string statusss array.
@@ -186,9 +186,9 @@ extern "C" {
  *   Errors (with error bit) from: f_memory_adjust().
  *   Errors (with error bit) from: f_memory_destroy().
  */
-#ifndef _di_f_type_statusss_adjust_
-  extern f_status_t f_type_statusss_adjust(const f_array_length_t length, f_statusss_t *statusss);
-#endif // _di_f_type_statusss_adjust_
+#ifndef _di_f_statusss_adjust_
+  extern f_status_t f_statusss_adjust(const f_array_length_t length, f_statusss_t *statusss);
+#endif // _di_f_statusss_adjust_
 
 /**
  * Append the source statusss onto the destination.
@@ -206,9 +206,9 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  */
-#ifndef _di_f_type_statusss_append_
-  extern f_status_t f_type_statusss_append(const f_statusss_t source, f_statusss_t *destination);
-#endif // _di_f_type_statusss_append_
+#ifndef _di_f_statusss_append_
+  extern f_status_t f_statusss_append(const f_statusss_t source, f_statusss_t *destination);
+#endif // _di_f_statusss_append_
 
 /**
  * Resize the string statusss array.
@@ -226,9 +226,9 @@ extern "C" {
  *   Errors (with error bit) from: f_memory_adjust().
  *   Errors (with error bit) from: f_memory_destroy().
  */
-#ifndef _di_f_type_statusss_adjust_
-  extern f_status_t f_type_statusss_adjust(const f_array_length_t length, f_statusss_t *statusss);
-#endif // _di_f_type_statusss_adjust_
+#ifndef _di_f_statusss_adjust_
+  extern f_status_t f_statusss_adjust(const f_array_length_t length, f_statusss_t *statusss);
+#endif // _di_f_statusss_adjust_
 
 /**
  * Resize the string statusss array to a smaller size.
@@ -250,9 +250,9 @@ extern "C" {
  *   Errors (with error bit) from: f_memory_adjust().
  *   Errors (with error bit) from: f_memory_destroy().
  */
-#ifndef _di_f_type_statusss_decimate_by_
-  extern f_status_t f_type_statusss_decimate_by(const f_array_length_t amount, f_statusss_t *statusss);
-#endif // _di_f_type_statusss_decimate_by_
+#ifndef _di_f_statusss_decimate_by_
+  extern f_status_t f_statusss_decimate_by(const f_array_length_t amount, f_statusss_t *statusss);
+#endif // _di_f_statusss_decimate_by_
 
 /**
  * Resize the string statusss array to a smaller size.
@@ -274,9 +274,9 @@ extern "C" {
  *   Errors (with error bit) from: f_memory_delete().
  *   Errors (with error bit) from: f_memory_resize().
  */
-#ifndef _di_f_type_statusss_decrease_by_
-  extern f_status_t f_type_statusss_decrease_by(const f_array_length_t amount, f_statusss_t *statusss);
-#endif // _di_f_type_statusss_decrease_by_
+#ifndef _di_f_statusss_decrease_by_
+  extern f_status_t f_statusss_decrease_by(const f_array_length_t amount, f_statusss_t *statusss);
+#endif // _di_f_statusss_decrease_by_
 
 /**
  * Increase the size of the string statusss array, but only if necessary.
@@ -299,9 +299,9 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  */
-#ifndef _di_f_type_statusss_increase_
-  extern f_status_t f_type_statusss_increase(const uint16_t step, f_statusss_t *statusss);
-#endif // _di_f_type_statusss_increase_
+#ifndef _di_f_statusss_increase_
+  extern f_status_t f_statusss_increase(const uint16_t step, f_statusss_t *statusss);
+#endif // _di_f_statusss_increase_
 
 /**
  * Resize the string statusss array to a larger size.
@@ -324,9 +324,9 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_memory_resize().
  */
-#ifndef _di_f_type_statusss_increase_by_
-  extern f_status_t f_type_statusss_increase_by(const f_array_length_t amount, f_statusss_t *statusss);
-#endif // _di_f_type_statusss_increase_by_
+#ifndef _di_f_statusss_increase_by_
+  extern f_status_t f_statusss_increase_by(const f_array_length_t amount, f_statusss_t *statusss);
+#endif // _di_f_statusss_increase_by_
 
 /**
  * Resize the string statusss array.
@@ -344,9 +344,9 @@ extern "C" {
  *   Errors (with error bit) from: f_memory_delete().
  *   Errors (with error bit) from: f_memory_resize().
  */
-#ifndef _di_f_type_statusss_resize_
-  extern f_status_t f_type_statusss_resize(const f_array_length_t length, f_statusss_t *statusss);
-#endif // _di_f_type_statusss_resize_
+#ifndef _di_f_statusss_resize_
+  extern f_status_t f_statusss_resize(const f_array_length_t length, f_statusss_t *statusss);
+#endif // _di_f_statusss_resize_
 
 #ifdef __cplusplus
 } // extern "C"
index 2e24ad63da29bfdcf400436be688819482b61355..90c9a84a63202ebf6075cd40fe0a878157e026d1 100644 (file)
@@ -11,7 +11,7 @@ void test__f_type_array_array_lengths_adjust__works(void **state) {
   f_array_lengths_t data = f_array_lengths_t_initialize;
 
   {
-    const f_status_t status = f_type_array_lengths_adjust(length, &data);
+    const f_status_t status = f_array_lengths_adjust(length, &data);
 
     assert_int_equal(status, F_none);
     assert_int_equal(data.used, 0);
@@ -27,7 +27,7 @@ void test__f_type_array_array_lengths_adjust__fails_on_invalid_parameter(void **
   f_array_lengths_t data = f_array_lengths_t_initialize;
 
   {
-    const f_status_t status = f_type_array_lengths_adjust(length, 0);
+    const f_status_t status = f_array_lengths_adjust(length, 0);
 
     assert_int_equal(status, F_status_set_error(F_parameter));
     assert_int_equal(data.used, 0);
index e64448b2c1b840c78eb4f9df642871574f5677af..db56b669484bd1986ee765ddb0550a7336af5cde 100644 (file)
@@ -13,7 +13,7 @@ void test__f_type_array_array_lengths_append__works(void **state) {
   f_array_lengths_t destination = f_array_lengths_t_initialize;
 
   {
-    const f_status_t status = f_type_array_lengths_resize(length, &source);
+    const f_status_t status = f_array_lengths_resize(length, &source);
 
     assert_int_equal(status, F_none);
     assert_int_equal(source.used, 0);
@@ -25,7 +25,7 @@ void test__f_type_array_array_lengths_append__works(void **state) {
   } // for
 
   {
-    const f_status_t status = f_type_array_lengths_append(source, &destination);
+    const f_status_t status = f_array_lengths_append(source, &destination);
 
     assert_int_equal(status, F_none);
     assert_int_equal(destination.used, source.used);
@@ -47,7 +47,7 @@ void test__f_type_array_array_lengths_append__returns_data_not(void **state) {
   f_array_lengths_t destination = f_array_lengths_t_initialize;
 
   {
-    const f_status_t status = f_type_array_lengths_resize(length, &source);
+    const f_status_t status = f_array_lengths_resize(length, &source);
 
     assert_int_equal(status, F_none);
     assert_int_equal(source.used, 0);
@@ -55,7 +55,7 @@ void test__f_type_array_array_lengths_append__returns_data_not(void **state) {
   }
 
   {
-    const f_status_t status = f_type_array_lengths_append(source, &destination);
+    const f_status_t status = f_array_lengths_append(source, &destination);
 
     assert_int_equal(status, F_data_not);
     assert_int_equal(destination.used, 0);
@@ -72,7 +72,7 @@ void test__f_type_array_array_lengths_append__fails_on_invalid_parameter(void **
   f_array_lengths_t data = f_array_lengths_t_initialize;
 
   {
-    const f_status_t status = f_type_array_lengths_append(data, 0);
+    const f_status_t status = f_array_lengths_append(data, 0);
 
     assert_int_equal(status, F_status_set_error(F_parameter));
     assert_int_equal(data.used, 0);
index 943628d9d9306befd2709ec86b1441e3373ea54e..f248032348d515b1416cc7cf4aa32398134e94f0 100644 (file)
@@ -11,7 +11,7 @@ void test__f_type_array_array_lengths_decimate_by__works(void **state) {
   f_array_lengths_t data = f_array_lengths_t_initialize;
 
   {
-    const f_status_t status = f_type_array_lengths_resize(length, &data);
+    const f_status_t status = f_array_lengths_resize(length, &data);
 
     assert_int_equal(status, F_none);
     assert_int_equal(data.used, 0);
@@ -19,7 +19,7 @@ void test__f_type_array_array_lengths_decimate_by__works(void **state) {
   }
 
   {
-    const f_status_t status = f_type_array_lengths_decimate_by(length, &data);
+    const f_status_t status = f_array_lengths_decimate_by(length, &data);
 
     assert_int_equal(status, F_none);
     assert_int_equal(data.used, 0);
@@ -35,7 +35,7 @@ void test__f_type_array_array_lengths_decimate_by__fails_on_invalid_parameter(vo
   f_array_lengths_t data = f_array_lengths_t_initialize;
 
   {
-    const f_status_t status = f_type_array_lengths_decimate_by(length, 0);
+    const f_status_t status = f_array_lengths_decimate_by(length, 0);
 
     assert_int_equal(status, F_status_set_error(F_parameter));
     assert_int_equal(data.used, 0);
index 6f38eab3139de6284f3b4011f63e8d595adfee62..c6c9ba80f125211f40a29767836229864d3eb58e 100644 (file)
@@ -11,7 +11,7 @@ void test__f_type_array_array_lengths_decrease_by__works(void **state) {
   f_array_lengths_t data = f_array_lengths_t_initialize;
 
   {
-    const f_status_t status = f_type_array_lengths_resize(length, &data);
+    const f_status_t status = f_array_lengths_resize(length, &data);
 
     assert_int_equal(status, F_none);
     assert_int_equal(data.used, 0);
@@ -19,7 +19,7 @@ void test__f_type_array_array_lengths_decrease_by__works(void **state) {
   }
 
   {
-    const f_status_t status = f_type_array_lengths_decrease_by(length, &data);
+    const f_status_t status = f_array_lengths_decrease_by(length, &data);
 
     assert_int_equal(status, F_none);
     assert_int_equal(data.used, 0);
@@ -35,7 +35,7 @@ void test__f_type_array_array_lengths_decrease_by__fails_on_invalid_parameter(vo
   f_array_lengths_t data = f_array_lengths_t_initialize;
 
   {
-    const f_status_t status = f_type_array_lengths_decrease_by(length, 0);
+    const f_status_t status = f_array_lengths_decrease_by(length, 0);
 
     assert_int_equal(status, F_status_set_error(F_parameter));
     assert_int_equal(data.used, 0);
index 56d7e99ed262af1f4c86fb523eb201119f6fc512..8aacad3acc6ce779f9bba8e5a318a22d55f10b9d 100644 (file)
@@ -11,7 +11,7 @@ void test__f_type_array_array_lengths_increase__works(void **state) {
   f_array_lengths_t data = f_array_lengths_t_initialize;
 
   {
-    const f_status_t status = f_type_array_lengths_resize(length, &data);
+    const f_status_t status = f_array_lengths_resize(length, &data);
 
     assert_int_equal(status, F_none);
     assert_int_equal(data.used, 0);
@@ -21,7 +21,7 @@ void test__f_type_array_array_lengths_increase__works(void **state) {
   {
     data.used = length;
 
-    const f_status_t status = f_type_array_lengths_increase(length, &data);
+    const f_status_t status = f_array_lengths_increase(length, &data);
 
     assert_int_equal(status, F_none);
     assert_int_equal(data.used, length);
@@ -37,7 +37,7 @@ void test__f_type_array_array_lengths_increase__returns_data_not(void **state) {
   f_array_lengths_t data = f_array_lengths_t_initialize;
 
   {
-    const f_status_t status = f_type_array_lengths_resize(length, &data);
+    const f_status_t status = f_array_lengths_resize(length, &data);
 
     assert_int_equal(status, F_none);
     assert_int_equal(data.used, 0);
@@ -45,7 +45,7 @@ void test__f_type_array_array_lengths_increase__returns_data_not(void **state) {
   }
 
   {
-    const f_status_t status = f_type_array_lengths_increase(length, &data);
+    const f_status_t status = f_array_lengths_increase(length, &data);
 
     assert_int_equal(status, F_data_not);
     assert_int_equal(data.used, 0);
@@ -61,7 +61,7 @@ void test__f_type_array_array_lengths_increase__fails_on_invalid_parameter(void
   f_array_lengths_t data = f_array_lengths_t_initialize;
 
   {
-    const f_status_t status = f_type_array_lengths_increase(length, 0);
+    const f_status_t status = f_array_lengths_increase(length, 0);
 
     assert_int_equal(status, F_status_set_error(F_parameter));
     assert_int_equal(data.used, 0);
index b0e6ec117b1c1acff1601e37a978cbae3d77a99d..98f468052242164e791dce13e802d21b84aabb17 100644 (file)
@@ -11,7 +11,7 @@ void test__f_type_array_array_lengths_increase_by__works(void **state) {
   f_array_lengths_t data = f_array_lengths_t_initialize;
 
   {
-    const f_status_t status = f_type_array_lengths_resize(length, &data);
+    const f_status_t status = f_array_lengths_resize(length, &data);
 
     assert_int_equal(status, F_none);
     assert_int_equal(data.used, 0);
@@ -21,7 +21,7 @@ void test__f_type_array_array_lengths_increase_by__works(void **state) {
   {
     data.used = length;
 
-    const f_status_t status = f_type_array_lengths_increase_by(length, &data);
+    const f_status_t status = f_array_lengths_increase_by(length, &data);
 
     assert_int_equal(status, F_none);
     assert_int_equal(data.used, length);
@@ -37,7 +37,7 @@ void test__f_type_array_array_lengths_increase_by__fails_on_invalid_parameter(vo
   f_array_lengths_t data = f_array_lengths_t_initialize;
 
   {
-    const f_status_t status = f_type_array_lengths_increase_by(length, 0);
+    const f_status_t status = f_array_lengths_increase_by(length, 0);
 
     assert_int_equal(status, F_status_set_error(F_parameter));
     assert_int_equal(data.used, 0);
index dcdf79916f4126740ed6e80eb44ab190fd56a7fe..5ac149856c7626006f2b1020da1325e479190a05 100644 (file)
@@ -11,7 +11,7 @@ void test__f_type_array_array_lengths_resize__works(void **state) {
   f_array_lengths_t data = f_array_lengths_t_initialize;
 
   {
-    const f_status_t status = f_type_array_lengths_resize(length, &data);
+    const f_status_t status = f_array_lengths_resize(length, &data);
 
     assert_int_equal(status, F_none);
     assert_int_equal(data.used, 0);
@@ -27,7 +27,7 @@ void test__f_type_array_array_lengths_resize__fails_on_invalid_parameter(void **
   f_array_lengths_t data = f_array_lengths_t_initialize;
 
   {
-    const f_status_t status = f_type_array_lengths_resize(length, 0);
+    const f_status_t status = f_array_lengths_resize(length, 0);
 
     assert_int_equal(status, F_status_set_error(F_parameter));
     assert_int_equal(data.used, 0);
index e806c1ccdeb1a9f414ed10e80160109b83b2eae3..1de770f9e746ca92b9e4937a6c072b1cb4ef23ce 100644 (file)
@@ -11,7 +11,7 @@ void test__f_type_array_array_lengthss_adjust__works(void **state) {
   f_array_lengthss_t data = f_array_lengthss_t_initialize;
 
   {
-    const f_status_t status = f_type_array_lengthss_adjust(length, &data);
+    const f_status_t status = f_array_lengthss_adjust(length, &data);
 
     assert_int_equal(status, F_none);
     assert_int_equal(data.used, 0);
@@ -27,7 +27,7 @@ void test__f_type_array_array_lengthss_adjust__fails_on_invalid_parameter(void *
   f_array_lengthss_t data = f_array_lengthss_t_initialize;
 
   {
-    const f_status_t status = f_type_array_lengthss_adjust(length, 0);
+    const f_status_t status = f_array_lengthss_adjust(length, 0);
 
     assert_int_equal(status, F_status_set_error(F_parameter));
     assert_int_equal(data.used, 0);
index 012a173828823789a31eafeff55cd9e84dc3e03c..161c263177ccde7c14a151342f0ff56a650ad087 100644 (file)
@@ -13,7 +13,7 @@ void test__f_type_array_array_lengthss_append__works(void **state) {
   f_array_lengthss_t destination = f_array_lengths_t_initialize;
 
   {
-    const f_status_t status = f_type_array_lengthss_resize(length, &source);
+    const f_status_t status = f_array_lengthss_resize(length, &source);
 
     assert_int_equal(status, F_none);
     assert_int_equal(source.used, 0);
@@ -23,7 +23,7 @@ void test__f_type_array_array_lengthss_append__works(void **state) {
   {
     for (; source.used < length; ++source.used) {
 
-      const f_status_t status = f_type_array_lengths_resize(length_inner, &source.array[source.used]);
+      const f_status_t status = f_array_lengths_resize(length_inner, &source.array[source.used]);
 
       assert_int_equal(status, F_none);
 
@@ -34,7 +34,7 @@ void test__f_type_array_array_lengthss_append__works(void **state) {
   }
 
   {
-    const f_status_t status = f_type_array_lengthss_append(source, &destination);
+    const f_status_t status = f_array_lengthss_append(source, &destination);
 
     assert_int_equal(status, F_none);
     assert_int_equal(destination.used, source.used);
@@ -70,7 +70,7 @@ void test__f_type_array_array_lengthss_append__returns_data_not(void **state) {
   f_array_lengthss_t destination = f_array_lengths_t_initialize;
 
   {
-    const f_status_t status = f_type_array_lengthss_resize(length, &source);
+    const f_status_t status = f_array_lengthss_resize(length, &source);
 
     assert_int_equal(status, F_none);
     assert_int_equal(source.used, 0);
@@ -78,7 +78,7 @@ void test__f_type_array_array_lengthss_append__returns_data_not(void **state) {
   }
 
   {
-    const f_status_t status = f_type_array_lengthss_append(source, &destination);
+    const f_status_t status = f_array_lengthss_append(source, &destination);
 
     assert_int_equal(status, F_data_not);
     assert_int_equal(destination.used, 0);
@@ -95,7 +95,7 @@ void test__f_type_array_array_lengthss_append__fails_on_invalid_parameter(void *
   f_array_lengthss_t data = f_array_lengths_t_initialize;
 
   {
-    const f_status_t status = f_type_array_lengthss_append(data, 0);
+    const f_status_t status = f_array_lengthss_append(data, 0);
 
     assert_int_equal(status, F_status_set_error(F_parameter));
     assert_int_equal(data.used, 0);
index 6033e39e0ec705b15cdf2321854cb2332a30c359..e01550af480aa078cc9c9edfc2befddd1d081a8e 100644 (file)
@@ -11,7 +11,7 @@ void test__f_type_array_array_lengthss_decimate_by__works(void **state) {
   f_array_lengthss_t data = f_array_lengths_t_initialize;
 
   {
-    const f_status_t status = f_type_array_lengthss_resize(length, &data);
+    const f_status_t status = f_array_lengthss_resize(length, &data);
 
     assert_int_equal(status, F_none);
     assert_int_equal(data.used, 0);
@@ -19,7 +19,7 @@ void test__f_type_array_array_lengthss_decimate_by__works(void **state) {
   }
 
   {
-    const f_status_t status = f_type_array_lengthss_decimate_by(length, &data);
+    const f_status_t status = f_array_lengthss_decimate_by(length, &data);
 
     assert_int_equal(status, F_none);
     assert_int_equal(data.used, 0);
@@ -35,7 +35,7 @@ void test__f_type_array_array_lengthss_decimate_by__fails_on_invalid_parameter(v
   f_array_lengthss_t data = f_array_lengths_t_initialize;
 
   {
-    const f_status_t status = f_type_array_lengthss_decimate_by(length, 0);
+    const f_status_t status = f_array_lengthss_decimate_by(length, 0);
 
     assert_int_equal(status, F_status_set_error(F_parameter));
     assert_int_equal(data.used, 0);
index 5ecacda14585987efcffd4940a6593796b83be01..2c83fba6995ee22fa5a91b9a81c10cfe62e9ee3a 100644 (file)
@@ -11,7 +11,7 @@ void test__f_type_array_array_lengthss_decrease_by__works(void **state) {
   f_array_lengthss_t data = f_array_lengths_t_initialize;
 
   {
-    const f_status_t status = f_type_array_lengthss_resize(length, &data);
+    const f_status_t status = f_array_lengthss_resize(length, &data);
 
     assert_int_equal(status, F_none);
     assert_int_equal(data.used, 0);
@@ -19,7 +19,7 @@ void test__f_type_array_array_lengthss_decrease_by__works(void **state) {
   }
 
   {
-    const f_status_t status = f_type_array_lengthss_decrease_by(length, &data);
+    const f_status_t status = f_array_lengthss_decrease_by(length, &data);
 
     assert_int_equal(status, F_none);
     assert_int_equal(data.used, 0);
@@ -35,7 +35,7 @@ void test__f_type_array_array_lengthss_decrease_by__fails_on_invalid_parameter(v
   f_array_lengthss_t data = f_array_lengths_t_initialize;
 
   {
-    const f_status_t status = f_type_array_lengthss_decrease_by(length, 0);
+    const f_status_t status = f_array_lengthss_decrease_by(length, 0);
 
     assert_int_equal(status, F_status_set_error(F_parameter));
     assert_int_equal(data.used, 0);
index 57b944e990fd19990b0da019c1c7b83c22036894..089e8e7214889abccf3aefef040bc84174092378 100644 (file)
@@ -11,7 +11,7 @@ void test__f_type_array_array_lengthss_increase__works(void **state) {
   f_array_lengthss_t data = f_array_lengths_t_initialize;
 
   {
-    const f_status_t status = f_type_array_lengthss_resize(length, &data);
+    const f_status_t status = f_array_lengthss_resize(length, &data);
 
     assert_int_equal(status, F_none);
     assert_int_equal(data.used, 0);
@@ -21,7 +21,7 @@ void test__f_type_array_array_lengthss_increase__works(void **state) {
   {
     data.used = length;
 
-    const f_status_t status = f_type_array_lengthss_increase(length, &data);
+    const f_status_t status = f_array_lengthss_increase(length, &data);
 
     assert_int_equal(status, F_none);
     assert_int_equal(data.used, length);
@@ -37,7 +37,7 @@ void test__f_type_array_array_lengthss_increase__returns_data_not(void **state)
   f_array_lengthss_t data = f_array_lengths_t_initialize;
 
   {
-    const f_status_t status = f_type_array_lengthss_resize(length, &data);
+    const f_status_t status = f_array_lengthss_resize(length, &data);
 
     assert_int_equal(status, F_none);
     assert_int_equal(data.used, 0);
@@ -45,7 +45,7 @@ void test__f_type_array_array_lengthss_increase__returns_data_not(void **state)
   }
 
   {
-    const f_status_t status = f_type_array_lengthss_increase(length, &data);
+    const f_status_t status = f_array_lengthss_increase(length, &data);
 
     assert_int_equal(status, F_data_not);
     assert_int_equal(data.used, 0);
@@ -61,7 +61,7 @@ void test__f_type_array_array_lengthss_increase__fails_on_invalid_parameter(void
   f_array_lengthss_t data = f_array_lengths_t_initialize;
 
   {
-    const f_status_t status = f_type_array_lengthss_increase(length, 0);
+    const f_status_t status = f_array_lengthss_increase(length, 0);
 
     assert_int_equal(status, F_status_set_error(F_parameter));
     assert_int_equal(data.used, 0);
index 45d1c8a5b299043a7b478c8dc96582c39c3b71f4..8fa1835027c04bf4f353c2102f260ef1590b7303 100644 (file)
@@ -11,7 +11,7 @@ void test__f_type_array_array_lengthss_increase_by__works(void **state) {
   f_array_lengthss_t data = f_array_lengths_t_initialize;
 
   {
-    const f_status_t status = f_type_array_lengthss_resize(length, &data);
+    const f_status_t status = f_array_lengthss_resize(length, &data);
 
     assert_int_equal(status, F_none);
     assert_int_equal(data.used, 0);
@@ -21,7 +21,7 @@ void test__f_type_array_array_lengthss_increase_by__works(void **state) {
   {
     data.used = length;
 
-    const f_status_t status = f_type_array_lengthss_increase_by(length, &data);
+    const f_status_t status = f_array_lengthss_increase_by(length, &data);
 
     assert_int_equal(status, F_none);
     assert_int_equal(data.used, length);
@@ -37,7 +37,7 @@ void test__f_type_array_array_lengthss_increase_by__fails_on_invalid_parameter(v
   f_array_lengthss_t data = f_array_lengths_t_initialize;
 
   {
-    const f_status_t status = f_type_array_lengthss_increase_by(length, 0);
+    const f_status_t status = f_array_lengthss_increase_by(length, 0);
 
     assert_int_equal(status, F_status_set_error(F_parameter));
     assert_int_equal(data.used, 0);
index 7346c5ebf77efb47e7d1393c09d41556c0cc965f..2435445bc9bc432bc5295ff2034f95cd5741446e 100644 (file)
@@ -11,7 +11,7 @@ void test__f_type_array_array_lengthss_resize__works(void **state) {
   f_array_lengthss_t data = f_array_lengthss_t_initialize;
 
   {
-    const f_status_t status = f_type_array_lengthss_resize(length, &data);
+    const f_status_t status = f_array_lengthss_resize(length, &data);
 
     assert_int_equal(status, F_none);
     assert_int_equal(data.used, 0);
@@ -27,7 +27,7 @@ void test__f_type_array_array_lengthss_resize__fails_on_invalid_parameter(void *
   f_array_lengthss_t data = f_array_lengthss_t_initialize;
 
   {
-    const f_status_t status = f_type_array_lengthss_resize(length, 0);
+    const f_status_t status = f_array_lengthss_resize(length, 0);
 
     assert_int_equal(status, F_status_set_error(F_parameter));
     assert_int_equal(data.used, 0);
index 9202e4261067de8ce8ed977b896200479b2419dd..a221c69adbaaa94387649742b8948ce9314001c5 100644 (file)
@@ -11,7 +11,7 @@ void test__f_type_array_cells_adjust__works(void **state) {
   f_cells_t data = f_cells_t_initialize;
 
   {
-    const f_status_t status = f_type_cells_adjust(length, &data);
+    const f_status_t status = f_cells_adjust(length, &data);
 
     assert_int_equal(status, F_none);
     assert_int_equal(data.used, 0);
@@ -27,7 +27,7 @@ void test__f_type_array_cells_adjust__fails_on_invalid_parameter(void **state) {
   f_cells_t data = f_cells_t_initialize;
 
   {
-    const f_status_t status = f_type_cells_adjust(length, 0);
+    const f_status_t status = f_cells_adjust(length, 0);
 
     assert_int_equal(status, F_status_set_error(F_parameter));
     assert_int_equal(data.used, 0);
index d8155b9e150f839e52959678bd70dc4373f045a2..76299e8f204ca5425e38bec8cea1df5953de9f2b 100644 (file)
@@ -15,7 +15,7 @@ void test__f_type_array_cells_append__works(void **state) {
   const f_cell_t cell_1 = { row: 3, column: 4 };
 
   {
-    const f_status_t status = f_type_cells_resize(length, &source);
+    const f_status_t status = f_cells_resize(length, &source);
 
     assert_int_equal(status, F_none);
     assert_int_equal(source.used, 0);
@@ -26,7 +26,7 @@ void test__f_type_array_cells_append__works(void **state) {
   memcpy(&source.array[source.used++], (void *) &cell_1, sizeof(f_cell_t));
 
   {
-    const f_status_t status = f_type_cells_append(source, &destination);
+    const f_status_t status = f_cells_append(source, &destination);
 
     assert_int_equal(status, F_none);
     assert_int_equal(destination.used, source.used);
@@ -50,7 +50,7 @@ void test__f_type_array_cells_append__returns_data_not(void **state) {
   f_cells_t destination = f_cells_t_initialize;
 
   {
-    const f_status_t status = f_type_cells_resize(length, &source);
+    const f_status_t status = f_cells_resize(length, &source);
 
     assert_int_equal(status, F_none);
     assert_int_equal(source.used, 0);
@@ -58,7 +58,7 @@ void test__f_type_array_cells_append__returns_data_not(void **state) {
   }
 
   {
-    const f_status_t status = f_type_cells_append(source, &destination);
+    const f_status_t status = f_cells_append(source, &destination);
 
     assert_int_equal(status, F_data_not);
     assert_int_equal(destination.used, 0);
@@ -75,7 +75,7 @@ void test__f_type_array_cells_append__fails_on_invalid_parameter(void **state) {
   f_cells_t data = f_cells_t_initialize;
 
   {
-    const f_status_t status = f_type_cells_append(data, 0);
+    const f_status_t status = f_cells_append(data, 0);
 
     assert_int_equal(status, F_status_set_error(F_parameter));
     assert_int_equal(data.used, 0);
index 5a19814b7bff0059ae0472b419ac8fbe6946f1c9..d415836d3f8e00fd706724b3c96adbbacdc6ed7e 100644 (file)
@@ -11,7 +11,7 @@ void test__f_type_array_cells_decimate_by__works(void **state) {
   f_cells_t data = f_cells_t_initialize;
 
   {
-    const f_status_t status = f_type_cells_resize(length, &data);
+    const f_status_t status = f_cells_resize(length, &data);
 
     assert_int_equal(status, F_none);
     assert_int_equal(data.used, 0);
@@ -19,7 +19,7 @@ void test__f_type_array_cells_decimate_by__works(void **state) {
   }
 
   {
-    const f_status_t status = f_type_cells_decimate_by(length, &data);
+    const f_status_t status = f_cells_decimate_by(length, &data);
 
     assert_int_equal(status, F_none);
     assert_int_equal(data.used, 0);
@@ -35,7 +35,7 @@ void test__f_type_array_cells_decimate_by__fails_on_invalid_parameter(void **sta
   f_cells_t data = f_cells_t_initialize;
 
   {
-    const f_status_t status = f_type_cells_decimate_by(length, 0);
+    const f_status_t status = f_cells_decimate_by(length, 0);
 
     assert_int_equal(status, F_status_set_error(F_parameter));
     assert_int_equal(data.used, 0);
index 411799221f0dc6c91cb54966e532fb93ba9cba58..93dee61b9402f99f837805d5ee45c3e4d78c8195 100644 (file)
@@ -11,7 +11,7 @@ void test__f_type_array_cells_decrease_by__works(void **state) {
   f_cells_t data = f_cells_t_initialize;
 
   {
-    const f_status_t status = f_type_cells_resize(length, &data);
+    const f_status_t status = f_cells_resize(length, &data);
 
     assert_int_equal(status, F_none);
     assert_int_equal(data.used, 0);
@@ -19,7 +19,7 @@ void test__f_type_array_cells_decrease_by__works(void **state) {
   }
 
   {
-    const f_status_t status = f_type_cells_decrease_by(length, &data);
+    const f_status_t status = f_cells_decrease_by(length, &data);
 
     assert_int_equal(status, F_none);
     assert_int_equal(data.used, 0);
@@ -35,7 +35,7 @@ void test__f_type_array_cells_decrease_by__fails_on_invalid_parameter(void **sta
   f_cells_t data = f_cells_t_initialize;
 
   {
-    const f_status_t status = f_type_cells_decrease_by(length, 0);
+    const f_status_t status = f_cells_decrease_by(length, 0);
 
     assert_int_equal(status, F_status_set_error(F_parameter));
     assert_int_equal(data.used, 0);
index 806dde0f2ed4a982089d11ee53ba122c2575050f..926ad2ca1d6b684fe57c6742b26d42c483101171 100644 (file)
@@ -11,7 +11,7 @@ void test__f_type_array_cells_increase__works(void **state) {
   f_cells_t data = f_cells_t_initialize;
 
   {
-    const f_status_t status = f_type_cells_resize(length, &data);
+    const f_status_t status = f_cells_resize(length, &data);
 
     assert_int_equal(status, F_none);
     assert_int_equal(data.used, 0);
@@ -21,7 +21,7 @@ void test__f_type_array_cells_increase__works(void **state) {
   {
     data.used = length;
 
-    const f_status_t status = f_type_cells_increase(length, &data);
+    const f_status_t status = f_cells_increase(length, &data);
 
     assert_int_equal(status, F_none);
     assert_int_equal(data.used, length);
@@ -37,7 +37,7 @@ void test__f_type_array_cells_increase__returns_data_not(void **state) {
   f_cells_t data = f_cells_t_initialize;
 
   {
-    const f_status_t status = f_type_cells_resize(length, &data);
+    const f_status_t status = f_cells_resize(length, &data);
 
     assert_int_equal(status, F_none);
     assert_int_equal(data.used, 0);
@@ -45,7 +45,7 @@ void test__f_type_array_cells_increase__returns_data_not(void **state) {
   }
 
   {
-    const f_status_t status = f_type_cells_increase(length, &data);
+    const f_status_t status = f_cells_increase(length, &data);
 
     assert_int_equal(status, F_data_not);
     assert_int_equal(data.used, 0);
@@ -61,7 +61,7 @@ void test__f_type_array_cells_increase__fails_on_invalid_parameter(void **state)
   f_cells_t data = f_cells_t_initialize;
 
   {
-    const f_status_t status = f_type_cells_increase(length, 0);
+    const f_status_t status = f_cells_increase(length, 0);
 
     assert_int_equal(status, F_status_set_error(F_parameter));
     assert_int_equal(data.used, 0);
index a5abfabf0e8e693c087f048271db8ab3d15af571..3a53c5394a82b2ec0438f15809d585b42bb110d6 100644 (file)
@@ -11,7 +11,7 @@ void test__f_type_array_cells_increase_by__works(void **state) {
   f_cells_t data = f_cells_t_initialize;
 
   {
-    const f_status_t status = f_type_cells_resize(length, &data);
+    const f_status_t status = f_cells_resize(length, &data);
 
     assert_int_equal(status, F_none);
     assert_int_equal(data.used, 0);
@@ -21,7 +21,7 @@ void test__f_type_array_cells_increase_by__works(void **state) {
   {
     data.used = length;
 
-    const f_status_t status = f_type_cells_increase_by(length, &data);
+    const f_status_t status = f_cells_increase_by(length, &data);
 
     assert_int_equal(status, F_none);
     assert_int_equal(data.used, length);
@@ -37,7 +37,7 @@ void test__f_type_array_cells_increase_by__fails_on_invalid_parameter(void **sta
   f_cells_t data = f_cells_t_initialize;
 
   {
-    const f_status_t status = f_type_cells_increase_by(length, 0);
+    const f_status_t status = f_cells_increase_by(length, 0);
 
     assert_int_equal(status, F_status_set_error(F_parameter));
     assert_int_equal(data.used, 0);
index dccdd82909c63fa07afaf74eca87fc9f2038e648..af1fec9f79ef7690817b393f0bca01efbcbdcfc3 100644 (file)
@@ -11,7 +11,7 @@ void test__f_type_array_cells_resize__works(void **state) {
   f_cells_t data = f_cells_t_initialize;
 
   {
-    const f_status_t status = f_type_cells_resize(length, &data);
+    const f_status_t status = f_cells_resize(length, &data);
 
     assert_int_equal(status, F_none);
     assert_int_equal(data.used, 0);
@@ -27,7 +27,7 @@ void test__f_type_array_cells_resize__fails_on_invalid_parameter(void **state) {
   f_cells_t data = f_cells_t_initialize;
 
   {
-    const f_status_t status = f_type_cells_resize(length, 0);
+    const f_status_t status = f_cells_resize(length, 0);
 
     assert_int_equal(status, F_status_set_error(F_parameter));
     assert_int_equal(data.used, 0);
index 840dbd75676fdb100e5420aaa79665e21cfc8337..aadc7cd9e78dd9725f66f4fdf893683b68a6e53f 100644 (file)
@@ -11,7 +11,7 @@ void test__f_type_array_cellss_adjust__works(void **state) {
   f_cellss_t data = f_cellss_t_initialize;
 
   {
-    const f_status_t status = f_type_cellss_adjust(length, &data);
+    const f_status_t status = f_cellss_adjust(length, &data);
 
     assert_int_equal(status, F_none);
     assert_int_equal(data.used, 0);
@@ -27,7 +27,7 @@ void test__f_type_array_cellss_adjust__fails_on_invalid_parameter(void **state)
   f_cellss_t data = f_cellss_t_initialize;
 
   {
-    const f_status_t status = f_type_cellss_adjust(length, 0);
+    const f_status_t status = f_cellss_adjust(length, 0);
 
     assert_int_equal(status, F_status_set_error(F_parameter));
     assert_int_equal(data.used, 0);
index 97aacc3406474ce84075fcb29bed20b17be8dc37..c4ea9c04062046e5e1650aecf6e387130192505c 100644 (file)
@@ -16,7 +16,7 @@ void test__f_type_array_cellss_append__works(void **state) {
   const f_cell_t cell_1 = { row: 3, column: 4 };
 
   {
-    const f_status_t status = f_type_cellss_resize(length, &source);
+    const f_status_t status = f_cellss_resize(length, &source);
 
     assert_int_equal(status, F_none);
     assert_int_equal(source.used, 0);
@@ -26,7 +26,7 @@ void test__f_type_array_cellss_append__works(void **state) {
   {
     for (; source.used < length; ++source.used) {
 
-      const f_status_t status = f_type_cells_resize(length_inner, &source.array[source.used]);
+      const f_status_t status = f_cells_resize(length_inner, &source.array[source.used]);
 
       assert_int_equal(status, F_none);
 
@@ -36,7 +36,7 @@ void test__f_type_array_cellss_append__works(void **state) {
   }
 
   {
-    const f_status_t status = f_type_cellss_append(source, &destination);
+    const f_status_t status = f_cellss_append(source, &destination);
 
     assert_int_equal(status, F_none);
     assert_int_equal(destination.used, source.used);
@@ -74,7 +74,7 @@ void test__f_type_array_cellss_append__returns_data_not(void **state) {
   f_cellss_t destination = f_cells_t_initialize;
 
   {
-    const f_status_t status = f_type_cellss_resize(length, &source);
+    const f_status_t status = f_cellss_resize(length, &source);
 
     assert_int_equal(status, F_none);
     assert_int_equal(source.used, 0);
@@ -82,7 +82,7 @@ void test__f_type_array_cellss_append__returns_data_not(void **state) {
   }
 
   {
-    const f_status_t status = f_type_cellss_append(source, &destination);
+    const f_status_t status = f_cellss_append(source, &destination);
 
     assert_int_equal(status, F_data_not);
     assert_int_equal(destination.used, 0);
@@ -99,7 +99,7 @@ void test__f_type_array_cellss_append__fails_on_invalid_parameter(void **state)
   f_cellss_t data = f_cells_t_initialize;
 
   {
-    const f_status_t status = f_type_cellss_append(data, 0);
+    const f_status_t status = f_cellss_append(data, 0);
 
     assert_int_equal(status, F_status_set_error(F_parameter));
     assert_int_equal(data.used, 0);
index ded28e43a5b304700c1f15ef891fdbd37b506bf7..4c0dcad5608aa9dd4cfceacfaeaa539b00a9bc6f 100644 (file)
@@ -11,7 +11,7 @@ void test__f_type_array_cellss_decimate_by__works(void **state) {
   f_cellss_t data = f_cells_t_initialize;
 
   {
-    const f_status_t status = f_type_cellss_resize(length, &data);
+    const f_status_t status = f_cellss_resize(length, &data);
 
     assert_int_equal(status, F_none);
     assert_int_equal(data.used, 0);
@@ -19,7 +19,7 @@ void test__f_type_array_cellss_decimate_by__works(void **state) {
   }
 
   {
-    const f_status_t status = f_type_cellss_decimate_by(length, &data);
+    const f_status_t status = f_cellss_decimate_by(length, &data);
 
     assert_int_equal(status, F_none);
     assert_int_equal(data.used, 0);
@@ -35,7 +35,7 @@ void test__f_type_array_cellss_decimate_by__fails_on_invalid_parameter(void **st
   f_cellss_t data = f_cells_t_initialize;
 
   {
-    const f_status_t status = f_type_cellss_decimate_by(length, 0);
+    const f_status_t status = f_cellss_decimate_by(length, 0);
 
     assert_int_equal(status, F_status_set_error(F_parameter));
     assert_int_equal(data.used, 0);
index 3d2c626ffbc8d5599ee073ee26eb95f2cad7b2cb..a8e8e1bf3ae3a3f01485aa365fb6c791565cf94d 100644 (file)
@@ -11,7 +11,7 @@ void test__f_type_array_cellss_decrease_by__works(void **state) {
   f_cellss_t data = f_cells_t_initialize;
 
   {
-    const f_status_t status = f_type_cellss_resize(length, &data);
+    const f_status_t status = f_cellss_resize(length, &data);
 
     assert_int_equal(status, F_none);
     assert_int_equal(data.used, 0);
@@ -19,7 +19,7 @@ void test__f_type_array_cellss_decrease_by__works(void **state) {
   }
 
   {
-    const f_status_t status = f_type_cellss_decrease_by(length, &data);
+    const f_status_t status = f_cellss_decrease_by(length, &data);
 
     assert_int_equal(status, F_none);
     assert_int_equal(data.used, 0);
@@ -35,7 +35,7 @@ void test__f_type_array_cellss_decrease_by__fails_on_invalid_parameter(void **st
   f_cellss_t data = f_cells_t_initialize;
 
   {
-    const f_status_t status = f_type_cellss_decrease_by(length, 0);
+    const f_status_t status = f_cellss_decrease_by(length, 0);
 
     assert_int_equal(status, F_status_set_error(F_parameter));
     assert_int_equal(data.used, 0);
index 80185199c9062a33d7ca2528fe5f0a458a1215e3..c34df58a80d77fecf07828a8a0a5522ed73ef36b 100644 (file)
@@ -11,7 +11,7 @@ void test__f_type_array_cellss_increase__works(void **state) {
   f_cellss_t data = f_cells_t_initialize;
 
   {
-    const f_status_t status = f_type_cellss_resize(length, &data);
+    const f_status_t status = f_cellss_resize(length, &data);
 
     assert_int_equal(status, F_none);
     assert_int_equal(data.used, 0);
@@ -21,7 +21,7 @@ void test__f_type_array_cellss_increase__works(void **state) {
   {
     data.used = length;
 
-    const f_status_t status = f_type_cellss_increase(length, &data);
+    const f_status_t status = f_cellss_increase(length, &data);
 
     assert_int_equal(status, F_none);
     assert_int_equal(data.used, length);
@@ -37,7 +37,7 @@ void test__f_type_array_cellss_increase__returns_data_not(void **state) {
   f_cellss_t data = f_cells_t_initialize;
 
   {
-    const f_status_t status = f_type_cellss_resize(length, &data);
+    const f_status_t status = f_cellss_resize(length, &data);
 
     assert_int_equal(status, F_none);
     assert_int_equal(data.used, 0);
@@ -45,7 +45,7 @@ void test__f_type_array_cellss_increase__returns_data_not(void **state) {
   }
 
   {
-    const f_status_t status = f_type_cellss_increase(length, &data);
+    const f_status_t status = f_cellss_increase(length, &data);
 
     assert_int_equal(status, F_data_not);
     assert_int_equal(data.used, 0);
@@ -61,7 +61,7 @@ void test__f_type_array_cellss_increase__fails_on_invalid_parameter(void **state
   f_cellss_t data = f_cells_t_initialize;
 
   {
-    const f_status_t status = f_type_cellss_increase(length, 0);
+    const f_status_t status = f_cellss_increase(length, 0);
 
     assert_int_equal(status, F_status_set_error(F_parameter));
     assert_int_equal(data.used, 0);
index 897f0c667688682f33bf04900fcb2571a34c9aff..b0828fffce6738806b434fb2632e9848be1cd6d5 100644 (file)
@@ -11,7 +11,7 @@ void test__f_type_array_cellss_increase_by__works(void **state) {
   f_cellss_t data = f_cells_t_initialize;
 
   {
-    const f_status_t status = f_type_cellss_resize(length, &data);
+    const f_status_t status = f_cellss_resize(length, &data);
 
     assert_int_equal(status, F_none);
     assert_int_equal(data.used, 0);
@@ -21,7 +21,7 @@ void test__f_type_array_cellss_increase_by__works(void **state) {
   {
     data.used = length;
 
-    const f_status_t status = f_type_cellss_increase_by(length, &data);
+    const f_status_t status = f_cellss_increase_by(length, &data);
 
     assert_int_equal(status, F_none);
     assert_int_equal(data.used, length);
@@ -37,7 +37,7 @@ void test__f_type_array_cellss_increase_by__fails_on_invalid_parameter(void **st
   f_cellss_t data = f_cells_t_initialize;
 
   {
-    const f_status_t status = f_type_cellss_increase_by(length, 0);
+    const f_status_t status = f_cellss_increase_by(length, 0);
 
     assert_int_equal(status, F_status_set_error(F_parameter));
     assert_int_equal(data.used, 0);
index 6aa0bf827b209e2bc141a84bfa5ec34c2ea533eb..fed4516eff7a714655a2f50cccdacda9aadb1a0f 100644 (file)
@@ -11,7 +11,7 @@ void test__f_type_array_cellss_resize__works(void **state) {
   f_cellss_t data = f_cellss_t_initialize;
 
   {
-    const f_status_t status = f_type_cellss_resize(length, &data);
+    const f_status_t status = f_cellss_resize(length, &data);
 
     assert_int_equal(status, F_none);
     assert_int_equal(data.used, 0);
@@ -27,7 +27,7 @@ void test__f_type_array_cellss_resize__fails_on_invalid_parameter(void **state)
   f_cellss_t data = f_cellss_t_initialize;
 
   {
-    const f_status_t status = f_type_cellss_resize(length, 0);
+    const f_status_t status = f_cellss_resize(length, 0);
 
     assert_int_equal(status, F_status_set_error(F_parameter));
     assert_int_equal(data.used, 0);
index ba3d8e036c04787d48f6809a980f3f6487c5663f..c382c7d312c88bc3d32b62a1bcc3f9547cb8ca19 100644 (file)
@@ -11,7 +11,7 @@ void test__f_type_array_fll_ids_adjust__works(void **state) {
   f_fll_ids_t data = f_fll_ids_t_initialize;
 
   {
-    const f_status_t status = f_type_fll_ids_adjust(length, &data);
+    const f_status_t status = f_fll_ids_adjust(length, &data);
 
     assert_int_equal(status, F_none);
     assert_int_equal(data.used, 0);
@@ -27,7 +27,7 @@ void test__f_type_array_fll_ids_adjust__fails_on_invalid_parameter(void **state)
   f_fll_ids_t data = f_fll_ids_t_initialize;
 
   {
-    const f_status_t status = f_type_fll_ids_adjust(length, 0);
+    const f_status_t status = f_fll_ids_adjust(length, 0);
 
     assert_int_equal(status, F_status_set_error(F_parameter));
     assert_int_equal(data.used, 0);
index 90b06bc2be78796eff5a5c1e1e73d28642b24c7c..7c72df790cc50f458cf2d6551ff7b807f7b2de91 100644 (file)
@@ -15,7 +15,7 @@ void test__f_type_array_fll_ids_append__works(void **state) {
   const f_fll_id_t fll_id_1 = { name: "other", type: 2, used: 5 };
 
   {
-    const f_status_t status = f_type_fll_ids_resize(length, &source);
+    const f_status_t status = f_fll_ids_resize(length, &source);
 
     assert_int_equal(status, F_none);
     assert_int_equal(source.used, 0);
@@ -26,7 +26,7 @@ void test__f_type_array_fll_ids_append__works(void **state) {
   memcpy(&source.array[source.used++], (void *) &fll_id_1, sizeof(f_fll_id_t));
 
   {
-    const f_status_t status = f_type_fll_ids_append(source, &destination);
+    const f_status_t status = f_fll_ids_append(source, &destination);
 
     assert_int_equal(status, F_none);
     assert_int_equal(destination.used, source.used);
@@ -52,7 +52,7 @@ void test__f_type_array_fll_ids_append__returns_data_not(void **state) {
   f_fll_ids_t destination = f_fll_ids_t_initialize;
 
   {
-    const f_status_t status = f_type_fll_ids_resize(length, &source);
+    const f_status_t status = f_fll_ids_resize(length, &source);
 
     assert_int_equal(status, F_none);
     assert_int_equal(source.used, 0);
@@ -60,7 +60,7 @@ void test__f_type_array_fll_ids_append__returns_data_not(void **state) {
   }
 
   {
-    const f_status_t status = f_type_fll_ids_append(source, &destination);
+    const f_status_t status = f_fll_ids_append(source, &destination);
 
     assert_int_equal(status, F_data_not);
     assert_int_equal(destination.used, 0);
@@ -77,7 +77,7 @@ void test__f_type_array_fll_ids_append__fails_on_invalid_parameter(void **state)
   f_fll_ids_t data = f_fll_ids_t_initialize;
 
   {
-    const f_status_t status = f_type_fll_ids_append(data, 0);
+    const f_status_t status = f_fll_ids_append(data, 0);
 
     assert_int_equal(status, F_status_set_error(F_parameter));
     assert_int_equal(data.used, 0);
index 3efedb4fa22a536909d6d731b40a23a18ca1c18b..ca014f360586062aef7c803cea1658c0f08dd25d 100644 (file)
@@ -11,7 +11,7 @@ void test__f_type_array_fll_ids_decimate_by__works(void **state) {
   f_fll_ids_t data = f_fll_ids_t_initialize;
 
   {
-    const f_status_t status = f_type_fll_ids_resize(length, &data);
+    const f_status_t status = f_fll_ids_resize(length, &data);
 
     assert_int_equal(status, F_none);
     assert_int_equal(data.used, 0);
@@ -19,7 +19,7 @@ void test__f_type_array_fll_ids_decimate_by__works(void **state) {
   }
 
   {
-    const f_status_t status = f_type_fll_ids_decimate_by(length, &data);
+    const f_status_t status = f_fll_ids_decimate_by(length, &data);
 
     assert_int_equal(status, F_none);
     assert_int_equal(data.used, 0);
@@ -35,7 +35,7 @@ void test__f_type_array_fll_ids_decimate_by__fails_on_invalid_parameter(void **s
   f_fll_ids_t data = f_fll_ids_t_initialize;
 
   {
-    const f_status_t status = f_type_fll_ids_decimate_by(length, 0);
+    const f_status_t status = f_fll_ids_decimate_by(length, 0);
 
     assert_int_equal(status, F_status_set_error(F_parameter));
     assert_int_equal(data.used, 0);
index bf484d10491b35a87191c28016a46ff1cfc11e89..a2ef8a5cf796b06a154d8c9560c2d5fcc3c6fe60 100644 (file)
@@ -11,7 +11,7 @@ void test__f_type_array_fll_ids_decrease_by__works(void **state) {
   f_fll_ids_t data = f_fll_ids_t_initialize;
 
   {
-    const f_status_t status = f_type_fll_ids_resize(length, &data);
+    const f_status_t status = f_fll_ids_resize(length, &data);
 
     assert_int_equal(status, F_none);
     assert_int_equal(data.used, 0);
@@ -19,7 +19,7 @@ void test__f_type_array_fll_ids_decrease_by__works(void **state) {
   }
 
   {
-    const f_status_t status = f_type_fll_ids_decrease_by(length, &data);
+    const f_status_t status = f_fll_ids_decrease_by(length, &data);
 
     assert_int_equal(status, F_none);
     assert_int_equal(data.used, 0);
@@ -35,7 +35,7 @@ void test__f_type_array_fll_ids_decrease_by__fails_on_invalid_parameter(void **s
   f_fll_ids_t data = f_fll_ids_t_initialize;
 
   {
-    const f_status_t status = f_type_fll_ids_decrease_by(length, 0);
+    const f_status_t status = f_fll_ids_decrease_by(length, 0);
 
     assert_int_equal(status, F_status_set_error(F_parameter));
     assert_int_equal(data.used, 0);
index 0058686f9d1670485000276094c053ff154a3435..6ce6d106e9b3121e31aba444abc85c6e7972df71 100644 (file)
@@ -11,7 +11,7 @@ void test__f_type_array_fll_ids_increase__works(void **state) {
   f_fll_ids_t data = f_fll_ids_t_initialize;
 
   {
-    const f_status_t status = f_type_fll_ids_resize(length, &data);
+    const f_status_t status = f_fll_ids_resize(length, &data);
 
     assert_int_equal(status, F_none);
     assert_int_equal(data.used, 0);
@@ -21,7 +21,7 @@ void test__f_type_array_fll_ids_increase__works(void **state) {
   {
     data.used = length;
 
-    const f_status_t status = f_type_fll_ids_increase(length, &data);
+    const f_status_t status = f_fll_ids_increase(length, &data);
 
     assert_int_equal(status, F_none);
     assert_int_equal(data.used, length);
@@ -37,7 +37,7 @@ void test__f_type_array_fll_ids_increase__returns_data_not(void **state) {
   f_fll_ids_t data = f_fll_ids_t_initialize;
 
   {
-    const f_status_t status = f_type_fll_ids_resize(length, &data);
+    const f_status_t status = f_fll_ids_resize(length, &data);
 
     assert_int_equal(status, F_none);
     assert_int_equal(data.used, 0);
@@ -45,7 +45,7 @@ void test__f_type_array_fll_ids_increase__returns_data_not(void **state) {
   }
 
   {
-    const f_status_t status = f_type_fll_ids_increase(length, &data);
+    const f_status_t status = f_fll_ids_increase(length, &data);
 
     assert_int_equal(status, F_data_not);
     assert_int_equal(data.used, 0);
@@ -61,7 +61,7 @@ void test__f_type_array_fll_ids_increase__fails_on_invalid_parameter(void **stat
   f_fll_ids_t data = f_fll_ids_t_initialize;
 
   {
-    const f_status_t status = f_type_fll_ids_increase(length, 0);
+    const f_status_t status = f_fll_ids_increase(length, 0);
 
     assert_int_equal(status, F_status_set_error(F_parameter));
     assert_int_equal(data.used, 0);
index e78e351cebdc4b8115f151e4c0e1f5ae7dfa7ad3..96a11ac862db9c1b4003193ec1bc3fbd66344ec1 100644 (file)
@@ -11,7 +11,7 @@ void test__f_type_array_fll_ids_increase_by__works(void **state) {
   f_fll_ids_t data = f_fll_ids_t_initialize;
 
   {
-    const f_status_t status = f_type_fll_ids_resize(length, &data);
+    const f_status_t status = f_fll_ids_resize(length, &data);
 
     assert_int_equal(status, F_none);
     assert_int_equal(data.used, 0);
@@ -21,7 +21,7 @@ void test__f_type_array_fll_ids_increase_by__works(void **state) {
   {
     data.used = length;
 
-    const f_status_t status = f_type_fll_ids_increase_by(length, &data);
+    const f_status_t status = f_fll_ids_increase_by(length, &data);
 
     assert_int_equal(status, F_none);
     assert_int_equal(data.used, length);
@@ -37,7 +37,7 @@ void test__f_type_array_fll_ids_increase_by__fails_on_invalid_parameter(void **s
   f_fll_ids_t data = f_fll_ids_t_initialize;
 
   {
-    const f_status_t status = f_type_fll_ids_increase_by(length, 0);
+    const f_status_t status = f_fll_ids_increase_by(length, 0);
 
     assert_int_equal(status, F_status_set_error(F_parameter));
     assert_int_equal(data.used, 0);
index 73e15befd7957a71b0a44a6544210ccdb1415059..2e759943ac3b0b0e1985ce4b25724be0525c58a7 100644 (file)
@@ -11,7 +11,7 @@ void test__f_type_array_fll_ids_resize__works(void **state) {
   f_fll_ids_t data = f_fll_ids_t_initialize;
 
   {
-    const f_status_t status = f_type_fll_ids_resize(length, &data);
+    const f_status_t status = f_fll_ids_resize(length, &data);
 
     assert_int_equal(status, F_none);
     assert_int_equal(data.used, 0);
@@ -27,7 +27,7 @@ void test__f_type_array_fll_ids_resize__fails_on_invalid_parameter(void **state)
   f_fll_ids_t data = f_fll_ids_t_initialize;
 
   {
-    const f_status_t status = f_type_fll_ids_resize(length, 0);
+    const f_status_t status = f_fll_ids_resize(length, 0);
 
     assert_int_equal(status, F_status_set_error(F_parameter));
     assert_int_equal(data.used, 0);
index 4cffd3bf86a3ae2255eb9e4526a0b5069e082e0e..188e147a748629242c5bd4f6d13ef1d0829708cb 100644 (file)
@@ -11,7 +11,7 @@ void test__f_type_array_fll_idss_adjust__works(void **state) {
   f_fll_idss_t data = f_fll_idss_t_initialize;
 
   {
-    const f_status_t status = f_type_fll_idss_adjust(length, &data);
+    const f_status_t status = f_fll_idss_adjust(length, &data);
 
     assert_int_equal(status, F_none);
     assert_int_equal(data.used, 0);
@@ -27,7 +27,7 @@ void test__f_type_array_fll_idss_adjust__fails_on_invalid_parameter(void **state
   f_fll_idss_t data = f_fll_idss_t_initialize;
 
   {
-    const f_status_t status = f_type_fll_idss_adjust(length, 0);
+    const f_status_t status = f_fll_idss_adjust(length, 0);
 
     assert_int_equal(status, F_status_set_error(F_parameter));
     assert_int_equal(data.used, 0);
index a78e885685afb29f8422add9ceab5b914a2df68c..d0d5bc1b3a58ca419af1587d2a97e4bb7ff174b0 100644 (file)
@@ -16,7 +16,7 @@ void test__f_type_array_fll_idss_append__works(void **state) {
   const f_fll_id_t fll_id_1 = { name: "other", type: 2, used: 5 };
 
   {
-    const f_status_t status = f_type_fll_idss_resize(length, &source);
+    const f_status_t status = f_fll_idss_resize(length, &source);
 
     assert_int_equal(status, F_none);
     assert_int_equal(source.used, 0);
@@ -26,7 +26,7 @@ void test__f_type_array_fll_idss_append__works(void **state) {
   {
     for (; source.used < length; ++source.used) {
 
-      const f_status_t status = f_type_fll_ids_resize(length_inner, &source.array[source.used]);
+      const f_status_t status = f_fll_ids_resize(length_inner, &source.array[source.used]);
 
       assert_int_equal(status, F_none);
 
@@ -36,7 +36,7 @@ void test__f_type_array_fll_idss_append__works(void **state) {
   }
 
   {
-    const f_status_t status = f_type_fll_idss_append(source, &destination);
+    const f_status_t status = f_fll_idss_append(source, &destination);
 
     assert_int_equal(status, F_none);
     assert_int_equal(destination.used, source.used);
@@ -76,7 +76,7 @@ void test__f_type_array_fll_idss_append__returns_data_not(void **state) {
   f_fll_idss_t destination = f_fll_ids_t_initialize;
 
   {
-    const f_status_t status = f_type_fll_idss_resize(length, &source);
+    const f_status_t status = f_fll_idss_resize(length, &source);
 
     assert_int_equal(status, F_none);
     assert_int_equal(source.used, 0);
@@ -84,7 +84,7 @@ void test__f_type_array_fll_idss_append__returns_data_not(void **state) {
   }
 
   {
-    const f_status_t status = f_type_fll_idss_append(source, &destination);
+    const f_status_t status = f_fll_idss_append(source, &destination);
 
     assert_int_equal(status, F_data_not);
     assert_int_equal(destination.used, 0);
@@ -101,7 +101,7 @@ void test__f_type_array_fll_idss_append__fails_on_invalid_parameter(void **state
   f_fll_idss_t data = f_fll_ids_t_initialize;
 
   {
-    const f_status_t status = f_type_fll_idss_append(data, 0);
+    const f_status_t status = f_fll_idss_append(data, 0);
 
     assert_int_equal(status, F_status_set_error(F_parameter));
     assert_int_equal(data.used, 0);
index 75ecc98b17c8f3628649c26f84b697f4a2c41961..52ea7121e61d591f078864cea3fb23566611cd9b 100644 (file)
@@ -11,7 +11,7 @@ void test__f_type_array_fll_idss_decimate_by__works(void **state) {
   f_fll_idss_t data = f_fll_ids_t_initialize;
 
   {
-    const f_status_t status = f_type_fll_idss_resize(length, &data);
+    const f_status_t status = f_fll_idss_resize(length, &data);
 
     assert_int_equal(status, F_none);
     assert_int_equal(data.used, 0);
@@ -19,7 +19,7 @@ void test__f_type_array_fll_idss_decimate_by__works(void **state) {
   }
 
   {
-    const f_status_t status = f_type_fll_idss_decimate_by(length, &data);
+    const f_status_t status = f_fll_idss_decimate_by(length, &data);
 
     assert_int_equal(status, F_none);
     assert_int_equal(data.used, 0);
@@ -35,7 +35,7 @@ void test__f_type_array_fll_idss_decimate_by__fails_on_invalid_parameter(void **
   f_fll_idss_t data = f_fll_ids_t_initialize;
 
   {
-    const f_status_t status = f_type_fll_idss_decimate_by(length, 0);
+    const f_status_t status = f_fll_idss_decimate_by(length, 0);
 
     assert_int_equal(status, F_status_set_error(F_parameter));
     assert_int_equal(data.used, 0);
index e382d2d564c7415ae208ffc5eef1ee9447492576..852572660033c758daa25fa90dee02d44cbb38f4 100644 (file)
@@ -11,7 +11,7 @@ void test__f_type_array_fll_idss_decrease_by__works(void **state) {
   f_fll_idss_t data = f_fll_ids_t_initialize;
 
   {
-    const f_status_t status = f_type_fll_idss_resize(length, &data);
+    const f_status_t status = f_fll_idss_resize(length, &data);
 
     assert_int_equal(status, F_none);
     assert_int_equal(data.used, 0);
@@ -19,7 +19,7 @@ void test__f_type_array_fll_idss_decrease_by__works(void **state) {
   }
 
   {
-    const f_status_t status = f_type_fll_idss_decrease_by(length, &data);
+    const f_status_t status = f_fll_idss_decrease_by(length, &data);
 
     assert_int_equal(status, F_none);
     assert_int_equal(data.used, 0);
@@ -35,7 +35,7 @@ void test__f_type_array_fll_idss_decrease_by__fails_on_invalid_parameter(void **
   f_fll_idss_t data = f_fll_ids_t_initialize;
 
   {
-    const f_status_t status = f_type_fll_idss_decrease_by(length, 0);
+    const f_status_t status = f_fll_idss_decrease_by(length, 0);
 
     assert_int_equal(status, F_status_set_error(F_parameter));
     assert_int_equal(data.used, 0);
index d16f586ed1f6a37f2201c0708633a8c27df2e6fa..9915a6fdd4c188b7bbc8011470c963e0790333ce 100644 (file)
@@ -11,7 +11,7 @@ void test__f_type_array_fll_idss_increase__works(void **state) {
   f_fll_idss_t data = f_fll_ids_t_initialize;
 
   {
-    const f_status_t status = f_type_fll_idss_resize(length, &data);
+    const f_status_t status = f_fll_idss_resize(length, &data);
 
     assert_int_equal(status, F_none);
     assert_int_equal(data.used, 0);
@@ -21,7 +21,7 @@ void test__f_type_array_fll_idss_increase__works(void **state) {
   {
     data.used = length;
 
-    const f_status_t status = f_type_fll_idss_increase(length, &data);
+    const f_status_t status = f_fll_idss_increase(length, &data);
 
     assert_int_equal(status, F_none);
     assert_int_equal(data.used, length);
@@ -37,7 +37,7 @@ void test__f_type_array_fll_idss_increase__returns_data_not(void **state) {
   f_fll_idss_t data = f_fll_ids_t_initialize;
 
   {
-    const f_status_t status = f_type_fll_idss_resize(length, &data);
+    const f_status_t status = f_fll_idss_resize(length, &data);
 
     assert_int_equal(status, F_none);
     assert_int_equal(data.used, 0);
@@ -45,7 +45,7 @@ void test__f_type_array_fll_idss_increase__returns_data_not(void **state) {
   }
 
   {
-    const f_status_t status = f_type_fll_idss_increase(length, &data);
+    const f_status_t status = f_fll_idss_increase(length, &data);
 
     assert_int_equal(status, F_data_not);
     assert_int_equal(data.used, 0);
@@ -61,7 +61,7 @@ void test__f_type_array_fll_idss_increase__fails_on_invalid_parameter(void **sta
   f_fll_idss_t data = f_fll_ids_t_initialize;
 
   {
-    const f_status_t status = f_type_fll_idss_increase(length, 0);
+    const f_status_t status = f_fll_idss_increase(length, 0);
 
     assert_int_equal(status, F_status_set_error(F_parameter));
     assert_int_equal(data.used, 0);
index 8c671dc09ab75bf1a06a3e073b1bde5b3088efb4..764ae839d548a1ae10552ee8a44565b83240e8d0 100644 (file)
@@ -11,7 +11,7 @@ void test__f_type_array_fll_idss_increase_by__works(void **state) {
   f_fll_idss_t data = f_fll_ids_t_initialize;
 
   {
-    const f_status_t status = f_type_fll_idss_resize(length, &data);
+    const f_status_t status = f_fll_idss_resize(length, &data);
 
     assert_int_equal(status, F_none);
     assert_int_equal(data.used, 0);
@@ -21,7 +21,7 @@ void test__f_type_array_fll_idss_increase_by__works(void **state) {
   {
     data.used = length;
 
-    const f_status_t status = f_type_fll_idss_increase_by(length, &data);
+    const f_status_t status = f_fll_idss_increase_by(length, &data);
 
     assert_int_equal(status, F_none);
     assert_int_equal(data.used, length);
@@ -37,7 +37,7 @@ void test__f_type_array_fll_idss_increase_by__fails_on_invalid_parameter(void **
   f_fll_idss_t data = f_fll_ids_t_initialize;
 
   {
-    const f_status_t status = f_type_fll_idss_increase_by(length, 0);
+    const f_status_t status = f_fll_idss_increase_by(length, 0);
 
     assert_int_equal(status, F_status_set_error(F_parameter));
     assert_int_equal(data.used, 0);
index 6db6835bd94734675e1515845742c858cd86bb3e..451a722f885a78b2267e52513a1217a7532d54eb 100644 (file)
@@ -11,7 +11,7 @@ void test__f_type_array_fll_idss_resize__works(void **state) {
   f_fll_idss_t data = f_fll_idss_t_initialize;
 
   {
-    const f_status_t status = f_type_fll_idss_resize(length, &data);
+    const f_status_t status = f_fll_idss_resize(length, &data);
 
     assert_int_equal(status, F_none);
     assert_int_equal(data.used, 0);
@@ -27,7 +27,7 @@ void test__f_type_array_fll_idss_resize__fails_on_invalid_parameter(void **state
   f_fll_idss_t data = f_fll_idss_t_initialize;
 
   {
-    const f_status_t status = f_type_fll_idss_resize(length, 0);
+    const f_status_t status = f_fll_idss_resize(length, 0);
 
     assert_int_equal(status, F_status_set_error(F_parameter));
     assert_int_equal(data.used, 0);
index 84e533b87340a2da71582297015e49d5d7d2c0b8..7bbd14c8f93ae88697620f3befc64e5502487350 100644 (file)
@@ -11,7 +11,7 @@ void test__f_type_array_states_adjust__works(void **state) {
   f_states_t data = f_states_t_initialize;
 
   {
-    const f_status_t status = f_type_states_adjust(length, &data);
+    const f_status_t status = f_states_adjust(length, &data);
 
     assert_int_equal(status, F_none);
     assert_int_equal(data.used, 0);
@@ -27,7 +27,7 @@ void test__f_type_array_states_adjust__fails_on_invalid_parameter(void **state)
   f_states_t data = f_states_t_initialize;
 
   {
-    const f_status_t status = f_type_states_adjust(length, 0);
+    const f_status_t status = f_states_adjust(length, 0);
 
     assert_int_equal(status, F_status_set_error(F_parameter));
     assert_int_equal(data.used, 0);
index ddd375de0ba254dd4a726d78e70d051b763a4405..c61f3a0caf4ed5313498942fbc5b70f93e58e2e7 100644 (file)
@@ -15,7 +15,7 @@ void test__f_type_array_states_append__works(void **state) {
   const f_state_t state_1 = { step_large: 20, step_small: 2, handle: 0, interrupt: 0, callbacks: 0, custom: 0, data: 0 };
 
   {
-    const f_status_t status = f_type_states_resize(length, &source);
+    const f_status_t status = f_states_resize(length, &source);
 
     assert_int_equal(status, F_none);
     assert_int_equal(source.used, 0);
@@ -26,7 +26,7 @@ void test__f_type_array_states_append__works(void **state) {
   memcpy(&source.array[source.used++], (void *) &state_1, sizeof(f_state_t));
 
   {
-    const f_status_t status = f_type_states_append(source, &destination);
+    const f_status_t status = f_states_append(source, &destination);
 
     assert_int_equal(status, F_none);
     assert_int_equal(destination.used, source.used);
@@ -60,7 +60,7 @@ void test__f_type_array_states_append__returns_data_not(void **state) {
   f_states_t destination = f_states_t_initialize;
 
   {
-    const f_status_t status = f_type_states_resize(length, &source);
+    const f_status_t status = f_states_resize(length, &source);
 
     assert_int_equal(status, F_none);
     assert_int_equal(source.used, 0);
@@ -68,7 +68,7 @@ void test__f_type_array_states_append__returns_data_not(void **state) {
   }
 
   {
-    const f_status_t status = f_type_states_append(source, &destination);
+    const f_status_t status = f_states_append(source, &destination);
 
     assert_int_equal(status, F_data_not);
     assert_int_equal(destination.used, 0);
@@ -85,7 +85,7 @@ void test__f_type_array_states_append__fails_on_invalid_parameter(void **state)
   f_states_t data = f_states_t_initialize;
 
   {
-    const f_status_t status = f_type_states_append(data, 0);
+    const f_status_t status = f_states_append(data, 0);
 
     assert_int_equal(status, F_status_set_error(F_parameter));
     assert_int_equal(data.used, 0);
index 026c95459878fc0bb5c261a3a8125af81c191b3c..564888c5bea6ea40d0d76122d9c8e79726e0c9a9 100644 (file)
@@ -11,7 +11,7 @@ void test__f_type_array_states_decimate_by__works(void **state) {
   f_states_t data = f_states_t_initialize;
 
   {
-    const f_status_t status = f_type_states_resize(length, &data);
+    const f_status_t status = f_states_resize(length, &data);
 
     assert_int_equal(status, F_none);
     assert_int_equal(data.used, 0);
@@ -19,7 +19,7 @@ void test__f_type_array_states_decimate_by__works(void **state) {
   }
 
   {
-    const f_status_t status = f_type_states_decimate_by(length, &data);
+    const f_status_t status = f_states_decimate_by(length, &data);
 
     assert_int_equal(status, F_none);
     assert_int_equal(data.used, 0);
@@ -35,7 +35,7 @@ void test__f_type_array_states_decimate_by__fails_on_invalid_parameter(void **st
   f_states_t data = f_states_t_initialize;
 
   {
-    const f_status_t status = f_type_states_decimate_by(length, 0);
+    const f_status_t status = f_states_decimate_by(length, 0);
 
     assert_int_equal(status, F_status_set_error(F_parameter));
     assert_int_equal(data.used, 0);
index 218c8c678f2b69945952f44188afedaad27b2ea6..886c5686372f58706136bd565f31204c1c4f5867 100644 (file)
@@ -11,7 +11,7 @@ void test__f_type_array_states_decrease_by__works(void **state) {
   f_states_t data = f_states_t_initialize;
 
   {
-    const f_status_t status = f_type_states_resize(length, &data);
+    const f_status_t status = f_states_resize(length, &data);
 
     assert_int_equal(status, F_none);
     assert_int_equal(data.used, 0);
@@ -19,7 +19,7 @@ void test__f_type_array_states_decrease_by__works(void **state) {
   }
 
   {
-    const f_status_t status = f_type_states_decrease_by(length, &data);
+    const f_status_t status = f_states_decrease_by(length, &data);
 
     assert_int_equal(status, F_none);
     assert_int_equal(data.used, 0);
@@ -35,7 +35,7 @@ void test__f_type_array_states_decrease_by__fails_on_invalid_parameter(void **st
   f_states_t data = f_states_t_initialize;
 
   {
-    const f_status_t status = f_type_states_decrease_by(length, 0);
+    const f_status_t status = f_states_decrease_by(length, 0);
 
     assert_int_equal(status, F_status_set_error(F_parameter));
     assert_int_equal(data.used, 0);
index 857f47e6142c7f656428d24bee7eef9f34b66bff..ae612f018a90dda656d6d3a28cab4d19953e4352 100644 (file)
@@ -11,7 +11,7 @@ void test__f_type_array_states_increase__works(void **state) {
   f_states_t data = f_states_t_initialize;
 
   {
-    const f_status_t status = f_type_states_resize(length, &data);
+    const f_status_t status = f_states_resize(length, &data);
 
     assert_int_equal(status, F_none);
     assert_int_equal(data.used, 0);
@@ -21,7 +21,7 @@ void test__f_type_array_states_increase__works(void **state) {
   {
     data.used = length;
 
-    const f_status_t status = f_type_states_increase(length, &data);
+    const f_status_t status = f_states_increase(length, &data);
 
     assert_int_equal(status, F_none);
     assert_int_equal(data.used, length);
@@ -37,7 +37,7 @@ void test__f_type_array_states_increase__returns_data_not(void **state) {
   f_states_t data = f_states_t_initialize;
 
   {
-    const f_status_t status = f_type_states_resize(length, &data);
+    const f_status_t status = f_states_resize(length, &data);
 
     assert_int_equal(status, F_none);
     assert_int_equal(data.used, 0);
@@ -45,7 +45,7 @@ void test__f_type_array_states_increase__returns_data_not(void **state) {
   }
 
   {
-    const f_status_t status = f_type_states_increase(length, &data);
+    const f_status_t status = f_states_increase(length, &data);
 
     assert_int_equal(status, F_data_not);
     assert_int_equal(data.used, 0);
@@ -61,7 +61,7 @@ void test__f_type_array_states_increase__fails_on_invalid_parameter(void **state
   f_states_t data = f_states_t_initialize;
 
   {
-    const f_status_t status = f_type_states_increase(length, 0);
+    const f_status_t status = f_states_increase(length, 0);
 
     assert_int_equal(status, F_status_set_error(F_parameter));
     assert_int_equal(data.used, 0);
index 711944eb8859274bf89270cb4555591e67f27843..2de473e8597bae4d498d73ff565857c7f1f54e24 100644 (file)
@@ -11,7 +11,7 @@ void test__f_type_array_states_increase_by__works(void **state) {
   f_states_t data = f_states_t_initialize;
 
   {
-    const f_status_t status = f_type_states_resize(length, &data);
+    const f_status_t status = f_states_resize(length, &data);
 
     assert_int_equal(status, F_none);
     assert_int_equal(data.used, 0);
@@ -21,7 +21,7 @@ void test__f_type_array_states_increase_by__works(void **state) {
   {
     data.used = length;
 
-    const f_status_t status = f_type_states_increase_by(length, &data);
+    const f_status_t status = f_states_increase_by(length, &data);
 
     assert_int_equal(status, F_none);
     assert_int_equal(data.used, length);
@@ -37,7 +37,7 @@ void test__f_type_array_states_increase_by__fails_on_invalid_parameter(void **st
   f_states_t data = f_states_t_initialize;
 
   {
-    const f_status_t status = f_type_states_increase_by(length, 0);
+    const f_status_t status = f_states_increase_by(length, 0);
 
     assert_int_equal(status, F_status_set_error(F_parameter));
     assert_int_equal(data.used, 0);
index 1366ba493b6963607f82260da128545ba3563478..668e137f1fb6895fa90b18f4ce1602a71412ead7 100644 (file)
@@ -11,7 +11,7 @@ void test__f_type_array_states_resize__works(void **state) {
   f_states_t data = f_states_t_initialize;
 
   {
-    const f_status_t status = f_type_states_resize(length, &data);
+    const f_status_t status = f_states_resize(length, &data);
 
     assert_int_equal(status, F_none);
     assert_int_equal(data.used, 0);
@@ -27,7 +27,7 @@ void test__f_type_array_states_resize__fails_on_invalid_parameter(void **state)
   f_states_t data = f_states_t_initialize;
 
   {
-    const f_status_t status = f_type_states_resize(length, 0);
+    const f_status_t status = f_states_resize(length, 0);
 
     assert_int_equal(status, F_status_set_error(F_parameter));
     assert_int_equal(data.used, 0);
index ceb323dcea97af885f40b6cd144bfc58ed2db081..a48aa04c10a12b743a4d9f3756de861494602b94 100644 (file)
@@ -11,7 +11,7 @@ void test__f_type_array_statess_adjust__works(void **state) {
   f_statess_t data = f_statess_t_initialize;
 
   {
-    const f_status_t status = f_type_statess_adjust(length, &data);
+    const f_status_t status = f_statess_adjust(length, &data);
 
     assert_int_equal(status, F_none);
     assert_int_equal(data.used, 0);
@@ -27,7 +27,7 @@ void test__f_type_array_statess_adjust__fails_on_invalid_parameter(void **state)
   f_statess_t data = f_statess_t_initialize;
 
   {
-    const f_status_t status = f_type_statess_adjust(length, 0);
+    const f_status_t status = f_statess_adjust(length, 0);
 
     assert_int_equal(status, F_status_set_error(F_parameter));
     assert_int_equal(data.used, 0);
index 216dc0f2a882f7059aacc026a5603b2be4529937..f813a3baa917822b781e42f59c2da06fcbddd65f 100644 (file)
@@ -16,7 +16,7 @@ void test__f_type_array_statess_append__works(void **state) {
   const f_state_t state_1 = { step_large: 20, step_small: 2, handle: 0, interrupt: 0, callbacks: 0, custom: 0, data: 0 };
 
   {
-    const f_status_t status = f_type_statess_resize(length, &source);
+    const f_status_t status = f_statess_resize(length, &source);
 
     assert_int_equal(status, F_none);
     assert_int_equal(source.used, 0);
@@ -26,7 +26,7 @@ void test__f_type_array_statess_append__works(void **state) {
   {
     for (; source.used < length; ++source.used) {
 
-      const f_status_t status = f_type_states_resize(length_inner, &source.array[source.used]);
+      const f_status_t status = f_states_resize(length_inner, &source.array[source.used]);
 
       assert_int_equal(status, F_none);
 
@@ -36,7 +36,7 @@ void test__f_type_array_statess_append__works(void **state) {
   }
 
   {
-    const f_status_t status = f_type_statess_append(source, &destination);
+    const f_status_t status = f_statess_append(source, &destination);
 
     assert_int_equal(status, F_none);
     assert_int_equal(destination.used, source.used);
@@ -84,7 +84,7 @@ void test__f_type_array_statess_append__returns_data_not(void **state) {
   f_statess_t destination = f_states_t_initialize;
 
   {
-    const f_status_t status = f_type_statess_resize(length, &source);
+    const f_status_t status = f_statess_resize(length, &source);
 
     assert_int_equal(status, F_none);
     assert_int_equal(source.used, 0);
@@ -92,7 +92,7 @@ void test__f_type_array_statess_append__returns_data_not(void **state) {
   }
 
   {
-    const f_status_t status = f_type_statess_append(source, &destination);
+    const f_status_t status = f_statess_append(source, &destination);
 
     assert_int_equal(status, F_data_not);
     assert_int_equal(destination.used, 0);
@@ -109,7 +109,7 @@ void test__f_type_array_statess_append__fails_on_invalid_parameter(void **state)
   f_statess_t data = f_states_t_initialize;
 
   {
-    const f_status_t status = f_type_statess_append(data, 0);
+    const f_status_t status = f_statess_append(data, 0);
 
     assert_int_equal(status, F_status_set_error(F_parameter));
     assert_int_equal(data.used, 0);
index 3f41a47dc4e15ba65d63881d5c8f866c12352977..ff8eb9775563355a475576bdf4490ca0b631200c 100644 (file)
@@ -11,7 +11,7 @@ void test__f_type_array_statess_decimate_by__works(void **state) {
   f_statess_t data = f_states_t_initialize;
 
   {
-    const f_status_t status = f_type_statess_resize(length, &data);
+    const f_status_t status = f_statess_resize(length, &data);
 
     assert_int_equal(status, F_none);
     assert_int_equal(data.used, 0);
@@ -19,7 +19,7 @@ void test__f_type_array_statess_decimate_by__works(void **state) {
   }
 
   {
-    const f_status_t status = f_type_statess_decimate_by(length, &data);
+    const f_status_t status = f_statess_decimate_by(length, &data);
 
     assert_int_equal(status, F_none);
     assert_int_equal(data.used, 0);
@@ -35,7 +35,7 @@ void test__f_type_array_statess_decimate_by__fails_on_invalid_parameter(void **s
   f_statess_t data = f_states_t_initialize;
 
   {
-    const f_status_t status = f_type_statess_decimate_by(length, 0);
+    const f_status_t status = f_statess_decimate_by(length, 0);
 
     assert_int_equal(status, F_status_set_error(F_parameter));
     assert_int_equal(data.used, 0);
index cd39f4edfe509c33919b046f1013b479cfce18af..5f8e2aab377ab876194d45a78bd733be52da65b4 100644 (file)
@@ -11,7 +11,7 @@ void test__f_type_array_statess_decrease_by__works(void **state) {
   f_statess_t data = f_states_t_initialize;
 
   {
-    const f_status_t status = f_type_statess_resize(length, &data);
+    const f_status_t status = f_statess_resize(length, &data);
 
     assert_int_equal(status, F_none);
     assert_int_equal(data.used, 0);
@@ -19,7 +19,7 @@ void test__f_type_array_statess_decrease_by__works(void **state) {
   }
 
   {
-    const f_status_t status = f_type_statess_decrease_by(length, &data);
+    const f_status_t status = f_statess_decrease_by(length, &data);
 
     assert_int_equal(status, F_none);
     assert_int_equal(data.used, 0);
@@ -35,7 +35,7 @@ void test__f_type_array_statess_decrease_by__fails_on_invalid_parameter(void **s
   f_statess_t data = f_states_t_initialize;
 
   {
-    const f_status_t status = f_type_statess_decrease_by(length, 0);
+    const f_status_t status = f_statess_decrease_by(length, 0);
 
     assert_int_equal(status, F_status_set_error(F_parameter));
     assert_int_equal(data.used, 0);
index 8c674efb11e4e9920ff93e1ce808ce99e906138b..2f09f9b3f390d0ae7f7227d18d311874d396c6ea 100644 (file)
@@ -11,7 +11,7 @@ void test__f_type_array_statess_increase__works(void **state) {
   f_statess_t data = f_states_t_initialize;
 
   {
-    const f_status_t status = f_type_statess_resize(length, &data);
+    const f_status_t status = f_statess_resize(length, &data);
 
     assert_int_equal(status, F_none);
     assert_int_equal(data.used, 0);
@@ -21,7 +21,7 @@ void test__f_type_array_statess_increase__works(void **state) {
   {
     data.used = length;
 
-    const f_status_t status = f_type_statess_increase(length, &data);
+    const f_status_t status = f_statess_increase(length, &data);
 
     assert_int_equal(status, F_none);
     assert_int_equal(data.used, length);
@@ -37,7 +37,7 @@ void test__f_type_array_statess_increase__returns_data_not(void **state) {
   f_statess_t data = f_states_t_initialize;
 
   {
-    const f_status_t status = f_type_statess_resize(length, &data);
+    const f_status_t status = f_statess_resize(length, &data);
 
     assert_int_equal(status, F_none);
     assert_int_equal(data.used, 0);
@@ -45,7 +45,7 @@ void test__f_type_array_statess_increase__returns_data_not(void **state) {
   }
 
   {
-    const f_status_t status = f_type_statess_increase(length, &data);
+    const f_status_t status = f_statess_increase(length, &data);
 
     assert_int_equal(status, F_data_not);
     assert_int_equal(data.used, 0);
@@ -61,7 +61,7 @@ void test__f_type_array_statess_increase__fails_on_invalid_parameter(void **stat
   f_statess_t data = f_states_t_initialize;
 
   {
-    const f_status_t status = f_type_statess_increase(length, 0);
+    const f_status_t status = f_statess_increase(length, 0);
 
     assert_int_equal(status, F_status_set_error(F_parameter));
     assert_int_equal(data.used, 0);
index f33af7855fa310214e435dd57006755557ea60f6..5c7447c48efe03c9da0b0b7ee84aed4c520b0417 100644 (file)
@@ -11,7 +11,7 @@ void test__f_type_array_statess_increase_by__works(void **state) {
   f_statess_t data = f_states_t_initialize;
 
   {
-    const f_status_t status = f_type_statess_resize(length, &data);
+    const f_status_t status = f_statess_resize(length, &data);
 
     assert_int_equal(status, F_none);
     assert_int_equal(data.used, 0);
@@ -21,7 +21,7 @@ void test__f_type_array_statess_increase_by__works(void **state) {
   {
     data.used = length;
 
-    const f_status_t status = f_type_statess_increase_by(length, &data);
+    const f_status_t status = f_statess_increase_by(length, &data);
 
     assert_int_equal(status, F_none);
     assert_int_equal(data.used, length);
@@ -37,7 +37,7 @@ void test__f_type_array_statess_increase_by__fails_on_invalid_parameter(void **s
   f_statess_t data = f_states_t_initialize;
 
   {
-    const f_status_t status = f_type_statess_increase_by(length, 0);
+    const f_status_t status = f_statess_increase_by(length, 0);
 
     assert_int_equal(status, F_status_set_error(F_parameter));
     assert_int_equal(data.used, 0);
index 57daa3873fee60a03c39dcafa16da4763c3edc16..2ef6251452a4b6c9624ab87b80df2deae4128da8 100644 (file)
@@ -11,7 +11,7 @@ void test__f_type_array_statess_resize__works(void **state) {
   f_statess_t data = f_statess_t_initialize;
 
   {
-    const f_status_t status = f_type_statess_resize(length, &data);
+    const f_status_t status = f_statess_resize(length, &data);
 
     assert_int_equal(status, F_none);
     assert_int_equal(data.used, 0);
@@ -27,7 +27,7 @@ void test__f_type_array_statess_resize__fails_on_invalid_parameter(void **state)
   f_statess_t data = f_statess_t_initialize;
 
   {
-    const f_status_t status = f_type_statess_resize(length, 0);
+    const f_status_t status = f_statess_resize(length, 0);
 
     assert_int_equal(status, F_status_set_error(F_parameter));
     assert_int_equal(data.used, 0);
index f7b6a3a20f782504b21179ab6f682ea7c4493b10..2c4fb7a0718d3085e5bd154a6f4a8d061d58e23c 100644 (file)
@@ -11,7 +11,7 @@ void test__f_type_array_statuss_adjust__works(void **state) {
   f_statuss_t data = f_statuss_t_initialize;
 
   {
-    const f_status_t status = f_type_statuss_adjust(length, &data);
+    const f_status_t status = f_statuss_adjust(length, &data);
 
     assert_int_equal(status, F_none);
     assert_int_equal(data.used, 0);
@@ -27,7 +27,7 @@ void test__f_type_array_statuss_adjust__fails_on_invalid_parameter(void **state)
   f_statuss_t data = f_statuss_t_initialize;
 
   {
-    const f_status_t status = f_type_statuss_adjust(length, 0);
+    const f_status_t status = f_statuss_adjust(length, 0);
 
     assert_int_equal(status, F_status_set_error(F_parameter));
     assert_int_equal(data.used, 0);
index 2130d8c2e19af7c414a32ecd69affa08f24fe2fc..ce5f15052f693fa16a8eba76a89c56aec73d0273 100644 (file)
@@ -13,7 +13,7 @@ void test__f_type_array_statuss_append__works(void **state) {
   f_statuss_t destination = f_statuss_t_initialize;
 
   {
-    const f_status_t status = f_type_statuss_resize(length, &source);
+    const f_status_t status = f_statuss_resize(length, &source);
 
     assert_int_equal(status, F_none);
     assert_int_equal(source.used, 0);
@@ -25,7 +25,7 @@ void test__f_type_array_statuss_append__works(void **state) {
   } // for
 
   {
-    const f_status_t status = f_type_statuss_append(source, &destination);
+    const f_status_t status = f_statuss_append(source, &destination);
 
     assert_int_equal(status, F_none);
     assert_int_equal(destination.used, source.used);
@@ -47,7 +47,7 @@ void test__f_type_array_statuss_append__returns_data_not(void **state) {
   f_statuss_t destination = f_statuss_t_initialize;
 
   {
-    const f_status_t status = f_type_statuss_resize(length, &source);
+    const f_status_t status = f_statuss_resize(length, &source);
 
     assert_int_equal(status, F_none);
     assert_int_equal(source.used, 0);
@@ -55,7 +55,7 @@ void test__f_type_array_statuss_append__returns_data_not(void **state) {
   }
 
   {
-    const f_status_t status = f_type_statuss_append(source, &destination);
+    const f_status_t status = f_statuss_append(source, &destination);
 
     assert_int_equal(status, F_data_not);
     assert_int_equal(destination.used, 0);
@@ -72,7 +72,7 @@ void test__f_type_array_statuss_append__fails_on_invalid_parameter(void **state)
   f_statuss_t data = f_statuss_t_initialize;
 
   {
-    const f_status_t status = f_type_statuss_append(data, 0);
+    const f_status_t status = f_statuss_append(data, 0);
 
     assert_int_equal(status, F_status_set_error(F_parameter));
     assert_int_equal(data.used, 0);
index 7aa762b578a45c7ffde87fe49f97086a01895631..ec845a7e4b5bffb940484a82fc25a90109e3469f 100644 (file)
@@ -11,7 +11,7 @@ void test__f_type_array_statuss_decimate_by__works(void **state) {
   f_statuss_t data = f_statuss_t_initialize;
 
   {
-    const f_status_t status = f_type_statuss_resize(length, &data);
+    const f_status_t status = f_statuss_resize(length, &data);
 
     assert_int_equal(status, F_none);
     assert_int_equal(data.used, 0);
@@ -19,7 +19,7 @@ void test__f_type_array_statuss_decimate_by__works(void **state) {
   }
 
   {
-    const f_status_t status = f_type_statuss_decimate_by(length, &data);
+    const f_status_t status = f_statuss_decimate_by(length, &data);
 
     assert_int_equal(status, F_none);
     assert_int_equal(data.used, 0);
@@ -35,7 +35,7 @@ void test__f_type_array_statuss_decimate_by__fails_on_invalid_parameter(void **s
   f_statuss_t data = f_statuss_t_initialize;
 
   {
-    const f_status_t status = f_type_statuss_decimate_by(length, 0);
+    const f_status_t status = f_statuss_decimate_by(length, 0);
 
     assert_int_equal(status, F_status_set_error(F_parameter));
     assert_int_equal(data.used, 0);
index d8818b3bee03f0a105e94d726ba2f7b47fc3321a..4be9e7663d25edd6fdf1a7b4769fe2d701714b90 100644 (file)
@@ -11,7 +11,7 @@ void test__f_type_array_statuss_decrease_by__works(void **state) {
   f_statuss_t data = f_statuss_t_initialize;
 
   {
-    const f_status_t status = f_type_statuss_resize(length, &data);
+    const f_status_t status = f_statuss_resize(length, &data);
 
     assert_int_equal(status, F_none);
     assert_int_equal(data.used, 0);
@@ -19,7 +19,7 @@ void test__f_type_array_statuss_decrease_by__works(void **state) {
   }
 
   {
-    const f_status_t status = f_type_statuss_decrease_by(length, &data);
+    const f_status_t status = f_statuss_decrease_by(length, &data);
 
     assert_int_equal(status, F_none);
     assert_int_equal(data.used, 0);
@@ -35,7 +35,7 @@ void test__f_type_array_statuss_decrease_by__fails_on_invalid_parameter(void **s
   f_statuss_t data = f_statuss_t_initialize;
 
   {
-    const f_status_t status = f_type_statuss_decrease_by(length, 0);
+    const f_status_t status = f_statuss_decrease_by(length, 0);
 
     assert_int_equal(status, F_status_set_error(F_parameter));
     assert_int_equal(data.used, 0);
index fde1b7713e2cdd8b8dc3a4f744bee9d73b0cec31..04cfd656e6e1d1a248ee6a9941a37e2a8f760f63 100644 (file)
@@ -11,7 +11,7 @@ void test__f_type_array_statuss_increase__works(void **state) {
   f_statuss_t data = f_statuss_t_initialize;
 
   {
-    const f_status_t status = f_type_statuss_resize(length, &data);
+    const f_status_t status = f_statuss_resize(length, &data);
 
     assert_int_equal(status, F_none);
     assert_int_equal(data.used, 0);
@@ -21,7 +21,7 @@ void test__f_type_array_statuss_increase__works(void **state) {
   {
     data.used = length;
 
-    const f_status_t status = f_type_statuss_increase(length, &data);
+    const f_status_t status = f_statuss_increase(length, &data);
 
     assert_int_equal(status, F_none);
     assert_int_equal(data.used, length);
@@ -37,7 +37,7 @@ void test__f_type_array_statuss_increase__returns_data_not(void **state) {
   f_statuss_t data = f_statuss_t_initialize;
 
   {
-    const f_status_t status = f_type_statuss_resize(length, &data);
+    const f_status_t status = f_statuss_resize(length, &data);
 
     assert_int_equal(status, F_none);
     assert_int_equal(data.used, 0);
@@ -45,7 +45,7 @@ void test__f_type_array_statuss_increase__returns_data_not(void **state) {
   }
 
   {
-    const f_status_t status = f_type_statuss_increase(length, &data);
+    const f_status_t status = f_statuss_increase(length, &data);
 
     assert_int_equal(status, F_data_not);
     assert_int_equal(data.used, 0);
@@ -61,7 +61,7 @@ void test__f_type_array_statuss_increase__fails_on_invalid_parameter(void **stat
   f_statuss_t data = f_statuss_t_initialize;
 
   {
-    const f_status_t status = f_type_statuss_increase(length, 0);
+    const f_status_t status = f_statuss_increase(length, 0);
 
     assert_int_equal(status, F_status_set_error(F_parameter));
     assert_int_equal(data.used, 0);
index 1ea2da2dcb5e70ac4ffc98bbd9e236044107a0d3..7be778bef77709d16bc87b251fe30653c2ae2386 100644 (file)
@@ -11,7 +11,7 @@ void test__f_type_array_statuss_increase_by__works(void **state) {
   f_statuss_t data = f_statuss_t_initialize;
 
   {
-    const f_status_t status = f_type_statuss_resize(length, &data);
+    const f_status_t status = f_statuss_resize(length, &data);
 
     assert_int_equal(status, F_none);
     assert_int_equal(data.used, 0);
@@ -21,7 +21,7 @@ void test__f_type_array_statuss_increase_by__works(void **state) {
   {
     data.used = length;
 
-    const f_status_t status = f_type_statuss_increase_by(length, &data);
+    const f_status_t status = f_statuss_increase_by(length, &data);
 
     assert_int_equal(status, F_none);
     assert_int_equal(data.used, length);
@@ -37,7 +37,7 @@ void test__f_type_array_statuss_increase_by__fails_on_invalid_parameter(void **s
   f_statuss_t data = f_statuss_t_initialize;
 
   {
-    const f_status_t status = f_type_statuss_increase_by(length, 0);
+    const f_status_t status = f_statuss_increase_by(length, 0);
 
     assert_int_equal(status, F_status_set_error(F_parameter));
     assert_int_equal(data.used, 0);
index d29085958c6d2eb5c661810b72e2e92320519a3e..f73f81e3ee29e08a082218ca6554477511db0d5a 100644 (file)
@@ -11,7 +11,7 @@ void test__f_type_array_statuss_resize__works(void **state) {
   f_statuss_t data = f_statuss_t_initialize;
 
   {
-    const f_status_t status = f_type_statuss_resize(length, &data);
+    const f_status_t status = f_statuss_resize(length, &data);
 
     assert_int_equal(status, F_none);
     assert_int_equal(data.used, 0);
@@ -27,7 +27,7 @@ void test__f_type_array_statuss_resize__fails_on_invalid_parameter(void **state)
   f_statuss_t data = f_statuss_t_initialize;
 
   {
-    const f_status_t status = f_type_statuss_resize(length, 0);
+    const f_status_t status = f_statuss_resize(length, 0);
 
     assert_int_equal(status, F_status_set_error(F_parameter));
     assert_int_equal(data.used, 0);
index e08608edfef961389eec8e169cc5c79bf85a4a07..1502c3146f962cee0a394776654877228659b7d3 100644 (file)
@@ -11,7 +11,7 @@ void test__f_type_array_statusss_adjust__works(void **state) {
   f_statusss_t data = f_statusss_t_initialize;
 
   {
-    const f_status_t status = f_type_statusss_adjust(length, &data);
+    const f_status_t status = f_statusss_adjust(length, &data);
 
     assert_int_equal(status, F_none);
     assert_int_equal(data.used, 0);
@@ -27,7 +27,7 @@ void test__f_type_array_statusss_adjust__fails_on_invalid_parameter(void **state
   f_statusss_t data = f_statusss_t_initialize;
 
   {
-    const f_status_t status = f_type_statusss_adjust(length, 0);
+    const f_status_t status = f_statusss_adjust(length, 0);
 
     assert_int_equal(status, F_status_set_error(F_parameter));
     assert_int_equal(data.used, 0);
index 5e0169063f1f1f8e1ce2ab81df84a1b1a3be79e4..ef10deee9c541c3f513ff389aa82c3747907d474 100644 (file)
@@ -13,7 +13,7 @@ void test__f_type_array_statusss_append__works(void **state) {
   f_statusss_t destination = f_statuss_t_initialize;
 
   {
-    const f_status_t status = f_type_statusss_resize(length, &source);
+    const f_status_t status = f_statusss_resize(length, &source);
 
     assert_int_equal(status, F_none);
     assert_int_equal(source.used, 0);
@@ -23,7 +23,7 @@ void test__f_type_array_statusss_append__works(void **state) {
   {
     for (; source.used < length; ++source.used) {
 
-      const f_status_t status = f_type_statuss_resize(length_inner, &source.array[source.used]);
+      const f_status_t status = f_statuss_resize(length_inner, &source.array[source.used]);
 
       assert_int_equal(status, F_none);
 
@@ -34,7 +34,7 @@ void test__f_type_array_statusss_append__works(void **state) {
   }
 
   {
-    const f_status_t status = f_type_statusss_append(source, &destination);
+    const f_status_t status = f_statusss_append(source, &destination);
 
     assert_int_equal(status, F_none);
     assert_int_equal(destination.used, source.used);
@@ -70,7 +70,7 @@ void test__f_type_array_statusss_append__returns_data_not(void **state) {
   f_statusss_t destination = f_statuss_t_initialize;
 
   {
-    const f_status_t status = f_type_statusss_resize(length, &source);
+    const f_status_t status = f_statusss_resize(length, &source);
 
     assert_int_equal(status, F_none);
     assert_int_equal(source.used, 0);
@@ -78,7 +78,7 @@ void test__f_type_array_statusss_append__returns_data_not(void **state) {
   }
 
   {
-    const f_status_t status = f_type_statusss_append(source, &destination);
+    const f_status_t status = f_statusss_append(source, &destination);
 
     assert_int_equal(status, F_data_not);
     assert_int_equal(destination.used, 0);
@@ -95,7 +95,7 @@ void test__f_type_array_statusss_append__fails_on_invalid_parameter(void **state
   f_statusss_t data = f_statuss_t_initialize;
 
   {
-    const f_status_t status = f_type_statusss_append(data, 0);
+    const f_status_t status = f_statusss_append(data, 0);
 
     assert_int_equal(status, F_status_set_error(F_parameter));
     assert_int_equal(data.used, 0);
index 9f97b4ee4cc04cf12557d6d3853151c8dbbf6593..72474b79456bf8d9b0eef5be88611d522b0cde2b 100644 (file)
@@ -11,7 +11,7 @@ void test__f_type_array_statusss_decimate_by__works(void **state) {
   f_statusss_t data = f_statuss_t_initialize;
 
   {
-    const f_status_t status = f_type_statusss_resize(length, &data);
+    const f_status_t status = f_statusss_resize(length, &data);
 
     assert_int_equal(status, F_none);
     assert_int_equal(data.used, 0);
@@ -19,7 +19,7 @@ void test__f_type_array_statusss_decimate_by__works(void **state) {
   }
 
   {
-    const f_status_t status = f_type_statusss_decimate_by(length, &data);
+    const f_status_t status = f_statusss_decimate_by(length, &data);
 
     assert_int_equal(status, F_none);
     assert_int_equal(data.used, 0);
@@ -35,7 +35,7 @@ void test__f_type_array_statusss_decimate_by__fails_on_invalid_parameter(void **
   f_statusss_t data = f_statuss_t_initialize;
 
   {
-    const f_status_t status = f_type_statusss_decimate_by(length, 0);
+    const f_status_t status = f_statusss_decimate_by(length, 0);
 
     assert_int_equal(status, F_status_set_error(F_parameter));
     assert_int_equal(data.used, 0);
index 8e10ea4f81301503bb93dfa7fddfb480822e89e1..f5b24e3c2a0ce57e1196cb704b1446cde20e0632 100644 (file)
@@ -11,7 +11,7 @@ void test__f_type_array_statusss_decrease_by__works(void **state) {
   f_statusss_t data = f_statuss_t_initialize;
 
   {
-    const f_status_t status = f_type_statusss_resize(length, &data);
+    const f_status_t status = f_statusss_resize(length, &data);
 
     assert_int_equal(status, F_none);
     assert_int_equal(data.used, 0);
@@ -19,7 +19,7 @@ void test__f_type_array_statusss_decrease_by__works(void **state) {
   }
 
   {
-    const f_status_t status = f_type_statusss_decrease_by(length, &data);
+    const f_status_t status = f_statusss_decrease_by(length, &data);
 
     assert_int_equal(status, F_none);
     assert_int_equal(data.used, 0);
@@ -35,7 +35,7 @@ void test__f_type_array_statusss_decrease_by__fails_on_invalid_parameter(void **
   f_statusss_t data = f_statuss_t_initialize;
 
   {
-    const f_status_t status = f_type_statusss_decrease_by(length, 0);
+    const f_status_t status = f_statusss_decrease_by(length, 0);
 
     assert_int_equal(status, F_status_set_error(F_parameter));
     assert_int_equal(data.used, 0);
index a90fde6b22a2994e1ab9b7c8131b2295a6cb3f41..16a263401abd306ad4599d23bc417fc697a80ecb 100644 (file)
@@ -11,7 +11,7 @@ void test__f_type_array_statusss_increase__works(void **state) {
   f_statusss_t data = f_statuss_t_initialize;
 
   {
-    const f_status_t status = f_type_statusss_resize(length, &data);
+    const f_status_t status = f_statusss_resize(length, &data);
 
     assert_int_equal(status, F_none);
     assert_int_equal(data.used, 0);
@@ -21,7 +21,7 @@ void test__f_type_array_statusss_increase__works(void **state) {
   {
     data.used = length;
 
-    const f_status_t status = f_type_statusss_increase(length, &data);
+    const f_status_t status = f_statusss_increase(length, &data);
 
     assert_int_equal(status, F_none);
     assert_int_equal(data.used, length);
@@ -37,7 +37,7 @@ void test__f_type_array_statusss_increase__returns_data_not(void **state) {
   f_statusss_t data = f_statuss_t_initialize;
 
   {
-    const f_status_t status = f_type_statusss_resize(length, &data);
+    const f_status_t status = f_statusss_resize(length, &data);
 
     assert_int_equal(status, F_none);
     assert_int_equal(data.used, 0);
@@ -45,7 +45,7 @@ void test__f_type_array_statusss_increase__returns_data_not(void **state) {
   }
 
   {
-    const f_status_t status = f_type_statusss_increase(length, &data);
+    const f_status_t status = f_statusss_increase(length, &data);
 
     assert_int_equal(status, F_data_not);
     assert_int_equal(data.used, 0);
@@ -61,7 +61,7 @@ void test__f_type_array_statusss_increase__fails_on_invalid_parameter(void **sta
   f_statusss_t data = f_statuss_t_initialize;
 
   {
-    const f_status_t status = f_type_statusss_increase(length, 0);
+    const f_status_t status = f_statusss_increase(length, 0);
 
     assert_int_equal(status, F_status_set_error(F_parameter));
     assert_int_equal(data.used, 0);
index 83ef55d7f70d596866d0bd7871b3de014ed0211a..e4afc46da4ad4a2e740b4fbe7a8777c9e51f8e64 100644 (file)
@@ -11,7 +11,7 @@ void test__f_type_array_statusss_increase_by__works(void **state) {
   f_statusss_t data = f_statuss_t_initialize;
 
   {
-    const f_status_t status = f_type_statusss_resize(length, &data);
+    const f_status_t status = f_statusss_resize(length, &data);
 
     assert_int_equal(status, F_none);
     assert_int_equal(data.used, 0);
@@ -21,7 +21,7 @@ void test__f_type_array_statusss_increase_by__works(void **state) {
   {
     data.used = length;
 
-    const f_status_t status = f_type_statusss_increase_by(length, &data);
+    const f_status_t status = f_statusss_increase_by(length, &data);
 
     assert_int_equal(status, F_none);
     assert_int_equal(data.used, length);
@@ -37,7 +37,7 @@ void test__f_type_array_statusss_increase_by__fails_on_invalid_parameter(void **
   f_statusss_t data = f_statuss_t_initialize;
 
   {
-    const f_status_t status = f_type_statusss_increase_by(length, 0);
+    const f_status_t status = f_statusss_increase_by(length, 0);
 
     assert_int_equal(status, F_status_set_error(F_parameter));
     assert_int_equal(data.used, 0);
index 2e1d22aa03ebc3d7d706dfc4cd4a316273534d92..af2d50ec0cc736730e0e98f675f7563f7af5f844 100644 (file)
@@ -11,7 +11,7 @@ void test__f_type_array_statusss_resize__works(void **state) {
   f_statusss_t data = f_statusss_t_initialize;
 
   {
-    const f_status_t status = f_type_statusss_resize(length, &data);
+    const f_status_t status = f_statusss_resize(length, &data);
 
     assert_int_equal(status, F_none);
     assert_int_equal(data.used, 0);
@@ -27,7 +27,7 @@ void test__f_type_array_statusss_resize__fails_on_invalid_parameter(void **state
   f_statusss_t data = f_statusss_t_initialize;
 
   {
-    const f_status_t status = f_type_statusss_resize(length, 0);
+    const f_status_t status = f_statusss_resize(length, 0);
 
     assert_int_equal(status, F_status_set_error(F_parameter));
     assert_int_equal(data.used, 0);
index 3eb6d88e24098e93b88b04669d1803583c72a95c..c24f63f963ed5b927586a68a7e53966ff0979d44 100644 (file)
@@ -329,7 +329,7 @@ extern "C" {
     macro_f_fss_objects_t_resize(status, objects, state.step_small)
 
     if (F_status_is_error(status)) {
-      f_type_array_lengths_resize(0, &positions_start);
+      f_array_lengths_resize(0, &positions_start);
 
       return status;
     }
@@ -339,7 +339,7 @@ extern "C" {
     macro_f_array_lengths_t_resize(status, slashes, state.step_small)
 
     if (F_status_is_error(status)) {
-      f_type_array_lengths_resize(0, &positions_start);
+      f_array_lengths_resize(0, &positions_start);
       macro_f_fss_objects_t_delete_simple(objects);
 
       return status;
@@ -833,9 +833,9 @@ extern "C" {
 
             private_macro_fl_fss_nest_return_on_overflow_delimited((buffer), (*range), (*found), positions_start, objects, slashes, F_none_eos, F_none_stop)
 
-            f_type_array_lengths_resize(0, &positions_start);
+            f_array_lengths_resize(0, &positions_start);
             macro_f_fss_objects_t_delete_simple(objects);
-            f_type_array_lengths_resize(0, &slashes);
+            f_array_lengths_resize(0, &slashes);
 
             return F_fss_found_content;
           }
@@ -945,9 +945,9 @@ extern "C" {
       if (F_status_is_error(status)) break;
     } // while
 
-    f_type_array_lengths_resize(0, &positions_start);
+    f_array_lengths_resize(0, &positions_start);
     macro_f_fss_objects_t_delete_simple(objects);
-    f_type_array_lengths_resize(0, &slashes);
+    f_array_lengths_resize(0, &slashes);
 
     delimits->used = delimits_used;
     comments->used = comments_used;
index c886d8b51028989980e6cba009287ed4a14466ed..b7740d864908a95da9ed38a8cd44bc0e1b975384 100644 (file)
@@ -120,7 +120,7 @@ extern "C" {
 
     do {
       if (ids && ids->used + 1 > ids->size) {
-        status = f_type_fll_ids_increase(F_fss_default_allocation_step_small_d, ids);
+        status = f_fll_ids_increase(F_fss_default_allocation_step_small_d, ids);
       }
 
       if (F_status_is_error_not(status)) {
@@ -149,7 +149,7 @@ extern "C" {
       }
 
       if (ids) {
-        status = f_type_fll_ids_increase(F_fss_default_allocation_step_small_d, ids);
+        status = f_fll_ids_increase(F_fss_default_allocation_step_small_d, ids);
 
         if (F_status_is_error(status)) {
           if (ids) {
@@ -281,7 +281,7 @@ extern "C" {
           if (F_status_is_error(status)) return status;
 
           if (indexs) {
-            status = f_type_array_lengths_increase_by(content->used, indexs[j]);
+            status = f_array_lengths_increase_by(content->used, indexs[j]);
             if (F_status_is_error(status)) return status;
           }
         }
index f116306c2262c61406b3b761e670c25ff72b9237..8279ec5e92b0358c4ae66334391acab8946c0024 100644 (file)
@@ -65,11 +65,11 @@ extern "C" {
  *
  *   F_complete_not_utf (with error bit) if character is an incomplete UTF-8 fragment.
  *
- *   Errors (with error bit) from: f_type_fll_ids_increase().
+ *   Errors (with error bit) from: f_fll_ids_increase().
  *   Errors (with error bit) from: f_utf_is_whitespace().
  *   Errors (with error bit) from: fl_string_fll_identify().
  *
- * @see f_type_fll_ids_increase()
+ * @see f_fll_ids_increase()
  * @see f_utf_is_whitespace()
  * @see fl_string_fll_identify()
  */
index 4190573627ab681a194c3fc5f004562253dd03c7..18f98e94b9828dd06650a35abb616bd278eaa0f4 100644 (file)
@@ -29,7 +29,7 @@ extern "C" {
       if (F_status_is_error(status)) return status;
 
       if (objects_quoted) {
-        status = f_type_uint8s_increase(state.step_small, objects_quoted);
+        status = f_uint8s_increase(state.step_small, objects_quoted);
         if (F_status_is_error(status)) return status;
       }
 
index 1cce8d3be6ec8a20e31b687338768ef0c678089b..36ad2800770cb2bea0f72e56fb8c2e2f5ba3c93d 100644 (file)
@@ -30,12 +30,12 @@ extern "C" {
       if (F_status_is_error(status)) return status;
 
       if (objects_quoted) {
-        status = f_type_uint8s_increase(state.step_small, objects_quoted);
+        status = f_uint8s_increase(state.step_small, objects_quoted);
         if (F_status_is_error(status)) return status;
       }
 
       if (contents_quoted) {
-        status = f_type_uint8ss_increase(state.step_small, contents_quoted);
+        status = f_uint8ss_increase(state.step_small, contents_quoted);
         if (F_status_is_error(status)) return status;
       }
 
@@ -61,7 +61,7 @@ extern "C" {
             ++contents->used;
 
             if (contents_quoted) {
-              status2 = f_type_uint8s_increase(state.step_small, &contents_quoted->array[contents_quoted->used]);
+              status2 = f_uint8s_increase(state.step_small, &contents_quoted->array[contents_quoted->used]);
               if (F_status_is_error(status2)) return status2;
 
               ++contents_quoted->used;
@@ -89,7 +89,7 @@ extern "C" {
           found_data = F_true;
 
           if (contents_quoted) {
-            status2 = f_type_uint8s_increase(state.step_small, &contents_quoted->array[contents_quoted->used]);
+            status2 = f_uint8s_increase(state.step_small, &contents_quoted->array[contents_quoted->used]);
             if (F_status_is_error(status2)) return status2;
 
             quoted_content = &contents_quoted->array[contents_quoted->used];
index eaa6e04170de49ef652ab0ef1e3c8ee62c72cdfb..78024edb2ac839b0343b800667a17b2628d78ff4 100644 (file)
@@ -406,7 +406,7 @@ extern "C" {
 
     f_string_ranges_resize(0, &objects);
     f_string_rangess_resize(0, &contents);
-    f_type_array_lengths_resize(0, &delimits);
+    f_array_lengths_resize(0, &delimits);
 
     data->cache.buffer_large.used = 0;
     data->cache.buffer_small.used = 0;
index 9d0d7249342b6acdef59cec3c6d0768d75057a26..27c3621261ae9d36f996fc1610014dd67a3fa38e 100644 (file)
@@ -18,8 +18,8 @@ extern "C" {
 #ifndef _di_controller_cache_delete_simple_
   void controller_cache_delete_simple(controller_cache_t * const cache) {
 
-    f_type_array_lengths_resize(0, &cache->ats);
-    f_type_array_lengths_resize(0, &cache->stack);
+    f_array_lengths_resize(0, &cache->ats);
+    f_array_lengths_resize(0, &cache->stack);
     macro_f_fss_delimits_t_delete_simple(cache->delimits)
 
     f_string_dynamic_resize(0, &cache->buffer_file);
index cb6b07d5d8c2c590f4f728743b0400174dfb5a55..0dd3bce7330851b033e972f370c49b9dac0338c5 100644 (file)
@@ -67,7 +67,7 @@ extern "C" {
 
     f_string_dynamics_resize(0, &process->path_pids);
 
-    f_type_array_lengths_resize(0, &process->stack);
+    f_array_lengths_resize(0, &process->stack);
   }
 #endif // _di_controller_process_delete_simple_
 
index b20fec496cd276d3c6929e7ce0fcfa0b3337452c..f39808e3ed17257397d268ad0dfcae0791ea0b9d 100644 (file)
@@ -908,7 +908,7 @@ extern "C" {
     }
 
     if (source.affinity.used) {
-      status = f_type_int32s_append(source.affinity, &destination->affinity);
+      status = f_int32s_append(source.affinity, &destination->affinity);
       if (F_status_is_error(status)) return status;
     }
 
@@ -921,7 +921,7 @@ extern "C" {
     if (F_status_is_error(status)) return status;
 
     if (source.groups.used) {
-      status = f_type_int32s_append(source.groups, &destination->groups);
+      status = f_int32s_append(source.groups, &destination->groups);
       if (F_status_is_error(status)) return status;
     }
 
@@ -2895,11 +2895,11 @@ extern "C" {
 
     if (F_status_is_error_not(status) && stack.used) {
       if (process->stack.size < stack.used) {
-        status = f_type_array_lengths_resize(stack.used, &process->stack);
+        status = f_array_lengths_resize(stack.used, &process->stack);
       }
 
       if (F_status_is_error(status)) {
-        controller_print_error(global.thread, global.main->error, F_status_set_fine(status), "f_type_array_lengths_resize", F_true);
+        controller_print_error(global.thread, global.main->error, F_status_set_fine(status), "f_array_lengths_resize", F_true);
       }
       else {
         for (f_array_length_t i = 0; i < stack.used; ++i) {
@@ -3125,10 +3125,10 @@ extern "C" {
         }
 
         if (F_status_is_error_not(status)) {
-          status = f_type_array_lengths_increase(controller_common_allocation_small_d, &process->stack);
+          status = f_array_lengths_increase(controller_common_allocation_small_d, &process->stack);
 
           if (F_status_is_error(status)) {
-            controller_print_error(global.thread, global.main->error, F_status_set_fine(status), "f_type_array_lengths_increase", F_true);
+            controller_print_error(global.thread, global.main->error, F_status_set_fine(status), "f_array_lengths_increase", F_true);
           }
           else {
             f_thread_unlock(&process->lock);
index e1deb3766c0b4b47ba64b10a458cba9303df7725..6713d6697249af1f26c26797959e2106acf70f04 100644 (file)
@@ -198,7 +198,7 @@ extern "C" {
  *   Errors (with error bit) from: f_string_dynamic_append().
  *   Errors (with error bit) from: f_string_dynamics_append().
  *   Errors (with error bit) from: f_string_maps_append().
- *   Errors (with error bit) from: f_type_int32s_append().
+ *   Errors (with error bit) from: f_int32s_append().
  *
  *  @see f_capability_copy()
  *  @see f_control_group_copy()
@@ -206,7 +206,7 @@ extern "C" {
  *  @see f_string_dynamic_append()
  *  @see f_string_dynamics_append()
  *  @see f_string_maps_append()
- *  @see f_type_int32s_append()
+ *  @see f_int32s_append()
  */
 #ifndef _di_controller_rule_copy_
   extern f_status_t controller_rule_copy(const controller_rule_t source, controller_rule_t *destination) F_attribute_visibility_internal_d;
index 76c50c1cf5c8204d13621c530da10fe187164fb6..78d1f3d181d5ed4e7fa0989515f86306009f48b4 100644 (file)
@@ -119,7 +119,7 @@ extern "C" {
 
           // Deallocate dynamic portions of the structure that are only ever needed while the process is running.
           controller_cache_delete_simple(&process->cache);
-          f_type_array_lengths_resize(0, &process->stack);
+          f_array_lengths_resize(0, &process->stack);
 
           // Shrink the childs array.
           if (process->childs.used) {
index 260ede21a63991c16256637be6fd924cbce41b08..2d3ced16bd5098591bdad3ff5c2eee466f65664e 100644 (file)
@@ -130,7 +130,7 @@ extern "C" {
 
     f_file_stream_close(F_true, &data_make.path.top);
 
-    f_type_array_lengths_resize(0, &section_stack);
+    f_array_lengths_resize(0, &section_stack);
     fake_make_data_delete(&data_make);
 
     return status;
@@ -961,10 +961,10 @@ extern "C" {
     }
 
     // Add the operation id to the operation stack.
-    *status = f_type_array_lengths_increase(fake_default_allocation_small_d, section_stack);
+    *status = f_array_lengths_increase(fake_default_allocation_small_d, section_stack);
 
     if (F_status_is_error(*status)) {
-      fll_error_print(data_make->error, F_status_set_fine(*status), "f_type_array_lengths_increase", F_true);
+      fll_error_print(data_make->error, F_status_set_fine(*status), "f_array_lengths_increase", F_true);
 
       return 0;
     }
index 78acc5f4a1da063399e622cc62ef18612c35168a..7babe702dedb600b58fe42a14ea3c6b9b2cd21fe 100644 (file)
@@ -713,7 +713,7 @@ f_status_t firewall_perform_commands(firewall_main_t * const main, const firewal
                 }
 
                 if (F_status_is_error(status)) {
-                  f_type_array_lengths_resize(0, &delimits);
+                  f_array_lengths_resize(0, &delimits);
 
                   break;
                 }
@@ -740,7 +740,7 @@ f_status_t firewall_perform_commands(firewall_main_t * const main, const firewal
                   status = fll_execute_program(current_tool, arguments, 0, 0, (void *) &return_code);
 
                   if (status == F_child) {
-                    f_type_array_lengths_resize(0, &delimits);
+                    f_array_lengths_resize(0, &delimits);
 
                     f_string_dynamic_resize(0, &ip_list);
                     f_string_dynamics_resize(0, &arguments);
@@ -774,7 +774,7 @@ f_status_t firewall_perform_commands(firewall_main_t * const main, const firewal
                 --arguments.used;
               }
 
-              f_type_array_lengths_resize(0, &delimits);
+              f_array_lengths_resize(0, &delimits);
             }
           }
 
@@ -1344,7 +1344,7 @@ f_status_t firewall_delete_local_data(firewall_local_data_t * const local) {
   local->chain = 0;
 
   f_string_dynamic_resize(0, &local->buffer);
-  f_type_array_lengths_resize(0, &local->chain_ids);
+  f_array_lengths_resize(0, &local->chain_ids);
 
   f_string_ranges_resize(0, &local->chain_objects);
   f_string_rangess_resize(0, &local->chain_contents);
index 4b4d6d3b26d2a6e06a0e437b9a4353908314be73..e8e9eaba5516a1d292c77c899fba3991214a66dc 100644 (file)
@@ -75,7 +75,7 @@ extern "C" {
     if (F_status_is_error(status)) {
       fll_error_file_print(main->error, F_status_set_fine(status), "fll_fss_identify", F_true, name.used ? name : f_string_ascii_pipe_s, f_file_operation_read_s, name.used ? fll_error_file_type_file_e : fll_error_file_type_pipe_e);
 
-      f_type_fll_ids_resize(0, &ids);
+      f_fll_ids_resize(0, &ids);
 
       return status;
     }
@@ -132,7 +132,7 @@ extern "C" {
       } // for
     }
 
-    f_type_fll_ids_resize(0, &ids);
+    f_fll_ids_resize(0, &ids);
 
     return F_none;
   }