From: Kevin Day Date: Tue, 2 Aug 2022 02:57:06 +0000 (-0500) Subject: Update: Next minor version (0.7.0). X-Git-Tag: 0.7.0~897 X-Git-Url: https://git.kevux.org/?a=commitdiff_plain;h=b21e692671d2e3587b5b9464a63207d6a9745152;p=fll Update: Next minor version (0.7.0). --- diff --git a/build/documents/readme.bootstrap.txt b/build/documents/readme.bootstrap.txt index 7f71e8104..c79c16541 100644 --- a/build/documents/readme.bootstrap.txt +++ b/build/documents/readme.bootstrap.txt @@ -41,7 +41,7 @@ Bootstrap Readme Documentation: If one of the build sub-directories, such as includes, libraries, programs, and settings, is empty or missing after a successful build, then there are no files of that type to install. - Build Tree Structure Example (using the status_code-0.6.0 project)\: + Build Tree Structure Example (using the status_code-0.7.0 project)\: build/ ├── documents ├── includes @@ -51,8 +51,8 @@ Bootstrap Readme Documentation: │   ├── script │   ├── shared │   │   ├── libstatus_code.so -> libstatus_code.so.0 - │   │   ├── libstatus_code.so.0 -> libstatus_code.so.0.6.0 - │   │   └── libstatus_code.so.0.6.0 + │   │   ├── libstatus_code.so.0 -> libstatus_code.so.0.7.0 + │   │   └── libstatus_code.so.0.7.0 │   └── static │   └── libstatus_code.a ├── objects @@ -77,7 +77,7 @@ Bootstrap Readme Documentation: └── sources_settings.built - Work Tree Structure Example at /tmp/work (using the status_code-0.6.0 project)\: + Work Tree Structure Example at /tmp/work (using the status_code-0.7.0 project)\: /tmp/work/ ├── includes │   └── level_3 @@ -85,8 +85,8 @@ Bootstrap Readme Documentation: ├── libraries │   ├── shared │   │   ├── libstatus_code.so -> libstatus_code.so.0 - │   │   ├── libstatus_code.so.0 -> libstatus_code.so.0.6.0 - │   │   └── libstatus_code.so.0.6.0 + │   │   ├── libstatus_code.so.0 -> libstatus_code.so.0.7.0 + │   │   └── libstatus_code.so.0.7.0 │   └── static │   └── libstatus_code.a └── programs diff --git a/build/documents/readme.build.txt b/build/documents/readme.build.txt index 83e8227ca..de2157f0c 100644 --- a/build/documents/readme.build.txt +++ b/build/documents/readme.build.txt @@ -27,7 +27,7 @@ Build Readme Documentation: Build Example, using "make"\: fake make - Build Tree Structure Example (using the status_code-0.6.0 project)\: + Build Tree Structure Example (using the status_code-0.7.0 project)\: build/ ├── documents ├── includes @@ -37,8 +37,8 @@ Build Readme Documentation: │   ├── script │   ├── shared │   │   ├── libstatus_code.so -> libstatus_code.so.0 - │   │   ├── libstatus_code.so.0 -> libstatus_code.so.0.6.0 - │   │   └── libstatus_code.so.0.6.0 + │   │   ├── libstatus_code.so.0 -> libstatus_code.so.0.7.0 + │   │   └── libstatus_code.so.0.7.0 │   └── static │   └── libstatus_code.a ├── objects @@ -62,7 +62,7 @@ Build Readme Documentation: ├── sources_script.built └── sources_settings.built - Work Tree Structure Example at '/tmp/work' (using the status_code-0.6.0 project)\: + Work Tree Structure Example at '/tmp/work' (using the status_code-0.7.0 project)\: /tmp/work/ ├── includes │   └── level_3 @@ -70,8 +70,8 @@ Build Readme Documentation: ├── libraries │   ├── shared │   │   ├── libstatus_code.so -> libstatus_code.so.0 - │   │   ├── libstatus_code.so.0 -> libstatus_code.so.0.6.0 - │   │   └── libstatus_code.so.0.6.0 + │   │   ├── libstatus_code.so.0 -> libstatus_code.so.0.7.0 + │   │   └── libstatus_code.so.0.7.0 │   └── static │   └── libstatus_code.a └── programs diff --git a/build/documents/readme.txt b/build/documents/readme.txt index 3eb8df9a7..b229441d0 100644 --- a/build/documents/readme.txt +++ b/build/documents/readme.txt @@ -46,7 +46,7 @@ Readme Documentation: - The Featureless Make, which is a level_3 project provided by FLL. An example bootstrap script is provided (build/scripts/bootstrap-example.sh) is provided for to show how to build the FLL directly from source. - Use it as an example or explicitly call it (such as: "bash build/scripts/bootstrap-example.sh monolithic 0.6.0"). + Use it as an example or explicitly call it (such as: "bash build/scripts/bootstrap-example.sh monolithic 0.7.0"). See: dependencies for specific dependencies of this project. See: readme.bootstrap for bootstrap compiling (or just regular compiling) any part of the FLL and notes on installing. diff --git a/build/scripts/bootstrap-example.sh b/build/scripts/bootstrap-example.sh index ae219599d..2ed83e019 100644 --- a/build/scripts/bootstrap-example.sh +++ b/build/scripts/bootstrap-example.sh @@ -27,7 +27,7 @@ verbose_common= color= shared= static= -version=0.6.0 +version=0.7.0 clang= let i=2 diff --git a/build/scripts/bootstrap.sh b/build/scripts/bootstrap.sh index 1e28fb17d..d1b2a94bc 100644 --- a/build/scripts/bootstrap.sh +++ b/build/scripts/bootstrap.sh @@ -12,7 +12,7 @@ bootstrap_main() { local public_name="Simple FLL Bootstrap Script" local system_name=bootstrap local called_name=$(basename $0) - local version=0.6.0 + local version=0.7.0 local grab_next= local do_color=dark diff --git a/build/scripts/install.sh b/build/scripts/install.sh index 4ae5a7efb..8006e4907 100644 --- a/build/scripts/install.sh +++ b/build/scripts/install.sh @@ -12,7 +12,7 @@ install_main() { local public_name="Simple FLL Project Install Script" local system_name=install local called_name=$(basename $0) - local version=0.6.0 + local version=0.7.0 local grab_next= local do_color=dark diff --git a/build/scripts/package.sh b/build/scripts/package.sh index acd288662..714794b4a 100644 --- a/build/scripts/package.sh +++ b/build/scripts/package.sh @@ -10,7 +10,7 @@ package_main() { local public_name="Simple FLL Project Package Script" local system_name=package local called_name=$(basename $0) - local version=0.6.0 + local version=0.7.0 local grab_next= local do_color=dark diff --git a/build/scripts/test.sh b/build/scripts/test.sh index e7a47b027..2a17528a8 100644 --- a/build/scripts/test.sh +++ b/build/scripts/test.sh @@ -12,7 +12,7 @@ test_main() { local public_name="FLL Project Mass Test Script" local system_name=install local called_name=$(basename $0) - local version=0.6.0 + local version=0.7.0 local grab_next= local do_color=dark diff --git a/level_0/f_account/c/account.h b/level_0/f_account/c/account.h index b608f3905..a73903806 100644 --- a/level_0/f_account/c/account.h +++ b/level_0/f_account/c/account.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Account - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Provides account related functionality (users, groups, roles, etc..). diff --git a/level_0/f_account/c/account/common.h b/level_0/f_account/c/account/common.h index 8e980a7ed..00bd9abfb 100644 --- a/level_0/f_account/c/account/common.h +++ b/level_0/f_account/c/account/common.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Account - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Defines common data to be used for/by account related functionality. diff --git a/level_0/f_account/c/private-account.h b/level_0/f_account/c/private-account.h index 226342455..30adce143 100644 --- a/level_0/f_account/c/private-account.h +++ b/level_0/f_account/c/private-account.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Account - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * These are provided for internal reduction in redundant code. diff --git a/level_0/f_account/tests/unit/c/mock-account.h b/level_0/f_account/tests/unit/c/mock-account.h index e31aaeef3..81ccc1658 100644 --- a/level_0/f_account/tests/unit/c/mock-account.h +++ b/level_0/f_account/tests/unit/c/mock-account.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Account - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the account project. diff --git a/level_0/f_account/tests/unit/c/test-account-by_id.h b/level_0/f_account/tests/unit/c/test-account-by_id.h index 24a6b5be7..ace2245df 100644 --- a/level_0/f_account/tests/unit/c/test-account-by_id.h +++ b/level_0/f_account/tests/unit/c/test-account-by_id.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Account - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the account project. diff --git a/level_0/f_account/tests/unit/c/test-account-by_name.h b/level_0/f_account/tests/unit/c/test-account-by_name.h index a1966d1a6..acd600d43 100644 --- a/level_0/f_account/tests/unit/c/test-account-by_name.h +++ b/level_0/f_account/tests/unit/c/test-account-by_name.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Account - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the account project. diff --git a/level_0/f_account/tests/unit/c/test-account-group_id_by_name.h b/level_0/f_account/tests/unit/c/test-account-group_id_by_name.h index 054a93ed8..c4093a326 100644 --- a/level_0/f_account/tests/unit/c/test-account-group_id_by_name.h +++ b/level_0/f_account/tests/unit/c/test-account-group_id_by_name.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Account - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the account project. diff --git a/level_0/f_account/tests/unit/c/test-account-group_name_by_id.h b/level_0/f_account/tests/unit/c/test-account-group_name_by_id.h index f2f33b6da..73f6cc7f8 100644 --- a/level_0/f_account/tests/unit/c/test-account-group_name_by_id.h +++ b/level_0/f_account/tests/unit/c/test-account-group_name_by_id.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Account - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the account project. diff --git a/level_0/f_account/tests/unit/c/test-account-id_by_name.h b/level_0/f_account/tests/unit/c/test-account-id_by_name.h index abe57f8ba..d73880b23 100644 --- a/level_0/f_account/tests/unit/c/test-account-id_by_name.h +++ b/level_0/f_account/tests/unit/c/test-account-id_by_name.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Account - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the account project. diff --git a/level_0/f_account/tests/unit/c/test-account-name_by_id.h b/level_0/f_account/tests/unit/c/test-account-name_by_id.h index c16b842e7..12d853878 100644 --- a/level_0/f_account/tests/unit/c/test-account-name_by_id.h +++ b/level_0/f_account/tests/unit/c/test-account-name_by_id.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Account - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the account project. diff --git a/level_0/f_account/tests/unit/c/test-account.h b/level_0/f_account/tests/unit/c/test-account.h index 0b2eae830..ac704a82b 100644 --- a/level_0/f_account/tests/unit/c/test-account.h +++ b/level_0/f_account/tests/unit/c/test-account.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Account - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the account project. diff --git a/level_0/f_capability/c/capability.h b/level_0/f_capability/c/capability.h index 2efaa1d4b..2b36b26ce 100644 --- a/level_0/f_capability/c/capability.h +++ b/level_0/f_capability/c/capability.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Capability - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Provides capability related functionality. diff --git a/level_0/f_capability/c/capability/common.h b/level_0/f_capability/c/capability/common.h index cb13b0e79..97dd19188 100644 --- a/level_0/f_capability/c/capability/common.h +++ b/level_0/f_capability/c/capability/common.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Capability - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Defines common data to be used for/by capability related functionality. diff --git a/level_0/f_capability/tests/unit/c/mock-capability.h b/level_0/f_capability/tests/unit/c/mock-capability.h index ea2c843b8..295d0778e 100644 --- a/level_0/f_capability/tests/unit/c/mock-capability.h +++ b/level_0/f_capability/tests/unit/c/mock-capability.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Capability - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the capability project. diff --git a/level_0/f_capability/tests/unit/c/test-capability-ambient_get.h b/level_0/f_capability/tests/unit/c/test-capability-ambient_get.h index a812eb4d8..410685caa 100644 --- a/level_0/f_capability/tests/unit/c/test-capability-ambient_get.h +++ b/level_0/f_capability/tests/unit/c/test-capability-ambient_get.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Capability - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the capability project. diff --git a/level_0/f_capability/tests/unit/c/test-capability-ambient_reset.h b/level_0/f_capability/tests/unit/c/test-capability-ambient_reset.h index 675491fe9..cc67a2fc2 100644 --- a/level_0/f_capability/tests/unit/c/test-capability-ambient_reset.h +++ b/level_0/f_capability/tests/unit/c/test-capability-ambient_reset.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Capability - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the capability project. diff --git a/level_0/f_capability/tests/unit/c/test-capability-ambient_set.h b/level_0/f_capability/tests/unit/c/test-capability-ambient_set.h index ad69ed12d..46da86cc6 100644 --- a/level_0/f_capability/tests/unit/c/test-capability-ambient_set.h +++ b/level_0/f_capability/tests/unit/c/test-capability-ambient_set.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Capability - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the capability project. diff --git a/level_0/f_capability/tests/unit/c/test-capability-clear.h b/level_0/f_capability/tests/unit/c/test-capability-clear.h index d91215675..1f8b2c8b5 100644 --- a/level_0/f_capability/tests/unit/c/test-capability-clear.h +++ b/level_0/f_capability/tests/unit/c/test-capability-clear.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Capability - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the capability project. diff --git a/level_0/f_capability/tests/unit/c/test-capability-clear_flag.h b/level_0/f_capability/tests/unit/c/test-capability-clear_flag.h index 291183081..ee84c569e 100644 --- a/level_0/f_capability/tests/unit/c/test-capability-clear_flag.h +++ b/level_0/f_capability/tests/unit/c/test-capability-clear_flag.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Capability - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the capability project. diff --git a/level_0/f_capability/tests/unit/c/test-capability-compare.h b/level_0/f_capability/tests/unit/c/test-capability-compare.h index 82c33723e..32d0652d7 100644 --- a/level_0/f_capability/tests/unit/c/test-capability-compare.h +++ b/level_0/f_capability/tests/unit/c/test-capability-compare.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Capability - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the capability project. diff --git a/level_0/f_capability/tests/unit/c/test-capability-copy.h b/level_0/f_capability/tests/unit/c/test-capability-copy.h index cdcc8aabd..1e474412e 100644 --- a/level_0/f_capability/tests/unit/c/test-capability-copy.h +++ b/level_0/f_capability/tests/unit/c/test-capability-copy.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Capability - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the capability project. diff --git a/level_0/f_capability/tests/unit/c/test-capability-copy_external.h b/level_0/f_capability/tests/unit/c/test-capability-copy_external.h index 12bf4efd0..0d37eb9e6 100644 --- a/level_0/f_capability/tests/unit/c/test-capability-copy_external.h +++ b/level_0/f_capability/tests/unit/c/test-capability-copy_external.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Capability - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the capability project. diff --git a/level_0/f_capability/tests/unit/c/test-capability-copy_internal.h b/level_0/f_capability/tests/unit/c/test-capability-copy_internal.h index 5366bc67f..733cb90ab 100644 --- a/level_0/f_capability/tests/unit/c/test-capability-copy_internal.h +++ b/level_0/f_capability/tests/unit/c/test-capability-copy_internal.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Capability - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the capability project. diff --git a/level_0/f_capability/tests/unit/c/test-capability-delete.h b/level_0/f_capability/tests/unit/c/test-capability-delete.h index b4f6ff940..ba058a08f 100644 --- a/level_0/f_capability/tests/unit/c/test-capability-delete.h +++ b/level_0/f_capability/tests/unit/c/test-capability-delete.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Capability - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the capability project. diff --git a/level_0/f_capability/tests/unit/c/test-capability-file_descriptor_get.h b/level_0/f_capability/tests/unit/c/test-capability-file_descriptor_get.h index 5fb90307d..47434d01e 100644 --- a/level_0/f_capability/tests/unit/c/test-capability-file_descriptor_get.h +++ b/level_0/f_capability/tests/unit/c/test-capability-file_descriptor_get.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Capability - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the capability project. diff --git a/level_0/f_capability/tests/unit/c/test-capability-file_descriptor_set.h b/level_0/f_capability/tests/unit/c/test-capability-file_descriptor_set.h index d6bf8d0ca..10e218344 100644 --- a/level_0/f_capability/tests/unit/c/test-capability-file_descriptor_set.h +++ b/level_0/f_capability/tests/unit/c/test-capability-file_descriptor_set.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Capability - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the capability project. diff --git a/level_0/f_capability/tests/unit/c/test-capability-file_get.h b/level_0/f_capability/tests/unit/c/test-capability-file_get.h index 421c7952d..071b5ede3 100644 --- a/level_0/f_capability/tests/unit/c/test-capability-file_get.h +++ b/level_0/f_capability/tests/unit/c/test-capability-file_get.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Capability - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the capability project. diff --git a/level_0/f_capability/tests/unit/c/test-capability-file_set.h b/level_0/f_capability/tests/unit/c/test-capability-file_set.h index d9974b9bd..b1ec21599 100644 --- a/level_0/f_capability/tests/unit/c/test-capability-file_set.h +++ b/level_0/f_capability/tests/unit/c/test-capability-file_set.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Capability - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the capability project. diff --git a/level_0/f_capability/tests/unit/c/test-capability-flag_get.h b/level_0/f_capability/tests/unit/c/test-capability-flag_get.h index 427cef4b4..7cd96afb5 100644 --- a/level_0/f_capability/tests/unit/c/test-capability-flag_get.h +++ b/level_0/f_capability/tests/unit/c/test-capability-flag_get.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Capability - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the capability project. diff --git a/level_0/f_capability/tests/unit/c/test-capability-flag_set.h b/level_0/f_capability/tests/unit/c/test-capability-flag_set.h index 9f566c32f..2cd0f2a50 100644 --- a/level_0/f_capability/tests/unit/c/test-capability-flag_set.h +++ b/level_0/f_capability/tests/unit/c/test-capability-flag_set.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Capability - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the capability project. diff --git a/level_0/f_capability/tests/unit/c/test-capability-from_name.h b/level_0/f_capability/tests/unit/c/test-capability-from_name.h index d0d22887e..7c897d53f 100644 --- a/level_0/f_capability/tests/unit/c/test-capability-from_name.h +++ b/level_0/f_capability/tests/unit/c/test-capability-from_name.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Capability - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the capability project. diff --git a/level_0/f_capability/tests/unit/c/test-capability-from_text.h b/level_0/f_capability/tests/unit/c/test-capability-from_text.h index f1e9864e0..945e78b2d 100644 --- a/level_0/f_capability/tests/unit/c/test-capability-from_text.h +++ b/level_0/f_capability/tests/unit/c/test-capability-from_text.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Capability - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the capability project. diff --git a/level_0/f_capability/tests/unit/c/test-capability-groups_set.h b/level_0/f_capability/tests/unit/c/test-capability-groups_set.h index f1f7f66fe..94ee5d27e 100644 --- a/level_0/f_capability/tests/unit/c/test-capability-groups_set.h +++ b/level_0/f_capability/tests/unit/c/test-capability-groups_set.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Capability - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the capability project. diff --git a/level_0/f_capability/tests/unit/c/test-capability-initialize.h b/level_0/f_capability/tests/unit/c/test-capability-initialize.h index 6bd0bef0a..c9983bb7c 100644 --- a/level_0/f_capability/tests/unit/c/test-capability-initialize.h +++ b/level_0/f_capability/tests/unit/c/test-capability-initialize.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Capability - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the capability project. diff --git a/level_0/f_capability/tests/unit/c/test-capability-mode_get.h b/level_0/f_capability/tests/unit/c/test-capability-mode_get.h index defcfadf4..df5d487f4 100644 --- a/level_0/f_capability/tests/unit/c/test-capability-mode_get.h +++ b/level_0/f_capability/tests/unit/c/test-capability-mode_get.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Capability - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the capability project. diff --git a/level_0/f_capability/tests/unit/c/test-capability-mode_get_name.h b/level_0/f_capability/tests/unit/c/test-capability-mode_get_name.h index 4e843790c..8f9069440 100644 --- a/level_0/f_capability/tests/unit/c/test-capability-mode_get_name.h +++ b/level_0/f_capability/tests/unit/c/test-capability-mode_get_name.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Capability - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the capability project. diff --git a/level_0/f_capability/tests/unit/c/test-capability-mode_set.h b/level_0/f_capability/tests/unit/c/test-capability-mode_set.h index 4a5b7a4af..231481219 100644 --- a/level_0/f_capability/tests/unit/c/test-capability-mode_set.h +++ b/level_0/f_capability/tests/unit/c/test-capability-mode_set.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Capability - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the capability project. diff --git a/level_0/f_capability/tests/unit/c/test-capability-owner_get.h b/level_0/f_capability/tests/unit/c/test-capability-owner_get.h index 3d5c22999..8225ebf2e 100644 --- a/level_0/f_capability/tests/unit/c/test-capability-owner_get.h +++ b/level_0/f_capability/tests/unit/c/test-capability-owner_get.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Capability - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the capability project. diff --git a/level_0/f_capability/tests/unit/c/test-capability-owner_set.h b/level_0/f_capability/tests/unit/c/test-capability-owner_set.h index a4c9dea76..a88ba230c 100644 --- a/level_0/f_capability/tests/unit/c/test-capability-owner_set.h +++ b/level_0/f_capability/tests/unit/c/test-capability-owner_set.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Capability - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the capability project. diff --git a/level_0/f_capability/tests/unit/c/test-capability-process_bound_drop.h b/level_0/f_capability/tests/unit/c/test-capability-process_bound_drop.h index d99923fba..78c5af4e6 100644 --- a/level_0/f_capability/tests/unit/c/test-capability-process_bound_drop.h +++ b/level_0/f_capability/tests/unit/c/test-capability-process_bound_drop.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Capability - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the capability project. diff --git a/level_0/f_capability/tests/unit/c/test-capability-process_bound_get.h b/level_0/f_capability/tests/unit/c/test-capability-process_bound_get.h index 9c9c81ae0..8043a6410 100644 --- a/level_0/f_capability/tests/unit/c/test-capability-process_bound_get.h +++ b/level_0/f_capability/tests/unit/c/test-capability-process_bound_get.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Capability - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the capability project. diff --git a/level_0/f_capability/tests/unit/c/test-capability-process_get.h b/level_0/f_capability/tests/unit/c/test-capability-process_get.h index de23317bb..d7fa093bc 100644 --- a/level_0/f_capability/tests/unit/c/test-capability-process_get.h +++ b/level_0/f_capability/tests/unit/c/test-capability-process_get.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Capability - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the capability project. diff --git a/level_0/f_capability/tests/unit/c/test-capability-process_get_by_id.h b/level_0/f_capability/tests/unit/c/test-capability-process_get_by_id.h index e5adc9564..08d03a077 100644 --- a/level_0/f_capability/tests/unit/c/test-capability-process_get_by_id.h +++ b/level_0/f_capability/tests/unit/c/test-capability-process_get_by_id.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Capability - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the capability project. diff --git a/level_0/f_capability/tests/unit/c/test-capability-process_set.h b/level_0/f_capability/tests/unit/c/test-capability-process_set.h index f08b42a91..a02bba2d7 100644 --- a/level_0/f_capability/tests/unit/c/test-capability-process_set.h +++ b/level_0/f_capability/tests/unit/c/test-capability-process_set.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Capability - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the capability project. diff --git a/level_0/f_capability/tests/unit/c/test-capability-security_bits_get.h b/level_0/f_capability/tests/unit/c/test-capability-security_bits_get.h index 108901a1e..e645d5010 100644 --- a/level_0/f_capability/tests/unit/c/test-capability-security_bits_get.h +++ b/level_0/f_capability/tests/unit/c/test-capability-security_bits_get.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Capability - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the capability project. diff --git a/level_0/f_capability/tests/unit/c/test-capability-security_bits_set.h b/level_0/f_capability/tests/unit/c/test-capability-security_bits_set.h index 122e44b7f..31360e2e0 100644 --- a/level_0/f_capability/tests/unit/c/test-capability-security_bits_set.h +++ b/level_0/f_capability/tests/unit/c/test-capability-security_bits_set.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Capability - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the capability project. diff --git a/level_0/f_capability/tests/unit/c/test-capability-size.h b/level_0/f_capability/tests/unit/c/test-capability-size.h index f40020817..e016a6c90 100644 --- a/level_0/f_capability/tests/unit/c/test-capability-size.h +++ b/level_0/f_capability/tests/unit/c/test-capability-size.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Capability - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the capability project. diff --git a/level_0/f_capability/tests/unit/c/test-capability-supported.h b/level_0/f_capability/tests/unit/c/test-capability-supported.h index a1946cbcc..656e7501b 100644 --- a/level_0/f_capability/tests/unit/c/test-capability-supported.h +++ b/level_0/f_capability/tests/unit/c/test-capability-supported.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Capability - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the capability project. diff --git a/level_0/f_capability/tests/unit/c/test-capability-supported_ambient.h b/level_0/f_capability/tests/unit/c/test-capability-supported_ambient.h index dc02d04fb..858568649 100644 --- a/level_0/f_capability/tests/unit/c/test-capability-supported_ambient.h +++ b/level_0/f_capability/tests/unit/c/test-capability-supported_ambient.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Capability - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the capability project. diff --git a/level_0/f_capability/tests/unit/c/test-capability-supported_code.h b/level_0/f_capability/tests/unit/c/test-capability-supported_code.h index 780c7e5a8..7026b567f 100644 --- a/level_0/f_capability/tests/unit/c/test-capability-supported_code.h +++ b/level_0/f_capability/tests/unit/c/test-capability-supported_code.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Capability - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the capability project. diff --git a/level_0/f_capability/tests/unit/c/test-capability-to_name.h b/level_0/f_capability/tests/unit/c/test-capability-to_name.h index 4c8b7f1ce..f4e56068c 100644 --- a/level_0/f_capability/tests/unit/c/test-capability-to_name.h +++ b/level_0/f_capability/tests/unit/c/test-capability-to_name.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Capability - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the capability project. diff --git a/level_0/f_capability/tests/unit/c/test-capability-to_text.h b/level_0/f_capability/tests/unit/c/test-capability-to_text.h index 82d0849b1..a7dc11f78 100644 --- a/level_0/f_capability/tests/unit/c/test-capability-to_text.h +++ b/level_0/f_capability/tests/unit/c/test-capability-to_text.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Capability - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the capability project. diff --git a/level_0/f_capability/tests/unit/c/test-capability-user_set.h b/level_0/f_capability/tests/unit/c/test-capability-user_set.h index 46dee85eb..8f8d046cf 100644 --- a/level_0/f_capability/tests/unit/c/test-capability-user_set.h +++ b/level_0/f_capability/tests/unit/c/test-capability-user_set.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Capability - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the capability project. diff --git a/level_0/f_capability/tests/unit/c/test-capability.h b/level_0/f_capability/tests/unit/c/test-capability.h index 365e2af8a..c69263523 100644 --- a/level_0/f_capability/tests/unit/c/test-capability.h +++ b/level_0/f_capability/tests/unit/c/test-capability.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Capability - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the capability project. diff --git a/level_0/f_color/c/color.h b/level_0/f_color/c/color.h index 554f31172..8292d011b 100644 --- a/level_0/f_color/c/color.h +++ b/level_0/f_color/c/color.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Color - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Provide basic color output support (linux & xterm). diff --git a/level_0/f_color/c/color/common.h b/level_0/f_color/c/color/common.h index d3103cb12..4fd289aeb 100644 --- a/level_0/f_color/c/color/common.h +++ b/level_0/f_color/c/color/common.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Color - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Defines common data to be used for/by project color. diff --git a/level_0/f_color/c/private-color.h b/level_0/f_color/c/private-color.h index a18da8cd0..b03607534 100644 --- a/level_0/f_color/c/private-color.h +++ b/level_0/f_color/c/private-color.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Color - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * These are provided for internal reduction in redundant code. diff --git a/level_0/f_color/tests/unit/c/mock-color.h b/level_0/f_color/tests/unit/c/mock-color.h index fab373bf9..4bd2b52cb 100644 --- a/level_0/f_color/tests/unit/c/mock-color.h +++ b/level_0/f_color/tests/unit/c/mock-color.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Color - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the color project. diff --git a/level_0/f_color/tests/unit/c/test-color-context_delete.h b/level_0/f_color/tests/unit/c/test-color-context_delete.h index f84e9e8a0..f23b70a4c 100644 --- a/level_0/f_color/tests/unit/c/test-color-context_delete.h +++ b/level_0/f_color/tests/unit/c/test-color-context_delete.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Color - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the color project. diff --git a/level_0/f_color/tests/unit/c/test-color-context_destroy.h b/level_0/f_color/tests/unit/c/test-color-context_destroy.h index d6e31b101..e64fce69d 100644 --- a/level_0/f_color/tests/unit/c/test-color-context_destroy.h +++ b/level_0/f_color/tests/unit/c/test-color-context_destroy.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Color - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the color project. diff --git a/level_0/f_color/tests/unit/c/test-color-load_context.h b/level_0/f_color/tests/unit/c/test-color-load_context.h index 886a0d9b2..857453e63 100644 --- a/level_0/f_color/tests/unit/c/test-color-load_context.h +++ b/level_0/f_color/tests/unit/c/test-color-load_context.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Color - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the color project. diff --git a/level_0/f_color/tests/unit/c/test-color-save_1.h b/level_0/f_color/tests/unit/c/test-color-save_1.h index 17c4e490d..4a25de553 100644 --- a/level_0/f_color/tests/unit/c/test-color-save_1.h +++ b/level_0/f_color/tests/unit/c/test-color-save_1.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Color - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the color project. diff --git a/level_0/f_color/tests/unit/c/test-color-save_2.h b/level_0/f_color/tests/unit/c/test-color-save_2.h index 61842840d..047cc44ec 100644 --- a/level_0/f_color/tests/unit/c/test-color-save_2.h +++ b/level_0/f_color/tests/unit/c/test-color-save_2.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Color - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the color project. diff --git a/level_0/f_color/tests/unit/c/test-color-save_3.h b/level_0/f_color/tests/unit/c/test-color-save_3.h index 1659cda18..bd31444fa 100644 --- a/level_0/f_color/tests/unit/c/test-color-save_3.h +++ b/level_0/f_color/tests/unit/c/test-color-save_3.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Color - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the color project. diff --git a/level_0/f_color/tests/unit/c/test-color-save_4.h b/level_0/f_color/tests/unit/c/test-color-save_4.h index 9763fc8d0..5f41e5ddb 100644 --- a/level_0/f_color/tests/unit/c/test-color-save_4.h +++ b/level_0/f_color/tests/unit/c/test-color-save_4.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Color - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the color project. diff --git a/level_0/f_color/tests/unit/c/test-color-save_5.h b/level_0/f_color/tests/unit/c/test-color-save_5.h index 36f601080..48f9c47a5 100644 --- a/level_0/f_color/tests/unit/c/test-color-save_5.h +++ b/level_0/f_color/tests/unit/c/test-color-save_5.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Color - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the color project. diff --git a/level_0/f_color/tests/unit/c/test-color.h b/level_0/f_color/tests/unit/c/test-color.h index 2bc4e1fdd..fa8da657a 100644 --- a/level_0/f_color/tests/unit/c/test-color.h +++ b/level_0/f_color/tests/unit/c/test-color.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Color - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the color project. diff --git a/level_0/f_console/c/console.h b/level_0/f_console/c/console.h index 4f6df8b7a..33129d68b 100644 --- a/level_0/f_console/c/console.h +++ b/level_0/f_console/c/console.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Console - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Some console input/output commands. diff --git a/level_0/f_console/c/console/common.h b/level_0/f_console/c/console/common.h index c7100d881..82a063b0b 100644 --- a/level_0/f_console/c/console/common.h +++ b/level_0/f_console/c/console/common.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Console - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Defines common data to be used for/by project console. diff --git a/level_0/f_console/tests/unit/c/test-console-environment_process.h b/level_0/f_console/tests/unit/c/test-console-environment_process.h index b70591374..897f4949d 100644 --- a/level_0/f_console/tests/unit/c/test-console-environment_process.h +++ b/level_0/f_console/tests/unit/c/test-console-environment_process.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Console - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the console project. diff --git a/level_0/f_console/tests/unit/c/test-console-identify.h b/level_0/f_console/tests/unit/c/test-console-identify.h index 88eb2715c..c76a36a1a 100644 --- a/level_0/f_console/tests/unit/c/test-console-identify.h +++ b/level_0/f_console/tests/unit/c/test-console-identify.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Console - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the console project. diff --git a/level_0/f_console/tests/unit/c/test-console-parameter_prioritize_left.h b/level_0/f_console/tests/unit/c/test-console-parameter_prioritize_left.h index bfb5b955b..27e5e911f 100644 --- a/level_0/f_console/tests/unit/c/test-console-parameter_prioritize_left.h +++ b/level_0/f_console/tests/unit/c/test-console-parameter_prioritize_left.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Console - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the console project. diff --git a/level_0/f_console/tests/unit/c/test-console-parameter_prioritize_right.h b/level_0/f_console/tests/unit/c/test-console-parameter_prioritize_right.h index c07b74bd1..6b1d1e577 100644 --- a/level_0/f_console/tests/unit/c/test-console-parameter_prioritize_right.h +++ b/level_0/f_console/tests/unit/c/test-console-parameter_prioritize_right.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Console - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the console project. diff --git a/level_0/f_console/tests/unit/c/test-console-parameter_process.h b/level_0/f_console/tests/unit/c/test-console-parameter_process.h index 1b8e3e45c..44c606ee4 100644 --- a/level_0/f_console/tests/unit/c/test-console-parameter_process.h +++ b/level_0/f_console/tests/unit/c/test-console-parameter_process.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Console - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the console project. diff --git a/level_0/f_console/tests/unit/c/test-console-parameters_delete.h b/level_0/f_console/tests/unit/c/test-console-parameters_delete.h index d670c4a0b..4b3298c6b 100644 --- a/level_0/f_console/tests/unit/c/test-console-parameters_delete.h +++ b/level_0/f_console/tests/unit/c/test-console-parameters_delete.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Console - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the console project. diff --git a/level_0/f_console/tests/unit/c/test-console-parameters_destroy.h b/level_0/f_console/tests/unit/c/test-console-parameters_destroy.h index daedbaf78..d4348e4c9 100644 --- a/level_0/f_console/tests/unit/c/test-console-parameters_destroy.h +++ b/level_0/f_console/tests/unit/c/test-console-parameters_destroy.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Console - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the console project. diff --git a/level_0/f_console/tests/unit/c/test-console.h b/level_0/f_console/tests/unit/c/test-console.h index 9d9afe850..563fd6d8a 100644 --- a/level_0/f_console/tests/unit/c/test-console.h +++ b/level_0/f_console/tests/unit/c/test-console.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Console - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the console project. diff --git a/level_0/f_control_group/c/control_group.h b/level_0/f_control_group/c/control_group.h index 8c2cff2a6..af40859cf 100644 --- a/level_0/f_control_group/c/control_group.h +++ b/level_0/f_control_group/c/control_group.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Control Group - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Provides control group (cgroup) related functionality. diff --git a/level_0/f_control_group/c/control_group/common.h b/level_0/f_control_group/c/control_group/common.h index b38ca9c6c..5389ec966 100644 --- a/level_0/f_control_group/c/control_group/common.h +++ b/level_0/f_control_group/c/control_group/common.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Control Group - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Defines common data to be used for/by control group (cgroup) related functionality. diff --git a/level_0/f_control_group/tests/unit/c/test-control_group-copy.h b/level_0/f_control_group/tests/unit/c/test-control_group-copy.h index 8895b4118..bb4ed4d00 100644 --- a/level_0/f_control_group/tests/unit/c/test-control_group-copy.h +++ b/level_0/f_control_group/tests/unit/c/test-control_group-copy.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Control Group - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the control group project. diff --git a/level_0/f_control_group/tests/unit/c/test-control_group.h b/level_0/f_control_group/tests/unit/c/test-control_group.h index f95da3219..86cfb1d56 100644 --- a/level_0/f_control_group/tests/unit/c/test-control_group.h +++ b/level_0/f_control_group/tests/unit/c/test-control_group.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Control Group - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the control group project. diff --git a/level_0/f_conversion/c/conversion.h b/level_0/f_conversion/c/conversion.h index bf8756c3b..b53465ca9 100644 --- a/level_0/f_conversion/c/conversion.h +++ b/level_0/f_conversion/c/conversion.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Conversion - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Provide means to convert one data type to another, such as a string to an integer. diff --git a/level_0/f_conversion/c/conversion/common.h b/level_0/f_conversion/c/conversion/common.h index 5f6815b0e..3f417e038 100644 --- a/level_0/f_conversion/c/conversion/common.h +++ b/level_0/f_conversion/c/conversion/common.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Conversion - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Defines common data to be used for/by project conversion. diff --git a/level_0/f_conversion/c/private-conversion.h b/level_0/f_conversion/c/private-conversion.h index ba1dd5b1e..5d035fd1a 100644 --- a/level_0/f_conversion/c/private-conversion.h +++ b/level_0/f_conversion/c/private-conversion.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Conversion - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * These are provided for internal reduction in redundant code. diff --git a/level_0/f_conversion/tests/unit/c/mock-conversion.h b/level_0/f_conversion/tests/unit/c/mock-conversion.h index b0fd080b0..670fc0536 100644 --- a/level_0/f_conversion/tests/unit/c/mock-conversion.h +++ b/level_0/f_conversion/tests/unit/c/mock-conversion.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Conversion - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the conversion project. diff --git a/level_0/f_conversion/tests/unit/c/test-conversion-character_is_binary.h b/level_0/f_conversion/tests/unit/c/test-conversion-character_is_binary.h index d290b5870..62301e624 100644 --- a/level_0/f_conversion/tests/unit/c/test-conversion-character_is_binary.h +++ b/level_0/f_conversion/tests/unit/c/test-conversion-character_is_binary.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Conversion - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the conversion project. diff --git a/level_0/f_conversion/tests/unit/c/test-conversion-character_is_decimal.h b/level_0/f_conversion/tests/unit/c/test-conversion-character_is_decimal.h index aa70fcd96..bd6bab5ae 100644 --- a/level_0/f_conversion/tests/unit/c/test-conversion-character_is_decimal.h +++ b/level_0/f_conversion/tests/unit/c/test-conversion-character_is_decimal.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Conversion - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the conversion project. diff --git a/level_0/f_conversion/tests/unit/c/test-conversion-character_is_duodecimal.h b/level_0/f_conversion/tests/unit/c/test-conversion-character_is_duodecimal.h index 46a122378..daca16803 100644 --- a/level_0/f_conversion/tests/unit/c/test-conversion-character_is_duodecimal.h +++ b/level_0/f_conversion/tests/unit/c/test-conversion-character_is_duodecimal.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Conversion - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the conversion project. diff --git a/level_0/f_conversion/tests/unit/c/test-conversion-character_is_hexidecimal.h b/level_0/f_conversion/tests/unit/c/test-conversion-character_is_hexidecimal.h index a974ba3b0..45626f622 100644 --- a/level_0/f_conversion/tests/unit/c/test-conversion-character_is_hexidecimal.h +++ b/level_0/f_conversion/tests/unit/c/test-conversion-character_is_hexidecimal.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Conversion - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the conversion project. diff --git a/level_0/f_conversion/tests/unit/c/test-conversion-character_is_octal.h b/level_0/f_conversion/tests/unit/c/test-conversion-character_is_octal.h index e9ee604d2..aff71922b 100644 --- a/level_0/f_conversion/tests/unit/c/test-conversion-character_is_octal.h +++ b/level_0/f_conversion/tests/unit/c/test-conversion-character_is_octal.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Conversion - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the conversion project. diff --git a/level_0/f_conversion/tests/unit/c/test-conversion-character_to_binary.h b/level_0/f_conversion/tests/unit/c/test-conversion-character_to_binary.h index 4e8f0658b..a41f83ad5 100644 --- a/level_0/f_conversion/tests/unit/c/test-conversion-character_to_binary.h +++ b/level_0/f_conversion/tests/unit/c/test-conversion-character_to_binary.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Conversion - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the conversion project. diff --git a/level_0/f_conversion/tests/unit/c/test-conversion-character_to_decimal.h b/level_0/f_conversion/tests/unit/c/test-conversion-character_to_decimal.h index 69a84a5d1..92a57bf65 100644 --- a/level_0/f_conversion/tests/unit/c/test-conversion-character_to_decimal.h +++ b/level_0/f_conversion/tests/unit/c/test-conversion-character_to_decimal.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Conversion - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the conversion project. diff --git a/level_0/f_conversion/tests/unit/c/test-conversion-character_to_duodecimal.h b/level_0/f_conversion/tests/unit/c/test-conversion-character_to_duodecimal.h index 97532fc0c..6d11f9806 100644 --- a/level_0/f_conversion/tests/unit/c/test-conversion-character_to_duodecimal.h +++ b/level_0/f_conversion/tests/unit/c/test-conversion-character_to_duodecimal.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Conversion - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the conversion project. diff --git a/level_0/f_conversion/tests/unit/c/test-conversion-character_to_hexidecimal.h b/level_0/f_conversion/tests/unit/c/test-conversion-character_to_hexidecimal.h index 31583e1bc..cac361ace 100644 --- a/level_0/f_conversion/tests/unit/c/test-conversion-character_to_hexidecimal.h +++ b/level_0/f_conversion/tests/unit/c/test-conversion-character_to_hexidecimal.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Conversion - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the conversion project. diff --git a/level_0/f_conversion/tests/unit/c/test-conversion-character_to_octal.h b/level_0/f_conversion/tests/unit/c/test-conversion-character_to_octal.h index f5100aaa4..dd5a93693 100644 --- a/level_0/f_conversion/tests/unit/c/test-conversion-character_to_octal.h +++ b/level_0/f_conversion/tests/unit/c/test-conversion-character_to_octal.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Conversion - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the conversion project. diff --git a/level_0/f_conversion/tests/unit/c/test-conversion-number_signed_print.h b/level_0/f_conversion/tests/unit/c/test-conversion-number_signed_print.h index 2664e2ff7..6480ae78d 100644 --- a/level_0/f_conversion/tests/unit/c/test-conversion-number_signed_print.h +++ b/level_0/f_conversion/tests/unit/c/test-conversion-number_signed_print.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Conversion - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the conversion project. diff --git a/level_0/f_conversion/tests/unit/c/test-conversion-number_signed_to_string.h b/level_0/f_conversion/tests/unit/c/test-conversion-number_signed_to_string.h index 448492b33..00727f43a 100644 --- a/level_0/f_conversion/tests/unit/c/test-conversion-number_signed_to_string.h +++ b/level_0/f_conversion/tests/unit/c/test-conversion-number_signed_to_string.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Conversion - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the conversion project. diff --git a/level_0/f_conversion/tests/unit/c/test-conversion-number_unsigned_print.h b/level_0/f_conversion/tests/unit/c/test-conversion-number_unsigned_print.h index aff4bb24a..4826bd3c1 100644 --- a/level_0/f_conversion/tests/unit/c/test-conversion-number_unsigned_print.h +++ b/level_0/f_conversion/tests/unit/c/test-conversion-number_unsigned_print.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Conversion - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the conversion project. diff --git a/level_0/f_conversion/tests/unit/c/test-conversion-number_unsigned_to_string.h b/level_0/f_conversion/tests/unit/c/test-conversion-number_unsigned_to_string.h index 74dd08f39..2a5b43824 100644 --- a/level_0/f_conversion/tests/unit/c/test-conversion-number_unsigned_to_string.h +++ b/level_0/f_conversion/tests/unit/c/test-conversion-number_unsigned_to_string.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Conversion - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the conversion project. diff --git a/level_0/f_conversion/tests/unit/c/test-conversion.h b/level_0/f_conversion/tests/unit/c/test-conversion.h index c0f06cd60..5d7c10108 100644 --- a/level_0/f_conversion/tests/unit/c/test-conversion.h +++ b/level_0/f_conversion/tests/unit/c/test-conversion.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Conversion - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the conversion project. diff --git a/level_0/f_directory/c/directory.h b/level_0/f_directory/c/directory.h index cb8925830..49be0c786 100644 --- a/level_0/f_directory/c/directory.h +++ b/level_0/f_directory/c/directory.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Directory - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Provides operations for directory handling. diff --git a/level_0/f_directory/c/directory/common.h b/level_0/f_directory/c/directory/common.h index 0056087e8..ccc1ccd0a 100644 --- a/level_0/f_directory/c/directory/common.h +++ b/level_0/f_directory/c/directory/common.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Directory - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Defines common data to be used for/by project directory. diff --git a/level_0/f_directory/c/directory/type.h b/level_0/f_directory/c/directory/type.h index ec048d3fb..821fa7999 100644 --- a/level_0/f_directory/c/directory/type.h +++ b/level_0/f_directory/c/directory/type.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Directory - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Defines type-specific data to be used for/by project directory. diff --git a/level_0/f_directory/c/private-directory.h b/level_0/f_directory/c/private-directory.h index 11dade2d0..1c7586014 100644 --- a/level_0/f_directory/c/private-directory.h +++ b/level_0/f_directory/c/private-directory.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Directory - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Provides operations for directory handling. diff --git a/level_0/f_directory/tests/unit/c/mock-directory.h b/level_0/f_directory/tests/unit/c/mock-directory.h index 1a34b8c18..e1fee5cb3 100644 --- a/level_0/f_directory/tests/unit/c/mock-directory.h +++ b/level_0/f_directory/tests/unit/c/mock-directory.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Directory - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the directory project. diff --git a/level_0/f_directory/tests/unit/c/test-directory-create.h b/level_0/f_directory/tests/unit/c/test-directory-create.h index 5f32ebc4f..5f35b3327 100644 --- a/level_0/f_directory/tests/unit/c/test-directory-create.h +++ b/level_0/f_directory/tests/unit/c/test-directory-create.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Directory - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the directory project. diff --git a/level_0/f_directory/tests/unit/c/test-directory-create_at.h b/level_0/f_directory/tests/unit/c/test-directory-create_at.h index 8192842d3..1441167f0 100644 --- a/level_0/f_directory/tests/unit/c/test-directory-create_at.h +++ b/level_0/f_directory/tests/unit/c/test-directory-create_at.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Directory - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the directory project. diff --git a/level_0/f_directory/tests/unit/c/test-directory-exists.h b/level_0/f_directory/tests/unit/c/test-directory-exists.h index 59b9cc193..1b9eb578e 100644 --- a/level_0/f_directory/tests/unit/c/test-directory-exists.h +++ b/level_0/f_directory/tests/unit/c/test-directory-exists.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Directory - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the directory project. diff --git a/level_0/f_directory/tests/unit/c/test-directory-exists_at.h b/level_0/f_directory/tests/unit/c/test-directory-exists_at.h index d3ef9e39a..fea5ea85e 100644 --- a/level_0/f_directory/tests/unit/c/test-directory-exists_at.h +++ b/level_0/f_directory/tests/unit/c/test-directory-exists_at.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Directory - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the directory project. diff --git a/level_0/f_directory/tests/unit/c/test-directory-is.h b/level_0/f_directory/tests/unit/c/test-directory-is.h index 0e011ee1d..10b7ce9ed 100644 --- a/level_0/f_directory/tests/unit/c/test-directory-is.h +++ b/level_0/f_directory/tests/unit/c/test-directory-is.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Directory - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the directory project. diff --git a/level_0/f_directory/tests/unit/c/test-directory-is_at.h b/level_0/f_directory/tests/unit/c/test-directory-is_at.h index 56995df31..0f63853f1 100644 --- a/level_0/f_directory/tests/unit/c/test-directory-is_at.h +++ b/level_0/f_directory/tests/unit/c/test-directory-is_at.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Directory - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the directory project. diff --git a/level_0/f_directory/tests/unit/c/test-directory-list.h b/level_0/f_directory/tests/unit/c/test-directory-list.h index 4549e6569..a5a520af9 100644 --- a/level_0/f_directory/tests/unit/c/test-directory-list.h +++ b/level_0/f_directory/tests/unit/c/test-directory-list.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Directory - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the directory project. diff --git a/level_0/f_directory/tests/unit/c/test-directory-open.h b/level_0/f_directory/tests/unit/c/test-directory-open.h index 65f88925c..eec6e504f 100644 --- a/level_0/f_directory/tests/unit/c/test-directory-open.h +++ b/level_0/f_directory/tests/unit/c/test-directory-open.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Directory - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the directory project. diff --git a/level_0/f_directory/tests/unit/c/test-directory-open_at.h b/level_0/f_directory/tests/unit/c/test-directory-open_at.h index 041da4898..659b97df9 100644 --- a/level_0/f_directory/tests/unit/c/test-directory-open_at.h +++ b/level_0/f_directory/tests/unit/c/test-directory-open_at.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Directory - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the directory project. diff --git a/level_0/f_directory/tests/unit/c/test-directory-remove.h b/level_0/f_directory/tests/unit/c/test-directory-remove.h index 37f70478e..4ca18a058 100644 --- a/level_0/f_directory/tests/unit/c/test-directory-remove.h +++ b/level_0/f_directory/tests/unit/c/test-directory-remove.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Directory - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the directory project. diff --git a/level_0/f_directory/tests/unit/c/test-directory-remove_custom.h b/level_0/f_directory/tests/unit/c/test-directory-remove_custom.h index b8440c4ad..c2ec74015 100644 --- a/level_0/f_directory/tests/unit/c/test-directory-remove_custom.h +++ b/level_0/f_directory/tests/unit/c/test-directory-remove_custom.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Directory - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the directory project. diff --git a/level_0/f_directory/tests/unit/c/test-directory-touch.h b/level_0/f_directory/tests/unit/c/test-directory-touch.h index 320d05cd6..b3af24762 100644 --- a/level_0/f_directory/tests/unit/c/test-directory-touch.h +++ b/level_0/f_directory/tests/unit/c/test-directory-touch.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Directory - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the directory project. diff --git a/level_0/f_directory/tests/unit/c/test-directory-touch_at.h b/level_0/f_directory/tests/unit/c/test-directory-touch_at.h index 150300fa8..23706aa30 100644 --- a/level_0/f_directory/tests/unit/c/test-directory-touch_at.h +++ b/level_0/f_directory/tests/unit/c/test-directory-touch_at.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Directory - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the directory project. diff --git a/level_0/f_directory/tests/unit/c/test-directory.h b/level_0/f_directory/tests/unit/c/test-directory.h index 352d76fdd..f5dc19ad4 100644 --- a/level_0/f_directory/tests/unit/c/test-directory.h +++ b/level_0/f_directory/tests/unit/c/test-directory.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Directory - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the directory project. diff --git a/level_0/f_environment/c/environment.h b/level_0/f_environment/c/environment.h index e00fcf101..dfb8045b8 100644 --- a/level_0/f_environment/c/environment.h +++ b/level_0/f_environment/c/environment.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Environment - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Provides environment processing functionality, such as environment variable handling. diff --git a/level_0/f_environment/c/environment/common.h b/level_0/f_environment/c/environment/common.h index d5c29932b..88651d397 100644 --- a/level_0/f_environment/c/environment/common.h +++ b/level_0/f_environment/c/environment/common.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Environment - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Defines common data to be used for/by environment console. diff --git a/level_0/f_environment/tests/unit/c/mock-environment.h b/level_0/f_environment/tests/unit/c/mock-environment.h index 8acf7cfd3..af3c0b461 100644 --- a/level_0/f_environment/tests/unit/c/mock-environment.h +++ b/level_0/f_environment/tests/unit/c/mock-environment.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Environment - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the environment project. diff --git a/level_0/f_environment/tests/unit/c/test-environment-clear.h b/level_0/f_environment/tests/unit/c/test-environment-clear.h index a4c703522..375cf5b5a 100644 --- a/level_0/f_environment/tests/unit/c/test-environment-clear.h +++ b/level_0/f_environment/tests/unit/c/test-environment-clear.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Environment - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the environment project. diff --git a/level_0/f_environment/tests/unit/c/test-environment-exists.h b/level_0/f_environment/tests/unit/c/test-environment-exists.h index db9dade8a..8d89dd72d 100644 --- a/level_0/f_environment/tests/unit/c/test-environment-exists.h +++ b/level_0/f_environment/tests/unit/c/test-environment-exists.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Environment - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the environment project. diff --git a/level_0/f_environment/tests/unit/c/test-environment-get.h b/level_0/f_environment/tests/unit/c/test-environment-get.h index 7b6b79915..6780b6fa9 100644 --- a/level_0/f_environment/tests/unit/c/test-environment-get.h +++ b/level_0/f_environment/tests/unit/c/test-environment-get.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Environment - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the environment project. diff --git a/level_0/f_environment/tests/unit/c/test-environment-get_all.h b/level_0/f_environment/tests/unit/c/test-environment-get_all.h index 4d77ef236..f817e6e5b 100644 --- a/level_0/f_environment/tests/unit/c/test-environment-get_all.h +++ b/level_0/f_environment/tests/unit/c/test-environment-get_all.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Environment - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the environment project. diff --git a/level_0/f_environment/tests/unit/c/test-environment-secure_is.h b/level_0/f_environment/tests/unit/c/test-environment-secure_is.h index 3a269ac8a..b1c8f4477 100644 --- a/level_0/f_environment/tests/unit/c/test-environment-secure_is.h +++ b/level_0/f_environment/tests/unit/c/test-environment-secure_is.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Environment - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the environment project. diff --git a/level_0/f_environment/tests/unit/c/test-environment-set.h b/level_0/f_environment/tests/unit/c/test-environment-set.h index 79ef5e64a..0026bc70d 100644 --- a/level_0/f_environment/tests/unit/c/test-environment-set.h +++ b/level_0/f_environment/tests/unit/c/test-environment-set.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Environment - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the environment project. diff --git a/level_0/f_environment/tests/unit/c/test-environment-unset.h b/level_0/f_environment/tests/unit/c/test-environment-unset.h index 61766f290..d5db269b0 100644 --- a/level_0/f_environment/tests/unit/c/test-environment-unset.h +++ b/level_0/f_environment/tests/unit/c/test-environment-unset.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Environment - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the environment project. diff --git a/level_0/f_environment/tests/unit/c/test-environment.h b/level_0/f_environment/tests/unit/c/test-environment.h index b66d791e9..f3ba4fa28 100644 --- a/level_0/f_environment/tests/unit/c/test-environment.h +++ b/level_0/f_environment/tests/unit/c/test-environment.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Environment - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the environment project. diff --git a/level_0/f_execute/c/execute.h b/level_0/f_execute/c/execute.h index a8453243e..048162cc9 100644 --- a/level_0/f_execute/c/execute.h +++ b/level_0/f_execute/c/execute.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Execute - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Provides execute processing functionality. diff --git a/level_0/f_execute/c/execute/common.h b/level_0/f_execute/c/execute/common.h index 9aebf538a..d2d016737 100644 --- a/level_0/f_execute/c/execute/common.h +++ b/level_0/f_execute/c/execute/common.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Execute - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Defines common data to be used for/by project execute. diff --git a/level_0/f_execute/tests/unit/c/test-execute-status_from_status.h b/level_0/f_execute/tests/unit/c/test-execute-status_from_status.h index 9492968cc..a757fed3c 100644 --- a/level_0/f_execute/tests/unit/c/test-execute-status_from_status.h +++ b/level_0/f_execute/tests/unit/c/test-execute-status_from_status.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Execute - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the execute project. diff --git a/level_0/f_execute/tests/unit/c/test-execute-status_to_status.h b/level_0/f_execute/tests/unit/c/test-execute-status_to_status.h index 725f78727..0260545f1 100644 --- a/level_0/f_execute/tests/unit/c/test-execute-status_to_status.h +++ b/level_0/f_execute/tests/unit/c/test-execute-status_to_status.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Execute - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the execute project. diff --git a/level_0/f_execute/tests/unit/c/test-execute.h b/level_0/f_execute/tests/unit/c/test-execute.h index c1f885d87..2180407f5 100644 --- a/level_0/f_execute/tests/unit/c/test-execute.h +++ b/level_0/f_execute/tests/unit/c/test-execute.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Execute - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the execute project. diff --git a/level_0/f_file/c/file.h b/level_0/f_file/c/file.h index 0ae9c1f57..9fe894820 100644 --- a/level_0/f_file/c/file.h +++ b/level_0/f_file/c/file.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: File - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Provides structures and data types for a file I/O. diff --git a/level_0/f_file/c/file/common.h b/level_0/f_file/c/file/common.h index 2983f2b8c..efc9681f1 100644 --- a/level_0/f_file/c/file/common.h +++ b/level_0/f_file/c/file/common.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: File - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Defines common data to be used for/by project file. diff --git a/level_0/f_file/c/private-file.h b/level_0/f_file/c/private-file.h index 14ff1dfda..17b8fa7e1 100644 --- a/level_0/f_file/c/private-file.h +++ b/level_0/f_file/c/private-file.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: File - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Provides structures and data types for a file I/O. diff --git a/level_0/f_file/tests/unit/c/mock-file.h b/level_0/f_file/tests/unit/c/mock-file.h index afb76247d..0862c8cc7 100644 --- a/level_0/f_file/tests/unit/c/mock-file.h +++ b/level_0/f_file/tests/unit/c/mock-file.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: File - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the file project. diff --git a/level_0/f_file/tests/unit/c/test-file-access.h b/level_0/f_file/tests/unit/c/test-file-access.h index 59e87d642..5c8cce8d5 100644 --- a/level_0/f_file/tests/unit/c/test-file-access.h +++ b/level_0/f_file/tests/unit/c/test-file-access.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: File - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the file project. diff --git a/level_0/f_file/tests/unit/c/test-file-access_at.h b/level_0/f_file/tests/unit/c/test-file-access_at.h index 496b2c9b7..d7702e619 100644 --- a/level_0/f_file/tests/unit/c/test-file-access_at.h +++ b/level_0/f_file/tests/unit/c/test-file-access_at.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: File - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the file project. diff --git a/level_0/f_file/tests/unit/c/test-file-clone.h b/level_0/f_file/tests/unit/c/test-file-clone.h index 24032ecb8..c5ef8cf90 100644 --- a/level_0/f_file/tests/unit/c/test-file-clone.h +++ b/level_0/f_file/tests/unit/c/test-file-clone.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: File - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the file project. diff --git a/level_0/f_file/tests/unit/c/test-file-close.h b/level_0/f_file/tests/unit/c/test-file-close.h index 6f2a287f7..a21cf13e3 100644 --- a/level_0/f_file/tests/unit/c/test-file-close.h +++ b/level_0/f_file/tests/unit/c/test-file-close.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: File - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the file project. diff --git a/level_0/f_file/tests/unit/c/test-file-close_flush.h b/level_0/f_file/tests/unit/c/test-file-close_flush.h index 2bd35a830..dd709e94e 100644 --- a/level_0/f_file/tests/unit/c/test-file-close_flush.h +++ b/level_0/f_file/tests/unit/c/test-file-close_flush.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: File - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the file project. diff --git a/level_0/f_file/tests/unit/c/test-file-copy.h b/level_0/f_file/tests/unit/c/test-file-copy.h index 63f2d68a3..7491a6086 100644 --- a/level_0/f_file/tests/unit/c/test-file-copy.h +++ b/level_0/f_file/tests/unit/c/test-file-copy.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: File - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the file project. diff --git a/level_0/f_file/tests/unit/c/test-file-create.h b/level_0/f_file/tests/unit/c/test-file-create.h index df2843eda..3a905c75b 100644 --- a/level_0/f_file/tests/unit/c/test-file-create.h +++ b/level_0/f_file/tests/unit/c/test-file-create.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: File - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the file project. diff --git a/level_0/f_file/tests/unit/c/test-file-create_at.h b/level_0/f_file/tests/unit/c/test-file-create_at.h index 223fe6b41..2aaf173df 100644 --- a/level_0/f_file/tests/unit/c/test-file-create_at.h +++ b/level_0/f_file/tests/unit/c/test-file-create_at.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: File - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the file project. diff --git a/level_0/f_file/tests/unit/c/test-file-create_device.h b/level_0/f_file/tests/unit/c/test-file-create_device.h index d08101890..cf78bb677 100644 --- a/level_0/f_file/tests/unit/c/test-file-create_device.h +++ b/level_0/f_file/tests/unit/c/test-file-create_device.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: File - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the file project. diff --git a/level_0/f_file/tests/unit/c/test-file-create_device_at.h b/level_0/f_file/tests/unit/c/test-file-create_device_at.h index e3ff15ac6..78b3a0a8b 100644 --- a/level_0/f_file/tests/unit/c/test-file-create_device_at.h +++ b/level_0/f_file/tests/unit/c/test-file-create_device_at.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: File - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the file project. diff --git a/level_0/f_file/tests/unit/c/test-file-create_fifo.h b/level_0/f_file/tests/unit/c/test-file-create_fifo.h index 9fd79f6ca..9326223af 100644 --- a/level_0/f_file/tests/unit/c/test-file-create_fifo.h +++ b/level_0/f_file/tests/unit/c/test-file-create_fifo.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: File - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the file project. diff --git a/level_0/f_file/tests/unit/c/test-file-create_fifo_at.h b/level_0/f_file/tests/unit/c/test-file-create_fifo_at.h index 9c19de236..963b797eb 100644 --- a/level_0/f_file/tests/unit/c/test-file-create_fifo_at.h +++ b/level_0/f_file/tests/unit/c/test-file-create_fifo_at.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: File - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the file project. diff --git a/level_0/f_file/tests/unit/c/test-file-create_node.h b/level_0/f_file/tests/unit/c/test-file-create_node.h index 50ded05b0..0228e9a45 100644 --- a/level_0/f_file/tests/unit/c/test-file-create_node.h +++ b/level_0/f_file/tests/unit/c/test-file-create_node.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: File - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the file project. diff --git a/level_0/f_file/tests/unit/c/test-file-create_node_at.h b/level_0/f_file/tests/unit/c/test-file-create_node_at.h index e12001839..b3a8ebd22 100644 --- a/level_0/f_file/tests/unit/c/test-file-create_node_at.h +++ b/level_0/f_file/tests/unit/c/test-file-create_node_at.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: File - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the file project. diff --git a/level_0/f_file/tests/unit/c/test-file-descriptor.h b/level_0/f_file/tests/unit/c/test-file-descriptor.h index 9296fa947..51eb13bb4 100644 --- a/level_0/f_file/tests/unit/c/test-file-descriptor.h +++ b/level_0/f_file/tests/unit/c/test-file-descriptor.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: File - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the file project. diff --git a/level_0/f_file/tests/unit/c/test-file-exists.h b/level_0/f_file/tests/unit/c/test-file-exists.h index 42f1d226b..d0f50351e 100644 --- a/level_0/f_file/tests/unit/c/test-file-exists.h +++ b/level_0/f_file/tests/unit/c/test-file-exists.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: File - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the file project. diff --git a/level_0/f_file/tests/unit/c/test-file-exists_at.h b/level_0/f_file/tests/unit/c/test-file-exists_at.h index ea9cd8346..6ae3ea37e 100644 --- a/level_0/f_file/tests/unit/c/test-file-exists_at.h +++ b/level_0/f_file/tests/unit/c/test-file-exists_at.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: File - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the file project. diff --git a/level_0/f_file/tests/unit/c/test-file-flush.h b/level_0/f_file/tests/unit/c/test-file-flush.h index 03bafb8f7..67ffb38fc 100644 --- a/level_0/f_file/tests/unit/c/test-file-flush.h +++ b/level_0/f_file/tests/unit/c/test-file-flush.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: File - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the file project. diff --git a/level_0/f_file/tests/unit/c/test-file-group_read.h b/level_0/f_file/tests/unit/c/test-file-group_read.h index bb987fdd9..c1278ae4f 100644 --- a/level_0/f_file/tests/unit/c/test-file-group_read.h +++ b/level_0/f_file/tests/unit/c/test-file-group_read.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: File - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the file project. diff --git a/level_0/f_file/tests/unit/c/test-file-is.h b/level_0/f_file/tests/unit/c/test-file-is.h index 794d9167f..72753fe5e 100644 --- a/level_0/f_file/tests/unit/c/test-file-is.h +++ b/level_0/f_file/tests/unit/c/test-file-is.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: File - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the file project. diff --git a/level_0/f_file/tests/unit/c/test-file-is_at.h b/level_0/f_file/tests/unit/c/test-file-is_at.h index 54bba28c5..b43810cf1 100644 --- a/level_0/f_file/tests/unit/c/test-file-is_at.h +++ b/level_0/f_file/tests/unit/c/test-file-is_at.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: File - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the file project. diff --git a/level_0/f_file/tests/unit/c/test-file-link.h b/level_0/f_file/tests/unit/c/test-file-link.h index dc632222d..f719cee8f 100644 --- a/level_0/f_file/tests/unit/c/test-file-link.h +++ b/level_0/f_file/tests/unit/c/test-file-link.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: File - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the file project. diff --git a/level_0/f_file/tests/unit/c/test-file-link_at.h b/level_0/f_file/tests/unit/c/test-file-link_at.h index 7b98c493a..46ab52067 100644 --- a/level_0/f_file/tests/unit/c/test-file-link_at.h +++ b/level_0/f_file/tests/unit/c/test-file-link_at.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: File - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the file project. diff --git a/level_0/f_file/tests/unit/c/test-file-link_hard.h b/level_0/f_file/tests/unit/c/test-file-link_hard.h index 800554884..4247a60fe 100644 --- a/level_0/f_file/tests/unit/c/test-file-link_hard.h +++ b/level_0/f_file/tests/unit/c/test-file-link_hard.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: File - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the file project. diff --git a/level_0/f_file/tests/unit/c/test-file-link_hard_at.h b/level_0/f_file/tests/unit/c/test-file-link_hard_at.h index 24402faff..3d8a45308 100644 --- a/level_0/f_file/tests/unit/c/test-file-link_hard_at.h +++ b/level_0/f_file/tests/unit/c/test-file-link_hard_at.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: File - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the file project. diff --git a/level_0/f_file/tests/unit/c/test-file-link_read.h b/level_0/f_file/tests/unit/c/test-file-link_read.h index f23a86044..dada97551 100644 --- a/level_0/f_file/tests/unit/c/test-file-link_read.h +++ b/level_0/f_file/tests/unit/c/test-file-link_read.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: File - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the file project. diff --git a/level_0/f_file/tests/unit/c/test-file-link_read_at.h b/level_0/f_file/tests/unit/c/test-file-link_read_at.h index 1d1325cf2..de3f893ac 100644 --- a/level_0/f_file/tests/unit/c/test-file-link_read_at.h +++ b/level_0/f_file/tests/unit/c/test-file-link_read_at.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: File - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the file project. diff --git a/level_0/f_file/tests/unit/c/test-file-mode_determine.h b/level_0/f_file/tests/unit/c/test-file-mode_determine.h index 65bf08b25..8a9a32d9f 100644 --- a/level_0/f_file/tests/unit/c/test-file-mode_determine.h +++ b/level_0/f_file/tests/unit/c/test-file-mode_determine.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: File - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the file project. diff --git a/level_0/f_file/tests/unit/c/test-file-mode_from_string.h b/level_0/f_file/tests/unit/c/test-file-mode_from_string.h index 8ea7255b2..034d505b5 100644 --- a/level_0/f_file/tests/unit/c/test-file-mode_from_string.h +++ b/level_0/f_file/tests/unit/c/test-file-mode_from_string.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: File - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the file project. diff --git a/level_0/f_file/tests/unit/c/test-file-mode_read.h b/level_0/f_file/tests/unit/c/test-file-mode_read.h index 7294fd25e..54d1d0b86 100644 --- a/level_0/f_file/tests/unit/c/test-file-mode_read.h +++ b/level_0/f_file/tests/unit/c/test-file-mode_read.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: File - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the file project. diff --git a/level_0/f_file/tests/unit/c/test-file-mode_read_at.h b/level_0/f_file/tests/unit/c/test-file-mode_read_at.h index a963a77e4..ae85c8454 100644 --- a/level_0/f_file/tests/unit/c/test-file-mode_read_at.h +++ b/level_0/f_file/tests/unit/c/test-file-mode_read_at.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: File - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the file project. diff --git a/level_0/f_file/tests/unit/c/test-file-mode_set.h b/level_0/f_file/tests/unit/c/test-file-mode_set.h index 3c215a2b4..4f4c6898f 100644 --- a/level_0/f_file/tests/unit/c/test-file-mode_set.h +++ b/level_0/f_file/tests/unit/c/test-file-mode_set.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: File - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the file project. diff --git a/level_0/f_file/tests/unit/c/test-file-mode_set_at.h b/level_0/f_file/tests/unit/c/test-file-mode_set_at.h index 8c925927d..be05852b5 100644 --- a/level_0/f_file/tests/unit/c/test-file-mode_set_at.h +++ b/level_0/f_file/tests/unit/c/test-file-mode_set_at.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: File - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the file project. diff --git a/level_0/f_file/tests/unit/c/test-file-mode_to_mode.h b/level_0/f_file/tests/unit/c/test-file-mode_to_mode.h index 8fc4a2de5..78c46b91d 100644 --- a/level_0/f_file/tests/unit/c/test-file-mode_to_mode.h +++ b/level_0/f_file/tests/unit/c/test-file-mode_to_mode.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: File - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the file project. diff --git a/level_0/f_file/tests/unit/c/test-file-name_base.h b/level_0/f_file/tests/unit/c/test-file-name_base.h index 0f87fe048..195a57e2c 100644 --- a/level_0/f_file/tests/unit/c/test-file-name_base.h +++ b/level_0/f_file/tests/unit/c/test-file-name_base.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: File - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the file project. diff --git a/level_0/f_file/tests/unit/c/test-file-name_directory.h b/level_0/f_file/tests/unit/c/test-file-name_directory.h index e0a10fdb2..e2e3cb0f7 100644 --- a/level_0/f_file/tests/unit/c/test-file-name_directory.h +++ b/level_0/f_file/tests/unit/c/test-file-name_directory.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: File - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the file project. diff --git a/level_0/f_file/tests/unit/c/test-file-open.h b/level_0/f_file/tests/unit/c/test-file-open.h index 3f16d4cd5..91bc93967 100644 --- a/level_0/f_file/tests/unit/c/test-file-open.h +++ b/level_0/f_file/tests/unit/c/test-file-open.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: File - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the file project. diff --git a/level_0/f_file/tests/unit/c/test-file-open_at.h b/level_0/f_file/tests/unit/c/test-file-open_at.h index 45681c9db..bc85e274c 100644 --- a/level_0/f_file/tests/unit/c/test-file-open_at.h +++ b/level_0/f_file/tests/unit/c/test-file-open_at.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: File - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the file project. diff --git a/level_0/f_file/tests/unit/c/test-file-owner_read.h b/level_0/f_file/tests/unit/c/test-file-owner_read.h index 890c91c65..f486927d8 100644 --- a/level_0/f_file/tests/unit/c/test-file-owner_read.h +++ b/level_0/f_file/tests/unit/c/test-file-owner_read.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: File - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the file project. diff --git a/level_0/f_file/tests/unit/c/test-file-read.h b/level_0/f_file/tests/unit/c/test-file-read.h index 7e785e27d..35a5aa441 100644 --- a/level_0/f_file/tests/unit/c/test-file-read.h +++ b/level_0/f_file/tests/unit/c/test-file-read.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: File - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the file project. diff --git a/level_0/f_file/tests/unit/c/test-file-read_block.h b/level_0/f_file/tests/unit/c/test-file-read_block.h index 4edcd90ce..14723a91e 100644 --- a/level_0/f_file/tests/unit/c/test-file-read_block.h +++ b/level_0/f_file/tests/unit/c/test-file-read_block.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: File - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the file project. diff --git a/level_0/f_file/tests/unit/c/test-file-read_until.h b/level_0/f_file/tests/unit/c/test-file-read_until.h index f3a33ea9f..c1d5c2deb 100644 --- a/level_0/f_file/tests/unit/c/test-file-read_until.h +++ b/level_0/f_file/tests/unit/c/test-file-read_until.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: File - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the file project. diff --git a/level_0/f_file/tests/unit/c/test-file-remove.h b/level_0/f_file/tests/unit/c/test-file-remove.h index 65a4ace1b..4d25b928f 100644 --- a/level_0/f_file/tests/unit/c/test-file-remove.h +++ b/level_0/f_file/tests/unit/c/test-file-remove.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: File - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the file project. diff --git a/level_0/f_file/tests/unit/c/test-file-remove_at.h b/level_0/f_file/tests/unit/c/test-file-remove_at.h index 128a5e314..8bd5e5c67 100644 --- a/level_0/f_file/tests/unit/c/test-file-remove_at.h +++ b/level_0/f_file/tests/unit/c/test-file-remove_at.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: File - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the file project. diff --git a/level_0/f_file/tests/unit/c/test-file-rename.h b/level_0/f_file/tests/unit/c/test-file-rename.h index 2667690c4..74cb4034d 100644 --- a/level_0/f_file/tests/unit/c/test-file-rename.h +++ b/level_0/f_file/tests/unit/c/test-file-rename.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: File - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the file project. diff --git a/level_0/f_file/tests/unit/c/test-file-rename_at.h b/level_0/f_file/tests/unit/c/test-file-rename_at.h index 78c26f905..bf404bba4 100644 --- a/level_0/f_file/tests/unit/c/test-file-rename_at.h +++ b/level_0/f_file/tests/unit/c/test-file-rename_at.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: File - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the file project. diff --git a/level_0/f_file/tests/unit/c/test-file-role_change.h b/level_0/f_file/tests/unit/c/test-file-role_change.h index 150afad39..0253bb59e 100644 --- a/level_0/f_file/tests/unit/c/test-file-role_change.h +++ b/level_0/f_file/tests/unit/c/test-file-role_change.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: File - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the file project. diff --git a/level_0/f_file/tests/unit/c/test-file-role_change_at.h b/level_0/f_file/tests/unit/c/test-file-role_change_at.h index 06a579e43..b36b7df5a 100644 --- a/level_0/f_file/tests/unit/c/test-file-role_change_at.h +++ b/level_0/f_file/tests/unit/c/test-file-role_change_at.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: File - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the file project. diff --git a/level_0/f_file/tests/unit/c/test-file-seek.h b/level_0/f_file/tests/unit/c/test-file-seek.h index e5e350d0f..38f2c5ff3 100644 --- a/level_0/f_file/tests/unit/c/test-file-seek.h +++ b/level_0/f_file/tests/unit/c/test-file-seek.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: File - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the file project. diff --git a/level_0/f_file/tests/unit/c/test-file-size.h b/level_0/f_file/tests/unit/c/test-file-size.h index f53f2f0ec..4a9fc12ec 100644 --- a/level_0/f_file/tests/unit/c/test-file-size.h +++ b/level_0/f_file/tests/unit/c/test-file-size.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: File - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the file project. diff --git a/level_0/f_file/tests/unit/c/test-file-size_at.h b/level_0/f_file/tests/unit/c/test-file-size_at.h index eb83c9509..a09a891f4 100644 --- a/level_0/f_file/tests/unit/c/test-file-size_at.h +++ b/level_0/f_file/tests/unit/c/test-file-size_at.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: File - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the file project. diff --git a/level_0/f_file/tests/unit/c/test-file-size_by_id.h b/level_0/f_file/tests/unit/c/test-file-size_by_id.h index 244d97813..f5d42abb5 100644 --- a/level_0/f_file/tests/unit/c/test-file-size_by_id.h +++ b/level_0/f_file/tests/unit/c/test-file-size_by_id.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: File - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the file project. diff --git a/level_0/f_file/tests/unit/c/test-file-stat.h b/level_0/f_file/tests/unit/c/test-file-stat.h index 0aa95728a..7e5e311a2 100644 --- a/level_0/f_file/tests/unit/c/test-file-stat.h +++ b/level_0/f_file/tests/unit/c/test-file-stat.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: File - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the file project. diff --git a/level_0/f_file/tests/unit/c/test-file-stat_at.h b/level_0/f_file/tests/unit/c/test-file-stat_at.h index 0c15fa6d7..91b5abffd 100644 --- a/level_0/f_file/tests/unit/c/test-file-stat_at.h +++ b/level_0/f_file/tests/unit/c/test-file-stat_at.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: File - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the file project. diff --git a/level_0/f_file/tests/unit/c/test-file-stat_by_id.h b/level_0/f_file/tests/unit/c/test-file-stat_by_id.h index 0f86bbbfe..63ffcdd50 100644 --- a/level_0/f_file/tests/unit/c/test-file-stat_by_id.h +++ b/level_0/f_file/tests/unit/c/test-file-stat_by_id.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: File - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the file project. diff --git a/level_0/f_file/tests/unit/c/test-file-stream_close.h b/level_0/f_file/tests/unit/c/test-file-stream_close.h index 72df1799b..ebd4cfd43 100644 --- a/level_0/f_file/tests/unit/c/test-file-stream_close.h +++ b/level_0/f_file/tests/unit/c/test-file-stream_close.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: File - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the file project. diff --git a/level_0/f_file/tests/unit/c/test-file-stream_open.h b/level_0/f_file/tests/unit/c/test-file-stream_open.h index 2b7868026..afc920a15 100644 --- a/level_0/f_file/tests/unit/c/test-file-stream_open.h +++ b/level_0/f_file/tests/unit/c/test-file-stream_open.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: File - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the file project. diff --git a/level_0/f_file/tests/unit/c/test-file-stream_open_descriptor.h b/level_0/f_file/tests/unit/c/test-file-stream_open_descriptor.h index e8ffbd40f..e7fd49215 100644 --- a/level_0/f_file/tests/unit/c/test-file-stream_open_descriptor.h +++ b/level_0/f_file/tests/unit/c/test-file-stream_open_descriptor.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: File - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the file project. diff --git a/level_0/f_file/tests/unit/c/test-file-stream_read.h b/level_0/f_file/tests/unit/c/test-file-stream_read.h index 0dd56a745..2db6c2dbe 100644 --- a/level_0/f_file/tests/unit/c/test-file-stream_read.h +++ b/level_0/f_file/tests/unit/c/test-file-stream_read.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: File - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the file project. diff --git a/level_0/f_file/tests/unit/c/test-file-stream_read_block.h b/level_0/f_file/tests/unit/c/test-file-stream_read_block.h index 8a8b71ecf..f80d25680 100644 --- a/level_0/f_file/tests/unit/c/test-file-stream_read_block.h +++ b/level_0/f_file/tests/unit/c/test-file-stream_read_block.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: File - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the file project. diff --git a/level_0/f_file/tests/unit/c/test-file-stream_read_until.h b/level_0/f_file/tests/unit/c/test-file-stream_read_until.h index 890379535..550b73b22 100644 --- a/level_0/f_file/tests/unit/c/test-file-stream_read_until.h +++ b/level_0/f_file/tests/unit/c/test-file-stream_read_until.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: File - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the file project. diff --git a/level_0/f_file/tests/unit/c/test-file-stream_reopen.h b/level_0/f_file/tests/unit/c/test-file-stream_reopen.h index fde9f6a41..220cb6e04 100644 --- a/level_0/f_file/tests/unit/c/test-file-stream_reopen.h +++ b/level_0/f_file/tests/unit/c/test-file-stream_reopen.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: File - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the file project. diff --git a/level_0/f_file/tests/unit/c/test-file-stream_write.h b/level_0/f_file/tests/unit/c/test-file-stream_write.h index f0ce692d5..b1c96804b 100644 --- a/level_0/f_file/tests/unit/c/test-file-stream_write.h +++ b/level_0/f_file/tests/unit/c/test-file-stream_write.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: File - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the file project. diff --git a/level_0/f_file/tests/unit/c/test-file-stream_write_block.h b/level_0/f_file/tests/unit/c/test-file-stream_write_block.h index 2727f8593..7b5605281 100644 --- a/level_0/f_file/tests/unit/c/test-file-stream_write_block.h +++ b/level_0/f_file/tests/unit/c/test-file-stream_write_block.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: File - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the file project. diff --git a/level_0/f_file/tests/unit/c/test-file-stream_write_range.h b/level_0/f_file/tests/unit/c/test-file-stream_write_range.h index eb17e76a8..e19361ff7 100644 --- a/level_0/f_file/tests/unit/c/test-file-stream_write_range.h +++ b/level_0/f_file/tests/unit/c/test-file-stream_write_range.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: File - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the file project. diff --git a/level_0/f_file/tests/unit/c/test-file-stream_write_until.h b/level_0/f_file/tests/unit/c/test-file-stream_write_until.h index 32e7f8188..86c441b40 100644 --- a/level_0/f_file/tests/unit/c/test-file-stream_write_until.h +++ b/level_0/f_file/tests/unit/c/test-file-stream_write_until.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: File - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the file project. diff --git a/level_0/f_file/tests/unit/c/test-file-touch.h b/level_0/f_file/tests/unit/c/test-file-touch.h index 30152fee4..eb290616e 100644 --- a/level_0/f_file/tests/unit/c/test-file-touch.h +++ b/level_0/f_file/tests/unit/c/test-file-touch.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: File - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the file project. diff --git a/level_0/f_file/tests/unit/c/test-file-touch_at.h b/level_0/f_file/tests/unit/c/test-file-touch_at.h index 664e695b9..2afd9b078 100644 --- a/level_0/f_file/tests/unit/c/test-file-touch_at.h +++ b/level_0/f_file/tests/unit/c/test-file-touch_at.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: File - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the file project. diff --git a/level_0/f_file/tests/unit/c/test-file-type.h b/level_0/f_file/tests/unit/c/test-file-type.h index 2759bd6c5..e62c2f580 100644 --- a/level_0/f_file/tests/unit/c/test-file-type.h +++ b/level_0/f_file/tests/unit/c/test-file-type.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: File - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the file project. diff --git a/level_0/f_file/tests/unit/c/test-file-type_at.h b/level_0/f_file/tests/unit/c/test-file-type_at.h index 702030ff0..d66f85073 100644 --- a/level_0/f_file/tests/unit/c/test-file-type_at.h +++ b/level_0/f_file/tests/unit/c/test-file-type_at.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: File - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the file project. diff --git a/level_0/f_file/tests/unit/c/test-file-umask_get.h b/level_0/f_file/tests/unit/c/test-file-umask_get.h index 5bd0b5046..3b1087b18 100644 --- a/level_0/f_file/tests/unit/c/test-file-umask_get.h +++ b/level_0/f_file/tests/unit/c/test-file-umask_get.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: File - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the file project. diff --git a/level_0/f_file/tests/unit/c/test-file-umask_set.h b/level_0/f_file/tests/unit/c/test-file-umask_set.h index 81cf00ce5..7791f31e1 100644 --- a/level_0/f_file/tests/unit/c/test-file-umask_set.h +++ b/level_0/f_file/tests/unit/c/test-file-umask_set.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: File - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the file project. diff --git a/level_0/f_file/tests/unit/c/test-file-write.h b/level_0/f_file/tests/unit/c/test-file-write.h index 2be9eef0e..22098fb0b 100644 --- a/level_0/f_file/tests/unit/c/test-file-write.h +++ b/level_0/f_file/tests/unit/c/test-file-write.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: File - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the file project. diff --git a/level_0/f_file/tests/unit/c/test-file-write_block.h b/level_0/f_file/tests/unit/c/test-file-write_block.h index 854447f66..b8f66fbb0 100644 --- a/level_0/f_file/tests/unit/c/test-file-write_block.h +++ b/level_0/f_file/tests/unit/c/test-file-write_block.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: File - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the file project. diff --git a/level_0/f_file/tests/unit/c/test-file-write_range.h b/level_0/f_file/tests/unit/c/test-file-write_range.h index 7af047fbe..c74b496a4 100644 --- a/level_0/f_file/tests/unit/c/test-file-write_range.h +++ b/level_0/f_file/tests/unit/c/test-file-write_range.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: File - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the file project. diff --git a/level_0/f_file/tests/unit/c/test-file-write_until.h b/level_0/f_file/tests/unit/c/test-file-write_until.h index 937e96f10..ff8f96043 100644 --- a/level_0/f_file/tests/unit/c/test-file-write_until.h +++ b/level_0/f_file/tests/unit/c/test-file-write_until.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: File - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the file project. diff --git a/level_0/f_file/tests/unit/c/test-file.h b/level_0/f_file/tests/unit/c/test-file.h index 9a3ac4b50..13497ebea 100644 --- a/level_0/f_file/tests/unit/c/test-file.h +++ b/level_0/f_file/tests/unit/c/test-file.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: File - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the file project. diff --git a/level_0/f_fss/c/fss.h b/level_0/f_fss/c/fss.h index 34cc65dc4..abdfc0655 100644 --- a/level_0/f_fss/c/fss.h +++ b/level_0/f_fss/c/fss.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: FSS - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Defines all datatypes to be used for/by project fss. diff --git a/level_0/f_fss/c/fss/comment.h b/level_0/f_fss/c/fss/comment.h index 1384a9904..6596a3d63 100644 --- a/level_0/f_fss/c/fss/comment.h +++ b/level_0/f_fss/c/fss/comment.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: FSS - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Defines set data to be used for/by project fss. diff --git a/level_0/f_fss/c/fss/common.h b/level_0/f_fss/c/fss/common.h index d04d4ae82..4556cba12 100644 --- a/level_0/f_fss/c/fss/common.h +++ b/level_0/f_fss/c/fss/common.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: FSS - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Defines common data to be used for/by project fss. diff --git a/level_0/f_fss/c/fss/delimit.h b/level_0/f_fss/c/fss/delimit.h index f6c88b08f..c0c4566e7 100644 --- a/level_0/f_fss/c/fss/delimit.h +++ b/level_0/f_fss/c/fss/delimit.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: FSS - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Defines set data to be used for/by project fss. diff --git a/level_0/f_fss/c/fss/named.h b/level_0/f_fss/c/fss/named.h index bfdc8f152..f3f42386c 100644 --- a/level_0/f_fss/c/fss/named.h +++ b/level_0/f_fss/c/fss/named.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: FSS - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Defines named set data to be used for/by project fss. diff --git a/level_0/f_fss/c/fss/nest.h b/level_0/f_fss/c/fss/nest.h index 13dfc8dc7..886d82c8b 100644 --- a/level_0/f_fss/c/fss/nest.h +++ b/level_0/f_fss/c/fss/nest.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: FSS - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Defines nest data to be used for/by project fss. diff --git a/level_0/f_fss/c/fss/quote.h b/level_0/f_fss/c/fss/quote.h index a8123f179..47e95b5ca 100644 --- a/level_0/f_fss/c/fss/quote.h +++ b/level_0/f_fss/c/fss/quote.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: FSS - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Defines set data to be used for/by project fss. diff --git a/level_0/f_fss/c/fss/set.h b/level_0/f_fss/c/fss/set.h index 006e1d8c6..a8de49106 100644 --- a/level_0/f_fss/c/fss/set.h +++ b/level_0/f_fss/c/fss/set.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: FSS - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Defines set data to be used for/by project fss. diff --git a/level_0/f_fss/c/private-fss.h b/level_0/f_fss/c/private-fss.h index dfe4a6774..01f52563d 100644 --- a/level_0/f_fss/c/private-fss.h +++ b/level_0/f_fss/c/private-fss.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: FSS - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * These are provided for internal reduction in redundant code. diff --git a/level_0/f_fss/tests/unit/c/mock-fss.h b/level_0/f_fss/tests/unit/c/mock-fss.h index ec1be0136..53e02a52a 100644 --- a/level_0/f_fss/tests/unit/c/mock-fss.h +++ b/level_0/f_fss/tests/unit/c/mock-fss.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: FSS - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the fss project. diff --git a/level_0/f_fss/tests/unit/c/test-fss-apply_delimit.h b/level_0/f_fss/tests/unit/c/test-fss-apply_delimit.h index e86042557..515865ab1 100644 --- a/level_0/f_fss/tests/unit/c/test-fss-apply_delimit.h +++ b/level_0/f_fss/tests/unit/c/test-fss-apply_delimit.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: FSS - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test apply delimit in the fss project. diff --git a/level_0/f_fss/tests/unit/c/test-fss-apply_delimit_range.h b/level_0/f_fss/tests/unit/c/test-fss-apply_delimit_range.h index 1ed91d875..a9a152154 100644 --- a/level_0/f_fss/tests/unit/c/test-fss-apply_delimit_range.h +++ b/level_0/f_fss/tests/unit/c/test-fss-apply_delimit_range.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: FSS - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test apply delimit between in the fss project. diff --git a/level_0/f_fss/tests/unit/c/test-fss-count_lines.h b/level_0/f_fss/tests/unit/c/test-fss-count_lines.h index fc9d59152..d1336c0d7 100644 --- a/level_0/f_fss/tests/unit/c/test-fss-count_lines.h +++ b/level_0/f_fss/tests/unit/c/test-fss-count_lines.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: FSS - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test count lines in the fss project. diff --git a/level_0/f_fss/tests/unit/c/test-fss-count_lines_range.h b/level_0/f_fss/tests/unit/c/test-fss-count_lines_range.h index 713520236..ab809092c 100644 --- a/level_0/f_fss/tests/unit/c/test-fss-count_lines_range.h +++ b/level_0/f_fss/tests/unit/c/test-fss-count_lines_range.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: FSS - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test count lines range in the fss project. diff --git a/level_0/f_fss/tests/unit/c/test-fss-fail_utf.h b/level_0/f_fss/tests/unit/c/test-fss-fail_utf.h index 51b26fa07..cf3a8ae8c 100644 --- a/level_0/f_fss/tests/unit/c/test-fss-fail_utf.h +++ b/level_0/f_fss/tests/unit/c/test-fss-fail_utf.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: FSS - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test fail utf in the fss project. diff --git a/level_0/f_fss/tests/unit/c/test-fss-fail_utf_to_false.h b/level_0/f_fss/tests/unit/c/test-fss-fail_utf_to_false.h index f0338ddcb..f235546c3 100644 --- a/level_0/f_fss/tests/unit/c/test-fss-fail_utf_to_false.h +++ b/level_0/f_fss/tests/unit/c/test-fss-fail_utf_to_false.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: FSS - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test fail utf to false in the fss project. diff --git a/level_0/f_fss/tests/unit/c/test-fss-is_combining.h b/level_0/f_fss/tests/unit/c/test-fss-is_combining.h index 70819756d..7079ce030 100644 --- a/level_0/f_fss/tests/unit/c/test-fss-is_combining.h +++ b/level_0/f_fss/tests/unit/c/test-fss-is_combining.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: FSS - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test is space in the fss project. diff --git a/level_0/f_fss/tests/unit/c/test-fss-is_graph.h b/level_0/f_fss/tests/unit/c/test-fss-is_graph.h index 426ebbfc9..0876fb537 100644 --- a/level_0/f_fss/tests/unit/c/test-fss-is_graph.h +++ b/level_0/f_fss/tests/unit/c/test-fss-is_graph.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: FSS - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test is graph in the fss project. diff --git a/level_0/f_fss/tests/unit/c/test-fss-is_space.h b/level_0/f_fss/tests/unit/c/test-fss-is_space.h index deed3a8b1..e9604fbd6 100644 --- a/level_0/f_fss/tests/unit/c/test-fss-is_space.h +++ b/level_0/f_fss/tests/unit/c/test-fss-is_space.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: FSS - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test is space in the fss project. diff --git a/level_0/f_fss/tests/unit/c/test-fss-is_zero_width.h b/level_0/f_fss/tests/unit/c/test-fss-is_zero_width.h index 4f6a3efb5..d719bd431 100644 --- a/level_0/f_fss/tests/unit/c/test-fss-is_zero_width.h +++ b/level_0/f_fss/tests/unit/c/test-fss-is_zero_width.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: FSS - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test is zero width in the fss project. diff --git a/level_0/f_fss/tests/unit/c/test-fss-items_adjust.h b/level_0/f_fss/tests/unit/c/test-fss-items_adjust.h index 8d3f7b798..96909c421 100644 --- a/level_0/f_fss/tests/unit/c/test-fss-items_adjust.h +++ b/level_0/f_fss/tests/unit/c/test-fss-items_adjust.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: FSS - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test items adjust in the fss project. diff --git a/level_0/f_fss/tests/unit/c/test-fss-items_decimate_by.h b/level_0/f_fss/tests/unit/c/test-fss-items_decimate_by.h index 60f46c7aa..69e88cf6a 100644 --- a/level_0/f_fss/tests/unit/c/test-fss-items_decimate_by.h +++ b/level_0/f_fss/tests/unit/c/test-fss-items_decimate_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: FSS - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test items decimate by in the fss project. diff --git a/level_0/f_fss/tests/unit/c/test-fss-items_decrease_by.h b/level_0/f_fss/tests/unit/c/test-fss-items_decrease_by.h index 5ea6356b5..c351eabf1 100644 --- a/level_0/f_fss/tests/unit/c/test-fss-items_decrease_by.h +++ b/level_0/f_fss/tests/unit/c/test-fss-items_decrease_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: FSS - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test items decrease by in the fss project. diff --git a/level_0/f_fss/tests/unit/c/test-fss-items_increase.h b/level_0/f_fss/tests/unit/c/test-fss-items_increase.h index 9dbde8b1d..4389a2e8f 100644 --- a/level_0/f_fss/tests/unit/c/test-fss-items_increase.h +++ b/level_0/f_fss/tests/unit/c/test-fss-items_increase.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: FSS - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test items increase in the fss project. diff --git a/level_0/f_fss/tests/unit/c/test-fss-items_increase_by.h b/level_0/f_fss/tests/unit/c/test-fss-items_increase_by.h index 325d5cc97..81c58ad3b 100644 --- a/level_0/f_fss/tests/unit/c/test-fss-items_increase_by.h +++ b/level_0/f_fss/tests/unit/c/test-fss-items_increase_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: FSS - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test items increase by in the fss project. diff --git a/level_0/f_fss/tests/unit/c/test-fss-items_resize.h b/level_0/f_fss/tests/unit/c/test-fss-items_resize.h index 050f8e974..1a070f731 100644 --- a/level_0/f_fss/tests/unit/c/test-fss-items_resize.h +++ b/level_0/f_fss/tests/unit/c/test-fss-items_resize.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: FSS - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test items resize in the fss project. diff --git a/level_0/f_fss/tests/unit/c/test-fss-named_adjust.h b/level_0/f_fss/tests/unit/c/test-fss-named_adjust.h index c2cb84cbd..3033e2ff3 100644 --- a/level_0/f_fss/tests/unit/c/test-fss-named_adjust.h +++ b/level_0/f_fss/tests/unit/c/test-fss-named_adjust.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: FSS - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test named adjust in the fss project. diff --git a/level_0/f_fss/tests/unit/c/test-fss-named_decimate_by.h b/level_0/f_fss/tests/unit/c/test-fss-named_decimate_by.h index 7dc9edfd5..e5573c369 100644 --- a/level_0/f_fss/tests/unit/c/test-fss-named_decimate_by.h +++ b/level_0/f_fss/tests/unit/c/test-fss-named_decimate_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: FSS - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test named decimate by in the fss project. diff --git a/level_0/f_fss/tests/unit/c/test-fss-named_decrease_by.h b/level_0/f_fss/tests/unit/c/test-fss-named_decrease_by.h index 2c98108de..7c87f7775 100644 --- a/level_0/f_fss/tests/unit/c/test-fss-named_decrease_by.h +++ b/level_0/f_fss/tests/unit/c/test-fss-named_decrease_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: FSS - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test named decrease by in the fss project. diff --git a/level_0/f_fss/tests/unit/c/test-fss-named_increase.h b/level_0/f_fss/tests/unit/c/test-fss-named_increase.h index e7f3960f8..c6f699149 100644 --- a/level_0/f_fss/tests/unit/c/test-fss-named_increase.h +++ b/level_0/f_fss/tests/unit/c/test-fss-named_increase.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: FSS - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test named increase in the fss project. diff --git a/level_0/f_fss/tests/unit/c/test-fss-named_increase_by.h b/level_0/f_fss/tests/unit/c/test-fss-named_increase_by.h index 7473b8c69..415b0527e 100644 --- a/level_0/f_fss/tests/unit/c/test-fss-named_increase_by.h +++ b/level_0/f_fss/tests/unit/c/test-fss-named_increase_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: FSS - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test named increase by in the fss project. diff --git a/level_0/f_fss/tests/unit/c/test-fss-named_resize.h b/level_0/f_fss/tests/unit/c/test-fss-named_resize.h index aab069637..57d6e8d98 100644 --- a/level_0/f_fss/tests/unit/c/test-fss-named_resize.h +++ b/level_0/f_fss/tests/unit/c/test-fss-named_resize.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: FSS - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test named resize in the fss project. diff --git a/level_0/f_fss/tests/unit/c/test-fss-nameds_adjust.h b/level_0/f_fss/tests/unit/c/test-fss-nameds_adjust.h index 76393eb3d..4fd75ad8d 100644 --- a/level_0/f_fss/tests/unit/c/test-fss-nameds_adjust.h +++ b/level_0/f_fss/tests/unit/c/test-fss-nameds_adjust.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: FSS - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test nameds adjust in the fss project. diff --git a/level_0/f_fss/tests/unit/c/test-fss-nameds_decimate_by.h b/level_0/f_fss/tests/unit/c/test-fss-nameds_decimate_by.h index 9ffda44d1..8251be2db 100644 --- a/level_0/f_fss/tests/unit/c/test-fss-nameds_decimate_by.h +++ b/level_0/f_fss/tests/unit/c/test-fss-nameds_decimate_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: FSS - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test nameds decimate by in the fss project. diff --git a/level_0/f_fss/tests/unit/c/test-fss-nameds_decrease_by.h b/level_0/f_fss/tests/unit/c/test-fss-nameds_decrease_by.h index 9c0427bf2..1e0c4a7ae 100644 --- a/level_0/f_fss/tests/unit/c/test-fss-nameds_decrease_by.h +++ b/level_0/f_fss/tests/unit/c/test-fss-nameds_decrease_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: FSS - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test nameds decrease by in the fss project. diff --git a/level_0/f_fss/tests/unit/c/test-fss-nameds_increase.h b/level_0/f_fss/tests/unit/c/test-fss-nameds_increase.h index 158f8dc1f..ab7791f8a 100644 --- a/level_0/f_fss/tests/unit/c/test-fss-nameds_increase.h +++ b/level_0/f_fss/tests/unit/c/test-fss-nameds_increase.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: FSS - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test nameds increase in the fss project. diff --git a/level_0/f_fss/tests/unit/c/test-fss-nameds_increase_by.h b/level_0/f_fss/tests/unit/c/test-fss-nameds_increase_by.h index 49f48edb6..c611daca8 100644 --- a/level_0/f_fss/tests/unit/c/test-fss-nameds_increase_by.h +++ b/level_0/f_fss/tests/unit/c/test-fss-nameds_increase_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: FSS - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test nameds increase by in the fss project. diff --git a/level_0/f_fss/tests/unit/c/test-fss-nameds_resize.h b/level_0/f_fss/tests/unit/c/test-fss-nameds_resize.h index 040b0e9c2..655848bac 100644 --- a/level_0/f_fss/tests/unit/c/test-fss-nameds_resize.h +++ b/level_0/f_fss/tests/unit/c/test-fss-nameds_resize.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: FSS - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test nameds resize in the fss project. diff --git a/level_0/f_fss/tests/unit/c/test-fss-nest_adjust.h b/level_0/f_fss/tests/unit/c/test-fss-nest_adjust.h index c3fee41ff..ca58cb38c 100644 --- a/level_0/f_fss/tests/unit/c/test-fss-nest_adjust.h +++ b/level_0/f_fss/tests/unit/c/test-fss-nest_adjust.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: FSS - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test nest adjust in the fss project. diff --git a/level_0/f_fss/tests/unit/c/test-fss-nest_decimate_by.h b/level_0/f_fss/tests/unit/c/test-fss-nest_decimate_by.h index 60aa85dff..cd8dec5b8 100644 --- a/level_0/f_fss/tests/unit/c/test-fss-nest_decimate_by.h +++ b/level_0/f_fss/tests/unit/c/test-fss-nest_decimate_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: FSS - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test nest decimate by in the fss project. diff --git a/level_0/f_fss/tests/unit/c/test-fss-nest_decrease_by.h b/level_0/f_fss/tests/unit/c/test-fss-nest_decrease_by.h index 904fa19b2..0ffc8779d 100644 --- a/level_0/f_fss/tests/unit/c/test-fss-nest_decrease_by.h +++ b/level_0/f_fss/tests/unit/c/test-fss-nest_decrease_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: FSS - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test nest decrease by in the fss project. diff --git a/level_0/f_fss/tests/unit/c/test-fss-nest_increase.h b/level_0/f_fss/tests/unit/c/test-fss-nest_increase.h index ed32ff1ea..635418de2 100644 --- a/level_0/f_fss/tests/unit/c/test-fss-nest_increase.h +++ b/level_0/f_fss/tests/unit/c/test-fss-nest_increase.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: FSS - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test nest increase in the fss project. diff --git a/level_0/f_fss/tests/unit/c/test-fss-nest_increase_by.h b/level_0/f_fss/tests/unit/c/test-fss-nest_increase_by.h index 9ff15ccfd..7d4c81f2b 100644 --- a/level_0/f_fss/tests/unit/c/test-fss-nest_increase_by.h +++ b/level_0/f_fss/tests/unit/c/test-fss-nest_increase_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: FSS - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test nest increase by in the fss project. diff --git a/level_0/f_fss/tests/unit/c/test-fss-nest_resize.h b/level_0/f_fss/tests/unit/c/test-fss-nest_resize.h index 7b30dd4e8..be3fef2d8 100644 --- a/level_0/f_fss/tests/unit/c/test-fss-nest_resize.h +++ b/level_0/f_fss/tests/unit/c/test-fss-nest_resize.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: FSS - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test nest resize in the fss project. diff --git a/level_0/f_fss/tests/unit/c/test-fss-nests_adjust.h b/level_0/f_fss/tests/unit/c/test-fss-nests_adjust.h index 954ec6f22..46abfd8b2 100644 --- a/level_0/f_fss/tests/unit/c/test-fss-nests_adjust.h +++ b/level_0/f_fss/tests/unit/c/test-fss-nests_adjust.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: FSS - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test nests adjust in the fss project. diff --git a/level_0/f_fss/tests/unit/c/test-fss-nests_decimate_by.h b/level_0/f_fss/tests/unit/c/test-fss-nests_decimate_by.h index 5aa037373..f20702157 100644 --- a/level_0/f_fss/tests/unit/c/test-fss-nests_decimate_by.h +++ b/level_0/f_fss/tests/unit/c/test-fss-nests_decimate_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: FSS - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test nests decimate by in the fss project. diff --git a/level_0/f_fss/tests/unit/c/test-fss-nests_decrease_by.h b/level_0/f_fss/tests/unit/c/test-fss-nests_decrease_by.h index 957bf8e4c..34bf47bee 100644 --- a/level_0/f_fss/tests/unit/c/test-fss-nests_decrease_by.h +++ b/level_0/f_fss/tests/unit/c/test-fss-nests_decrease_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: FSS - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test nests decrease by in the fss project. diff --git a/level_0/f_fss/tests/unit/c/test-fss-nests_increase.h b/level_0/f_fss/tests/unit/c/test-fss-nests_increase.h index bb1087589..0f8abb744 100644 --- a/level_0/f_fss/tests/unit/c/test-fss-nests_increase.h +++ b/level_0/f_fss/tests/unit/c/test-fss-nests_increase.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: FSS - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test nests increase in the fss project. diff --git a/level_0/f_fss/tests/unit/c/test-fss-nests_increase_by.h b/level_0/f_fss/tests/unit/c/test-fss-nests_increase_by.h index ab0c84f6d..5f4a46a95 100644 --- a/level_0/f_fss/tests/unit/c/test-fss-nests_increase_by.h +++ b/level_0/f_fss/tests/unit/c/test-fss-nests_increase_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: FSS - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test nests increase by in the fss project. diff --git a/level_0/f_fss/tests/unit/c/test-fss-nests_resize.h b/level_0/f_fss/tests/unit/c/test-fss-nests_resize.h index ec5266dd6..67151b3ee 100644 --- a/level_0/f_fss/tests/unit/c/test-fss-nests_resize.h +++ b/level_0/f_fss/tests/unit/c/test-fss-nests_resize.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: FSS - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test nests resize in the fss project. diff --git a/level_0/f_fss/tests/unit/c/test-fss-seek_to_eol.h b/level_0/f_fss/tests/unit/c/test-fss-seek_to_eol.h index bb397ac25..6adc61fa7 100644 --- a/level_0/f_fss/tests/unit/c/test-fss-seek_to_eol.h +++ b/level_0/f_fss/tests/unit/c/test-fss-seek_to_eol.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: FSS - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test seek to eol in the fss project. diff --git a/level_0/f_fss/tests/unit/c/test-fss-set_adjust.h b/level_0/f_fss/tests/unit/c/test-fss-set_adjust.h index 5f3a5a692..85dde7aee 100644 --- a/level_0/f_fss/tests/unit/c/test-fss-set_adjust.h +++ b/level_0/f_fss/tests/unit/c/test-fss-set_adjust.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: FSS - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test set adjust in the fss project. diff --git a/level_0/f_fss/tests/unit/c/test-fss-set_decimate_by.h b/level_0/f_fss/tests/unit/c/test-fss-set_decimate_by.h index 43e881cea..ab25e66c3 100644 --- a/level_0/f_fss/tests/unit/c/test-fss-set_decimate_by.h +++ b/level_0/f_fss/tests/unit/c/test-fss-set_decimate_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: FSS - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test set decimate by in the fss project. diff --git a/level_0/f_fss/tests/unit/c/test-fss-set_decrease_by.h b/level_0/f_fss/tests/unit/c/test-fss-set_decrease_by.h index 2d9f66525..a9e10f18d 100644 --- a/level_0/f_fss/tests/unit/c/test-fss-set_decrease_by.h +++ b/level_0/f_fss/tests/unit/c/test-fss-set_decrease_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: FSS - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test set decrease by in the fss project. diff --git a/level_0/f_fss/tests/unit/c/test-fss-set_increase.h b/level_0/f_fss/tests/unit/c/test-fss-set_increase.h index 44eaddc4e..b504d476b 100644 --- a/level_0/f_fss/tests/unit/c/test-fss-set_increase.h +++ b/level_0/f_fss/tests/unit/c/test-fss-set_increase.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: FSS - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test set increase in the fss project. diff --git a/level_0/f_fss/tests/unit/c/test-fss-set_increase_by.h b/level_0/f_fss/tests/unit/c/test-fss-set_increase_by.h index ed992daa3..5d5bcf2ad 100644 --- a/level_0/f_fss/tests/unit/c/test-fss-set_increase_by.h +++ b/level_0/f_fss/tests/unit/c/test-fss-set_increase_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: FSS - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test set increase by in the fss project. diff --git a/level_0/f_fss/tests/unit/c/test-fss-set_quote_adjust.h b/level_0/f_fss/tests/unit/c/test-fss-set_quote_adjust.h index b9cf1caeb..0c7700f83 100644 --- a/level_0/f_fss/tests/unit/c/test-fss-set_quote_adjust.h +++ b/level_0/f_fss/tests/unit/c/test-fss-set_quote_adjust.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: FSS - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test set quote adjust in the fss project. diff --git a/level_0/f_fss/tests/unit/c/test-fss-set_quote_decimate_by.h b/level_0/f_fss/tests/unit/c/test-fss-set_quote_decimate_by.h index 634abbf82..c7511e698 100644 --- a/level_0/f_fss/tests/unit/c/test-fss-set_quote_decimate_by.h +++ b/level_0/f_fss/tests/unit/c/test-fss-set_quote_decimate_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: FSS - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test set quote decimate by in the fss project. diff --git a/level_0/f_fss/tests/unit/c/test-fss-set_quote_decrease_by.h b/level_0/f_fss/tests/unit/c/test-fss-set_quote_decrease_by.h index 7dac78645..7da63fa04 100644 --- a/level_0/f_fss/tests/unit/c/test-fss-set_quote_decrease_by.h +++ b/level_0/f_fss/tests/unit/c/test-fss-set_quote_decrease_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: FSS - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test set quote decrease by in the fss project. diff --git a/level_0/f_fss/tests/unit/c/test-fss-set_quote_increase.h b/level_0/f_fss/tests/unit/c/test-fss-set_quote_increase.h index 2a464b62e..e5d1225e4 100644 --- a/level_0/f_fss/tests/unit/c/test-fss-set_quote_increase.h +++ b/level_0/f_fss/tests/unit/c/test-fss-set_quote_increase.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: FSS - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test set quote increase in the fss project. diff --git a/level_0/f_fss/tests/unit/c/test-fss-set_quote_increase_by.h b/level_0/f_fss/tests/unit/c/test-fss-set_quote_increase_by.h index 596a7afe2..e61a9b29d 100644 --- a/level_0/f_fss/tests/unit/c/test-fss-set_quote_increase_by.h +++ b/level_0/f_fss/tests/unit/c/test-fss-set_quote_increase_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: FSS - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test set quote increase by in the fss project. diff --git a/level_0/f_fss/tests/unit/c/test-fss-set_quote_resize.h b/level_0/f_fss/tests/unit/c/test-fss-set_quote_resize.h index 652f9fde6..0b922847f 100644 --- a/level_0/f_fss/tests/unit/c/test-fss-set_quote_resize.h +++ b/level_0/f_fss/tests/unit/c/test-fss-set_quote_resize.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: FSS - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test set quote resize in the fss project. diff --git a/level_0/f_fss/tests/unit/c/test-fss-set_quotes_adjust.h b/level_0/f_fss/tests/unit/c/test-fss-set_quotes_adjust.h index ac822b517..a001fc543 100644 --- a/level_0/f_fss/tests/unit/c/test-fss-set_quotes_adjust.h +++ b/level_0/f_fss/tests/unit/c/test-fss-set_quotes_adjust.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: FSS - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test set quote adjust in the fss project. diff --git a/level_0/f_fss/tests/unit/c/test-fss-set_quotes_decimate_by.h b/level_0/f_fss/tests/unit/c/test-fss-set_quotes_decimate_by.h index 55a544388..676ede693 100644 --- a/level_0/f_fss/tests/unit/c/test-fss-set_quotes_decimate_by.h +++ b/level_0/f_fss/tests/unit/c/test-fss-set_quotes_decimate_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: FSS - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test set quote decimate by in the fss project. diff --git a/level_0/f_fss/tests/unit/c/test-fss-set_quotes_decrease_by.h b/level_0/f_fss/tests/unit/c/test-fss-set_quotes_decrease_by.h index c8227bf9c..763ca1a61 100644 --- a/level_0/f_fss/tests/unit/c/test-fss-set_quotes_decrease_by.h +++ b/level_0/f_fss/tests/unit/c/test-fss-set_quotes_decrease_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: FSS - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test set quote decrease by in the fss project. diff --git a/level_0/f_fss/tests/unit/c/test-fss-set_quotes_increase.h b/level_0/f_fss/tests/unit/c/test-fss-set_quotes_increase.h index 3c6bfc424..b8fa1b533 100644 --- a/level_0/f_fss/tests/unit/c/test-fss-set_quotes_increase.h +++ b/level_0/f_fss/tests/unit/c/test-fss-set_quotes_increase.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: FSS - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test set quote increase in the fss project. diff --git a/level_0/f_fss/tests/unit/c/test-fss-set_quotes_increase_by.h b/level_0/f_fss/tests/unit/c/test-fss-set_quotes_increase_by.h index 4c9d5d6b2..708164464 100644 --- a/level_0/f_fss/tests/unit/c/test-fss-set_quotes_increase_by.h +++ b/level_0/f_fss/tests/unit/c/test-fss-set_quotes_increase_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: FSS - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test set quote increase by in the fss project. diff --git a/level_0/f_fss/tests/unit/c/test-fss-set_quotes_resize.h b/level_0/f_fss/tests/unit/c/test-fss-set_quotes_resize.h index cf159b34b..0faaac6f2 100644 --- a/level_0/f_fss/tests/unit/c/test-fss-set_quotes_resize.h +++ b/level_0/f_fss/tests/unit/c/test-fss-set_quotes_resize.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: FSS - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test set quote resize in the fss project. diff --git a/level_0/f_fss/tests/unit/c/test-fss-set_resize.h b/level_0/f_fss/tests/unit/c/test-fss-set_resize.h index 611934048..868ae7dde 100644 --- a/level_0/f_fss/tests/unit/c/test-fss-set_resize.h +++ b/level_0/f_fss/tests/unit/c/test-fss-set_resize.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: FSS - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test set resize in the fss project. diff --git a/level_0/f_fss/tests/unit/c/test-fss-sets_adjust.h b/level_0/f_fss/tests/unit/c/test-fss-sets_adjust.h index f6b958cbb..d45562bc6 100644 --- a/level_0/f_fss/tests/unit/c/test-fss-sets_adjust.h +++ b/level_0/f_fss/tests/unit/c/test-fss-sets_adjust.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: FSS - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test sets adjust in the fss project. diff --git a/level_0/f_fss/tests/unit/c/test-fss-sets_decimate_by.h b/level_0/f_fss/tests/unit/c/test-fss-sets_decimate_by.h index 05cea4ce8..9c5f17837 100644 --- a/level_0/f_fss/tests/unit/c/test-fss-sets_decimate_by.h +++ b/level_0/f_fss/tests/unit/c/test-fss-sets_decimate_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: FSS - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test sets decimate by in the fss project. diff --git a/level_0/f_fss/tests/unit/c/test-fss-sets_decrease_by.h b/level_0/f_fss/tests/unit/c/test-fss-sets_decrease_by.h index fe6b3d81b..276100cb7 100644 --- a/level_0/f_fss/tests/unit/c/test-fss-sets_decrease_by.h +++ b/level_0/f_fss/tests/unit/c/test-fss-sets_decrease_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: FSS - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test sets decrease by in the fss project. diff --git a/level_0/f_fss/tests/unit/c/test-fss-sets_increase.h b/level_0/f_fss/tests/unit/c/test-fss-sets_increase.h index 4c7a589d2..f7f21d43d 100644 --- a/level_0/f_fss/tests/unit/c/test-fss-sets_increase.h +++ b/level_0/f_fss/tests/unit/c/test-fss-sets_increase.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: FSS - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test sets increase in the fss project. diff --git a/level_0/f_fss/tests/unit/c/test-fss-sets_increase_by.h b/level_0/f_fss/tests/unit/c/test-fss-sets_increase_by.h index 578998a47..16a0fddeb 100644 --- a/level_0/f_fss/tests/unit/c/test-fss-sets_increase_by.h +++ b/level_0/f_fss/tests/unit/c/test-fss-sets_increase_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: FSS - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test sets increase by in the fss project. diff --git a/level_0/f_fss/tests/unit/c/test-fss-sets_resize.h b/level_0/f_fss/tests/unit/c/test-fss-sets_resize.h index cdaa5de1e..c31abe0c3 100644 --- a/level_0/f_fss/tests/unit/c/test-fss-sets_resize.h +++ b/level_0/f_fss/tests/unit/c/test-fss-sets_resize.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: FSS - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test sets resize by in the fss project. diff --git a/level_0/f_fss/tests/unit/c/test-fss-skip_past_delimit.h b/level_0/f_fss/tests/unit/c/test-fss-skip_past_delimit.h index e13504cd1..3dee0f22c 100644 --- a/level_0/f_fss/tests/unit/c/test-fss-skip_past_delimit.h +++ b/level_0/f_fss/tests/unit/c/test-fss-skip_past_delimit.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: FSS - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test skip past delimit in the fss project. diff --git a/level_0/f_fss/tests/unit/c/test-fss-skip_past_space.h b/level_0/f_fss/tests/unit/c/test-fss-skip_past_space.h index 825ff8e4a..d920c1578 100644 --- a/level_0/f_fss/tests/unit/c/test-fss-skip_past_space.h +++ b/level_0/f_fss/tests/unit/c/test-fss-skip_past_space.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: FSS - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test skip past space in the fss project. diff --git a/level_0/f_fss/tests/unit/c/test-fss.h b/level_0/f_fss/tests/unit/c/test-fss.h index 972f4c00d..8bba34204 100644 --- a/level_0/f_fss/tests/unit/c/test-fss.h +++ b/level_0/f_fss/tests/unit/c/test-fss.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: FSS - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the fss project. diff --git a/level_0/f_iki/c/iki.h b/level_0/f_iki/c/iki.h index 784420d8d..eaee16171 100644 --- a/level_0/f_iki/c/iki.h +++ b/level_0/f_iki/c/iki.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: IKI - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Provides a Wiki-Like syntax meant to be much simpler. diff --git a/level_0/f_iki/c/iki/common.h b/level_0/f_iki/c/iki/common.h index 5fbe2e06d..95ae4123e 100644 --- a/level_0/f_iki/c/iki/common.h +++ b/level_0/f_iki/c/iki/common.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: IKI - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Defines iki common data. diff --git a/level_0/f_iki/c/iki/data.h b/level_0/f_iki/c/iki/data.h index 4c1b00442..a0d4a68d8 100644 --- a/level_0/f_iki/c/iki/data.h +++ b/level_0/f_iki/c/iki/data.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: IKI - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Defines data to be used for/by iki related functionality. diff --git a/level_0/f_iki/c/iki/private-data.h b/level_0/f_iki/c/iki/private-data.h index 180cf67b3..2dace1071 100644 --- a/level_0/f_iki/c/iki/private-data.h +++ b/level_0/f_iki/c/iki/private-data.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: IKI - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * These are provided for internal reduction in redundant code. diff --git a/level_0/f_iki/c/private-iki.h b/level_0/f_iki/c/private-iki.h index df6a11417..e291525e4 100644 --- a/level_0/f_iki/c/private-iki.h +++ b/level_0/f_iki/c/private-iki.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: IKI - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * These are provided for internal reduction in redundant code. diff --git a/level_0/f_iki/tests/unit/c/test-iki-content_is.h b/level_0/f_iki/tests/unit/c/test-iki-content_is.h index 84b089148..e25cb978f 100644 --- a/level_0/f_iki/tests/unit/c/test-iki-content_is.h +++ b/level_0/f_iki/tests/unit/c/test-iki-content_is.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: IKI - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the iki project. diff --git a/level_0/f_iki/tests/unit/c/test-iki-content_partial_is.h b/level_0/f_iki/tests/unit/c/test-iki-content_partial_is.h index 9276f5718..c8c590de9 100644 --- a/level_0/f_iki/tests/unit/c/test-iki-content_partial_is.h +++ b/level_0/f_iki/tests/unit/c/test-iki-content_partial_is.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: IKI - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the iki project. diff --git a/level_0/f_iki/tests/unit/c/test-iki-datas_adjust.h b/level_0/f_iki/tests/unit/c/test-iki-datas_adjust.h index b91733e3e..588e89ef1 100644 --- a/level_0/f_iki/tests/unit/c/test-iki-datas_adjust.h +++ b/level_0/f_iki/tests/unit/c/test-iki-datas_adjust.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_iki/tests/unit/c/test-iki-datas_append.h b/level_0/f_iki/tests/unit/c/test-iki-datas_append.h index ffce715c1..46a85125a 100644 --- a/level_0/f_iki/tests/unit/c/test-iki-datas_append.h +++ b/level_0/f_iki/tests/unit/c/test-iki-datas_append.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_iki/tests/unit/c/test-iki-datas_append_all.h b/level_0/f_iki/tests/unit/c/test-iki-datas_append_all.h index 3e52fe886..42200a310 100644 --- a/level_0/f_iki/tests/unit/c/test-iki-datas_append_all.h +++ b/level_0/f_iki/tests/unit/c/test-iki-datas_append_all.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_iki/tests/unit/c/test-iki-datas_decimate_by.h b/level_0/f_iki/tests/unit/c/test-iki-datas_decimate_by.h index b7f171c64..a9875f570 100644 --- a/level_0/f_iki/tests/unit/c/test-iki-datas_decimate_by.h +++ b/level_0/f_iki/tests/unit/c/test-iki-datas_decimate_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_iki/tests/unit/c/test-iki-datas_decrease_by.h b/level_0/f_iki/tests/unit/c/test-iki-datas_decrease_by.h index 49dcf63be..d32f0f27d 100644 --- a/level_0/f_iki/tests/unit/c/test-iki-datas_decrease_by.h +++ b/level_0/f_iki/tests/unit/c/test-iki-datas_decrease_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_iki/tests/unit/c/test-iki-datas_increase.h b/level_0/f_iki/tests/unit/c/test-iki-datas_increase.h index e5d7e50cb..3c726cf4f 100644 --- a/level_0/f_iki/tests/unit/c/test-iki-datas_increase.h +++ b/level_0/f_iki/tests/unit/c/test-iki-datas_increase.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_iki/tests/unit/c/test-iki-datas_increase_by.h b/level_0/f_iki/tests/unit/c/test-iki-datas_increase_by.h index 0cd2f7d63..e4414694a 100644 --- a/level_0/f_iki/tests/unit/c/test-iki-datas_increase_by.h +++ b/level_0/f_iki/tests/unit/c/test-iki-datas_increase_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_iki/tests/unit/c/test-iki-datas_resize.h b/level_0/f_iki/tests/unit/c/test-iki-datas_resize.h index 52b3f876c..125f31a5a 100644 --- a/level_0/f_iki/tests/unit/c/test-iki-datas_resize.h +++ b/level_0/f_iki/tests/unit/c/test-iki-datas_resize.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_iki/tests/unit/c/test-iki-datass_adjust.h b/level_0/f_iki/tests/unit/c/test-iki-datass_adjust.h index 15d4b8b53..9bcb3e932 100644 --- a/level_0/f_iki/tests/unit/c/test-iki-datass_adjust.h +++ b/level_0/f_iki/tests/unit/c/test-iki-datass_adjust.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_iki/tests/unit/c/test-iki-datass_append.h b/level_0/f_iki/tests/unit/c/test-iki-datass_append.h index a08038e5e..8ba174bcb 100644 --- a/level_0/f_iki/tests/unit/c/test-iki-datass_append.h +++ b/level_0/f_iki/tests/unit/c/test-iki-datass_append.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_iki/tests/unit/c/test-iki-datass_append_all.h b/level_0/f_iki/tests/unit/c/test-iki-datass_append_all.h index 3a39b89be..3692a757f 100644 --- a/level_0/f_iki/tests/unit/c/test-iki-datass_append_all.h +++ b/level_0/f_iki/tests/unit/c/test-iki-datass_append_all.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_iki/tests/unit/c/test-iki-datass_decimate_by.h b/level_0/f_iki/tests/unit/c/test-iki-datass_decimate_by.h index 1e971fb8f..ce5155d65 100644 --- a/level_0/f_iki/tests/unit/c/test-iki-datass_decimate_by.h +++ b/level_0/f_iki/tests/unit/c/test-iki-datass_decimate_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_iki/tests/unit/c/test-iki-datass_decrease_by.h b/level_0/f_iki/tests/unit/c/test-iki-datass_decrease_by.h index 976215697..174ca8ed8 100644 --- a/level_0/f_iki/tests/unit/c/test-iki-datass_decrease_by.h +++ b/level_0/f_iki/tests/unit/c/test-iki-datass_decrease_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_iki/tests/unit/c/test-iki-datass_increase.h b/level_0/f_iki/tests/unit/c/test-iki-datass_increase.h index d90ece029..db0852637 100644 --- a/level_0/f_iki/tests/unit/c/test-iki-datass_increase.h +++ b/level_0/f_iki/tests/unit/c/test-iki-datass_increase.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_iki/tests/unit/c/test-iki-datass_increase_by.h b/level_0/f_iki/tests/unit/c/test-iki-datass_increase_by.h index 05616f5f9..c9c8909c5 100644 --- a/level_0/f_iki/tests/unit/c/test-iki-datass_increase_by.h +++ b/level_0/f_iki/tests/unit/c/test-iki-datass_increase_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_iki/tests/unit/c/test-iki-datass_resize.h b/level_0/f_iki/tests/unit/c/test-iki-datass_resize.h index bc6fba351..06610a587 100644 --- a/level_0/f_iki/tests/unit/c/test-iki-datass_resize.h +++ b/level_0/f_iki/tests/unit/c/test-iki-datass_resize.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_iki/tests/unit/c/test-iki-object_is.h b/level_0/f_iki/tests/unit/c/test-iki-object_is.h index 173568f46..cdb2d7878 100644 --- a/level_0/f_iki/tests/unit/c/test-iki-object_is.h +++ b/level_0/f_iki/tests/unit/c/test-iki-object_is.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: IKI - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the iki project. diff --git a/level_0/f_iki/tests/unit/c/test-iki-object_partial_is.h b/level_0/f_iki/tests/unit/c/test-iki-object_partial_is.h index 7e0d911e9..0511216d0 100644 --- a/level_0/f_iki/tests/unit/c/test-iki-object_partial_is.h +++ b/level_0/f_iki/tests/unit/c/test-iki-object_partial_is.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: IKI - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the iki project. diff --git a/level_0/f_iki/tests/unit/c/test-iki-read.c b/level_0/f_iki/tests/unit/c/test-iki-read.c index 7092e7132..cba52c0e2 100644 --- a/level_0/f_iki/tests/unit/c/test-iki-read.c +++ b/level_0/f_iki/tests/unit/c/test-iki-read.c @@ -108,8 +108,8 @@ void test__f_iki_read__works(void **state) { macro_f_string_static_t_initialize("IKI Content:\"May have spaces\\\" and quotes.\"", 0, 43), macro_f_string_static_t_initialize("IKI Content:'May have spaces\\' and\" quotes.'", 0, 44), macro_f_string_static_t_initialize("IKI Content:\"May have spaces\\\" and' quotes.\"", 0, 44), - macro_f_string_static_t_initialize("url:'https://localhost/fake-0.6.0.tar.gz?query=xx¶meter=yyy%20' end.", 0, 72), - macro_f_string_static_t_initialize("url:\"https://localhost/fake-0.6.0.tar.gz?query=xx¶meter=yyy%20\" end.", 0, 72), + macro_f_string_static_t_initialize("url:'https://localhost/fake-0.7.0.tar.gz?query=xx¶meter=yyy%20' end.", 0, 72), + macro_f_string_static_t_initialize("url:\"https://localhost/fake-0.7.0.tar.gz?query=xx¶meter=yyy%20\" end.", 0, 72), }; const f_array_length_t matches[] = { diff --git a/level_0/f_iki/tests/unit/c/test-iki-read.h b/level_0/f_iki/tests/unit/c/test-iki-read.h index 6d2adf857..0f65e9598 100644 --- a/level_0/f_iki/tests/unit/c/test-iki-read.h +++ b/level_0/f_iki/tests/unit/c/test-iki-read.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: IKI - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the iki project. diff --git a/level_0/f_iki/tests/unit/c/test-iki.h b/level_0/f_iki/tests/unit/c/test-iki.h index 1ea5115ba..b84b7ca73 100644 --- a/level_0/f_iki/tests/unit/c/test-iki.h +++ b/level_0/f_iki/tests/unit/c/test-iki.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: IKI - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the iki project. diff --git a/level_0/f_limit/c/limit.h b/level_0/f_limit/c/limit.h index dc02b6937..87f8931b8 100644 --- a/level_0/f_limit/c/limit.h +++ b/level_0/f_limit/c/limit.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Limit - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Provides limit related functionality. diff --git a/level_0/f_limit/c/limit/private-set.h b/level_0/f_limit/c/limit/private-set.h index 6951b9c2d..a78c881a0 100644 --- a/level_0/f_limit/c/limit/private-set.h +++ b/level_0/f_limit/c/limit/private-set.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Limit - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * These are provided for internal reduction in redundant code. diff --git a/level_0/f_limit/c/limit/private-value.h b/level_0/f_limit/c/limit/private-value.h index 005399e5c..66992cf6d 100644 --- a/level_0/f_limit/c/limit/private-value.h +++ b/level_0/f_limit/c/limit/private-value.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Limit - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * These are provided for internal reduction in redundant code. diff --git a/level_0/f_limit/c/limit/set.h b/level_0/f_limit/c/limit/set.h index 4899d2c32..637c53933 100644 --- a/level_0/f_limit/c/limit/set.h +++ b/level_0/f_limit/c/limit/set.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Limit - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Defines common data to be used for/by limit related functionality. diff --git a/level_0/f_limit/c/limit/value.h b/level_0/f_limit/c/limit/value.h index 50a28fc1a..52988090d 100644 --- a/level_0/f_limit/c/limit/value.h +++ b/level_0/f_limit/c/limit/value.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Limit - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Defines common data to be used for/by limit related functionality. diff --git a/level_0/f_limit/tests/unit/c/mock-limit.h b/level_0/f_limit/tests/unit/c/mock-limit.h index 2a564f2a2..36e0f99c5 100644 --- a/level_0/f_limit/tests/unit/c/mock-limit.h +++ b/level_0/f_limit/tests/unit/c/mock-limit.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Limit - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the limit project. diff --git a/level_0/f_limit/tests/unit/c/test-limit-process.h b/level_0/f_limit/tests/unit/c/test-limit-process.h index 9b00d1c7c..f20d8b669 100644 --- a/level_0/f_limit/tests/unit/c/test-limit-process.h +++ b/level_0/f_limit/tests/unit/c/test-limit-process.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Limit - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the limit project. diff --git a/level_0/f_limit/tests/unit/c/test-limit-sets_adjust.h b/level_0/f_limit/tests/unit/c/test-limit-sets_adjust.h index a3196741d..8e8ecc5a6 100644 --- a/level_0/f_limit/tests/unit/c/test-limit-sets_adjust.h +++ b/level_0/f_limit/tests/unit/c/test-limit-sets_adjust.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Limit - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the limit project. diff --git a/level_0/f_limit/tests/unit/c/test-limit-sets_append.h b/level_0/f_limit/tests/unit/c/test-limit-sets_append.h index 378e585bd..8747a3340 100644 --- a/level_0/f_limit/tests/unit/c/test-limit-sets_append.h +++ b/level_0/f_limit/tests/unit/c/test-limit-sets_append.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Limit - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the limit project. diff --git a/level_0/f_limit/tests/unit/c/test-limit-sets_append_all.h b/level_0/f_limit/tests/unit/c/test-limit-sets_append_all.h index 80c10bb72..e502c4ad1 100644 --- a/level_0/f_limit/tests/unit/c/test-limit-sets_append_all.h +++ b/level_0/f_limit/tests/unit/c/test-limit-sets_append_all.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Limit - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the limit project. diff --git a/level_0/f_limit/tests/unit/c/test-limit-sets_decimate_by.h b/level_0/f_limit/tests/unit/c/test-limit-sets_decimate_by.h index b8b557c1d..a1654a7d1 100644 --- a/level_0/f_limit/tests/unit/c/test-limit-sets_decimate_by.h +++ b/level_0/f_limit/tests/unit/c/test-limit-sets_decimate_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Limit - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the limit project. diff --git a/level_0/f_limit/tests/unit/c/test-limit-sets_decrease_by.h b/level_0/f_limit/tests/unit/c/test-limit-sets_decrease_by.h index b74f117a7..4606dc1c6 100644 --- a/level_0/f_limit/tests/unit/c/test-limit-sets_decrease_by.h +++ b/level_0/f_limit/tests/unit/c/test-limit-sets_decrease_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Limit - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the limit project. diff --git a/level_0/f_limit/tests/unit/c/test-limit-sets_increase.h b/level_0/f_limit/tests/unit/c/test-limit-sets_increase.h index 791d5ab79..8cc898c1e 100644 --- a/level_0/f_limit/tests/unit/c/test-limit-sets_increase.h +++ b/level_0/f_limit/tests/unit/c/test-limit-sets_increase.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Limit - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the limit project. diff --git a/level_0/f_limit/tests/unit/c/test-limit-sets_increase_by.h b/level_0/f_limit/tests/unit/c/test-limit-sets_increase_by.h index 3f1df1358..046ad10e2 100644 --- a/level_0/f_limit/tests/unit/c/test-limit-sets_increase_by.h +++ b/level_0/f_limit/tests/unit/c/test-limit-sets_increase_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Limit - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the limit project. diff --git a/level_0/f_limit/tests/unit/c/test-limit-sets_resize.h b/level_0/f_limit/tests/unit/c/test-limit-sets_resize.h index fae604391..dc9b14c04 100644 --- a/level_0/f_limit/tests/unit/c/test-limit-sets_resize.h +++ b/level_0/f_limit/tests/unit/c/test-limit-sets_resize.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Limit - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the limit project. diff --git a/level_0/f_limit/tests/unit/c/test-limit-setss_adjust.h b/level_0/f_limit/tests/unit/c/test-limit-setss_adjust.h index a08179c00..eb52d9abc 100644 --- a/level_0/f_limit/tests/unit/c/test-limit-setss_adjust.h +++ b/level_0/f_limit/tests/unit/c/test-limit-setss_adjust.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_limit/tests/unit/c/test-limit-setss_append.h b/level_0/f_limit/tests/unit/c/test-limit-setss_append.h index 704287ac0..be3d2dc73 100644 --- a/level_0/f_limit/tests/unit/c/test-limit-setss_append.h +++ b/level_0/f_limit/tests/unit/c/test-limit-setss_append.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_limit/tests/unit/c/test-limit-setss_append_all.h b/level_0/f_limit/tests/unit/c/test-limit-setss_append_all.h index 2f0c36084..65f2242ad 100644 --- a/level_0/f_limit/tests/unit/c/test-limit-setss_append_all.h +++ b/level_0/f_limit/tests/unit/c/test-limit-setss_append_all.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_limit/tests/unit/c/test-limit-setss_decimate_by.h b/level_0/f_limit/tests/unit/c/test-limit-setss_decimate_by.h index 400dbbf1e..6cda21a91 100644 --- a/level_0/f_limit/tests/unit/c/test-limit-setss_decimate_by.h +++ b/level_0/f_limit/tests/unit/c/test-limit-setss_decimate_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_limit/tests/unit/c/test-limit-setss_decrease_by.h b/level_0/f_limit/tests/unit/c/test-limit-setss_decrease_by.h index 0c985ff8c..2ef087151 100644 --- a/level_0/f_limit/tests/unit/c/test-limit-setss_decrease_by.h +++ b/level_0/f_limit/tests/unit/c/test-limit-setss_decrease_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_limit/tests/unit/c/test-limit-setss_increase.h b/level_0/f_limit/tests/unit/c/test-limit-setss_increase.h index ebac136b6..09294dfb1 100644 --- a/level_0/f_limit/tests/unit/c/test-limit-setss_increase.h +++ b/level_0/f_limit/tests/unit/c/test-limit-setss_increase.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_limit/tests/unit/c/test-limit-setss_increase_by.h b/level_0/f_limit/tests/unit/c/test-limit-setss_increase_by.h index 306ef1fcd..0d12d98c1 100644 --- a/level_0/f_limit/tests/unit/c/test-limit-setss_increase_by.h +++ b/level_0/f_limit/tests/unit/c/test-limit-setss_increase_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_limit/tests/unit/c/test-limit-setss_resize.h b/level_0/f_limit/tests/unit/c/test-limit-setss_resize.h index ba5984c01..e5fa43c68 100644 --- a/level_0/f_limit/tests/unit/c/test-limit-setss_resize.h +++ b/level_0/f_limit/tests/unit/c/test-limit-setss_resize.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_limit/tests/unit/c/test-limit-values_adjust.h b/level_0/f_limit/tests/unit/c/test-limit-values_adjust.h index 6224e4038..f76509c08 100644 --- a/level_0/f_limit/tests/unit/c/test-limit-values_adjust.h +++ b/level_0/f_limit/tests/unit/c/test-limit-values_adjust.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Limit - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the limit project. diff --git a/level_0/f_limit/tests/unit/c/test-limit-values_append.h b/level_0/f_limit/tests/unit/c/test-limit-values_append.h index 64fddcf71..a9e5fe57f 100644 --- a/level_0/f_limit/tests/unit/c/test-limit-values_append.h +++ b/level_0/f_limit/tests/unit/c/test-limit-values_append.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Limit - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the limit project. diff --git a/level_0/f_limit/tests/unit/c/test-limit-values_append_all.h b/level_0/f_limit/tests/unit/c/test-limit-values_append_all.h index b93f5bf37..178da4a4e 100644 --- a/level_0/f_limit/tests/unit/c/test-limit-values_append_all.h +++ b/level_0/f_limit/tests/unit/c/test-limit-values_append_all.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Limit - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the limit project. diff --git a/level_0/f_limit/tests/unit/c/test-limit-values_decimate_by.h b/level_0/f_limit/tests/unit/c/test-limit-values_decimate_by.h index b36609920..dc3aa5d70 100644 --- a/level_0/f_limit/tests/unit/c/test-limit-values_decimate_by.h +++ b/level_0/f_limit/tests/unit/c/test-limit-values_decimate_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Limit - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the limit project. diff --git a/level_0/f_limit/tests/unit/c/test-limit-values_decrease_by.h b/level_0/f_limit/tests/unit/c/test-limit-values_decrease_by.h index a4178c47f..172b88058 100644 --- a/level_0/f_limit/tests/unit/c/test-limit-values_decrease_by.h +++ b/level_0/f_limit/tests/unit/c/test-limit-values_decrease_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Limit - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the limit project. diff --git a/level_0/f_limit/tests/unit/c/test-limit-values_increase.h b/level_0/f_limit/tests/unit/c/test-limit-values_increase.h index d5fe58148..15143d376 100644 --- a/level_0/f_limit/tests/unit/c/test-limit-values_increase.h +++ b/level_0/f_limit/tests/unit/c/test-limit-values_increase.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Limit - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the limit project. diff --git a/level_0/f_limit/tests/unit/c/test-limit-values_increase_by.h b/level_0/f_limit/tests/unit/c/test-limit-values_increase_by.h index c85abf19f..bf927dda9 100644 --- a/level_0/f_limit/tests/unit/c/test-limit-values_increase_by.h +++ b/level_0/f_limit/tests/unit/c/test-limit-values_increase_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Limit - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the limit project. diff --git a/level_0/f_limit/tests/unit/c/test-limit-values_resize.h b/level_0/f_limit/tests/unit/c/test-limit-values_resize.h index b82780faa..33c9b31d5 100644 --- a/level_0/f_limit/tests/unit/c/test-limit-values_resize.h +++ b/level_0/f_limit/tests/unit/c/test-limit-values_resize.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Limit - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the limit project. diff --git a/level_0/f_limit/tests/unit/c/test-limit-valuess_adjust.h b/level_0/f_limit/tests/unit/c/test-limit-valuess_adjust.h index 3a492eecc..1defe6eda 100644 --- a/level_0/f_limit/tests/unit/c/test-limit-valuess_adjust.h +++ b/level_0/f_limit/tests/unit/c/test-limit-valuess_adjust.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_limit/tests/unit/c/test-limit-valuess_append.h b/level_0/f_limit/tests/unit/c/test-limit-valuess_append.h index 117385a8d..ac7276f76 100644 --- a/level_0/f_limit/tests/unit/c/test-limit-valuess_append.h +++ b/level_0/f_limit/tests/unit/c/test-limit-valuess_append.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_limit/tests/unit/c/test-limit-valuess_append_all.h b/level_0/f_limit/tests/unit/c/test-limit-valuess_append_all.h index ffe4148f3..3fd674f2e 100644 --- a/level_0/f_limit/tests/unit/c/test-limit-valuess_append_all.h +++ b/level_0/f_limit/tests/unit/c/test-limit-valuess_append_all.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_limit/tests/unit/c/test-limit-valuess_decimate_by.h b/level_0/f_limit/tests/unit/c/test-limit-valuess_decimate_by.h index 22c4bc101..fcb53abb5 100644 --- a/level_0/f_limit/tests/unit/c/test-limit-valuess_decimate_by.h +++ b/level_0/f_limit/tests/unit/c/test-limit-valuess_decimate_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_limit/tests/unit/c/test-limit-valuess_decrease_by.h b/level_0/f_limit/tests/unit/c/test-limit-valuess_decrease_by.h index ae5a7fd1c..b2e4b6ab7 100644 --- a/level_0/f_limit/tests/unit/c/test-limit-valuess_decrease_by.h +++ b/level_0/f_limit/tests/unit/c/test-limit-valuess_decrease_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_limit/tests/unit/c/test-limit-valuess_increase.h b/level_0/f_limit/tests/unit/c/test-limit-valuess_increase.h index d4465ad96..85be3e1f8 100644 --- a/level_0/f_limit/tests/unit/c/test-limit-valuess_increase.h +++ b/level_0/f_limit/tests/unit/c/test-limit-valuess_increase.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_limit/tests/unit/c/test-limit-valuess_increase_by.h b/level_0/f_limit/tests/unit/c/test-limit-valuess_increase_by.h index 89b0f245b..695d9a857 100644 --- a/level_0/f_limit/tests/unit/c/test-limit-valuess_increase_by.h +++ b/level_0/f_limit/tests/unit/c/test-limit-valuess_increase_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_limit/tests/unit/c/test-limit-valuess_resize.h b/level_0/f_limit/tests/unit/c/test-limit-valuess_resize.h index b4f3aa1af..a39b44145 100644 --- a/level_0/f_limit/tests/unit/c/test-limit-valuess_resize.h +++ b/level_0/f_limit/tests/unit/c/test-limit-valuess_resize.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_limit/tests/unit/c/test-limit.h b/level_0/f_limit/tests/unit/c/test-limit.h index 2cfec99ec..d946af4e9 100644 --- a/level_0/f_limit/tests/unit/c/test-limit.h +++ b/level_0/f_limit/tests/unit/c/test-limit.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Limit - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the limit project. diff --git a/level_0/f_memory/c/memory.h b/level_0/f_memory/c/memory.h index 043d333a7..de2b970ea 100644 --- a/level_0/f_memory/c/memory.h +++ b/level_0/f_memory/c/memory.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Memory - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Provide means to use memory routines, with error checking. diff --git a/level_0/f_memory/c/memory/common.h b/level_0/f_memory/c/memory/common.h index 7220413d2..73ad175f7 100644 --- a/level_0/f_memory/c/memory/common.h +++ b/level_0/f_memory/c/memory/common.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Memory - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Defines iki common data. diff --git a/level_0/f_memory/c/memory/structure.h b/level_0/f_memory/c/memory/structure.h index 3cc5445e3..996323fef 100644 --- a/level_0/f_memory/c/memory/structure.h +++ b/level_0/f_memory/c/memory/structure.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Memory - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Defines memory structure data. diff --git a/level_0/f_memory/c/private-memory.h b/level_0/f_memory/c/private-memory.h index 1eb4c2ceb..17fb220de 100644 --- a/level_0/f_memory/c/private-memory.h +++ b/level_0/f_memory/c/private-memory.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Memory - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * These are provided for internal reduction in redundant code. diff --git a/level_0/f_memory/tests/unit/c/test-memory-adjust.h b/level_0/f_memory/tests/unit/c/test-memory-adjust.h index 9f7a38329..5c01691e4 100644 --- a/level_0/f_memory/tests/unit/c/test-memory-adjust.h +++ b/level_0/f_memory/tests/unit/c/test-memory-adjust.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Memory - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the memory project. diff --git a/level_0/f_memory/tests/unit/c/test-memory-delete.h b/level_0/f_memory/tests/unit/c/test-memory-delete.h index 0e41ec84e..cf26dfced 100644 --- a/level_0/f_memory/tests/unit/c/test-memory-delete.h +++ b/level_0/f_memory/tests/unit/c/test-memory-delete.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Memory - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the memory project. diff --git a/level_0/f_memory/tests/unit/c/test-memory-destroy.h b/level_0/f_memory/tests/unit/c/test-memory-destroy.h index 5a003997e..1e9f050c8 100644 --- a/level_0/f_memory/tests/unit/c/test-memory-destroy.h +++ b/level_0/f_memory/tests/unit/c/test-memory-destroy.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Memory - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the memory project. diff --git a/level_0/f_memory/tests/unit/c/test-memory-new.h b/level_0/f_memory/tests/unit/c/test-memory-new.h index 8e717c553..9f518702c 100644 --- a/level_0/f_memory/tests/unit/c/test-memory-new.h +++ b/level_0/f_memory/tests/unit/c/test-memory-new.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Memory - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the memory project. diff --git a/level_0/f_memory/tests/unit/c/test-memory-new_aligned.h b/level_0/f_memory/tests/unit/c/test-memory-new_aligned.h index 5169db1ed..fbd8597ad 100644 --- a/level_0/f_memory/tests/unit/c/test-memory-new_aligned.h +++ b/level_0/f_memory/tests/unit/c/test-memory-new_aligned.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Memory - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the memory project. diff --git a/level_0/f_memory/tests/unit/c/test-memory-resize.h b/level_0/f_memory/tests/unit/c/test-memory-resize.h index f80649698..5ea457e58 100644 --- a/level_0/f_memory/tests/unit/c/test-memory-resize.h +++ b/level_0/f_memory/tests/unit/c/test-memory-resize.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Memory - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the memory project. diff --git a/level_0/f_memory/tests/unit/c/test-memory.h b/level_0/f_memory/tests/unit/c/test-memory.h index 30dadbe2d..5307d5080 100644 --- a/level_0/f_memory/tests/unit/c/test-memory.h +++ b/level_0/f_memory/tests/unit/c/test-memory.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Memory - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the memory project. diff --git a/level_0/f_path/c/path.h b/level_0/f_path/c/path.h index e07a5c66b..f6a475d28 100644 --- a/level_0/f_path/c/path.h +++ b/level_0/f_path/c/path.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Path - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Provide path-related functionality. diff --git a/level_0/f_path/c/path/common.h b/level_0/f_path/c/path/common.h index b883416d0..3a9245b66 100644 --- a/level_0/f_path/c/path/common.h +++ b/level_0/f_path/c/path/common.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Path - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Defines common data to be used for/by project path. diff --git a/level_0/f_path/c/private-path.h b/level_0/f_path/c/private-path.h index a8ec6ac11..bce5b295c 100644 --- a/level_0/f_path/c/private-path.h +++ b/level_0/f_path/c/private-path.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Path - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * These are provided for internal reduction in redundant code. diff --git a/level_0/f_path/tests/unit/c/mock-path.h b/level_0/f_path/tests/unit/c/mock-path.h index 93249b173..453028b37 100644 --- a/level_0/f_path/tests/unit/c/mock-path.h +++ b/level_0/f_path/tests/unit/c/mock-path.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Path - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the path project. diff --git a/level_0/f_path/tests/unit/c/test-path-change.h b/level_0/f_path/tests/unit/c/test-path-change.h index 2362b8e76..98590ccd2 100644 --- a/level_0/f_path/tests/unit/c/test-path-change.h +++ b/level_0/f_path/tests/unit/c/test-path-change.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Path - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the path project. diff --git a/level_0/f_path/tests/unit/c/test-path-change_at.h b/level_0/f_path/tests/unit/c/test-path-change_at.h index 9543f97f4..67251e43a 100644 --- a/level_0/f_path/tests/unit/c/test-path-change_at.h +++ b/level_0/f_path/tests/unit/c/test-path-change_at.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Path - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the path project. diff --git a/level_0/f_path/tests/unit/c/test-path-current.h b/level_0/f_path/tests/unit/c/test-path-current.h index db1787d9a..d5c0f56e2 100644 --- a/level_0/f_path/tests/unit/c/test-path-current.h +++ b/level_0/f_path/tests/unit/c/test-path-current.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Path - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the path project. diff --git a/level_0/f_path/tests/unit/c/test-path-directory_cleanup.h b/level_0/f_path/tests/unit/c/test-path-directory_cleanup.h index 6bea3c8bc..6e7a2eddf 100644 --- a/level_0/f_path/tests/unit/c/test-path-directory_cleanup.h +++ b/level_0/f_path/tests/unit/c/test-path-directory_cleanup.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Path - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the path project. diff --git a/level_0/f_path/tests/unit/c/test-path-is.h b/level_0/f_path/tests/unit/c/test-path-is.h index 62fca0615..8e6865468 100644 --- a/level_0/f_path/tests/unit/c/test-path-is.h +++ b/level_0/f_path/tests/unit/c/test-path-is.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Path - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the path project. diff --git a/level_0/f_path/tests/unit/c/test-path-is_absolute.h b/level_0/f_path/tests/unit/c/test-path-is_absolute.h index 42af8df0a..ada3f9e65 100644 --- a/level_0/f_path/tests/unit/c/test-path-is_absolute.h +++ b/level_0/f_path/tests/unit/c/test-path-is_absolute.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Path - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the path project. diff --git a/level_0/f_path/tests/unit/c/test-path-is_relative.h b/level_0/f_path/tests/unit/c/test-path-is_relative.h index 4a315e806..0857cbc51 100644 --- a/level_0/f_path/tests/unit/c/test-path-is_relative.h +++ b/level_0/f_path/tests/unit/c/test-path-is_relative.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Path - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the path project. diff --git a/level_0/f_path/tests/unit/c/test-path-is_relative_current.h b/level_0/f_path/tests/unit/c/test-path-is_relative_current.h index 92db1cf89..6de0fa695 100644 --- a/level_0/f_path/tests/unit/c/test-path-is_relative_current.h +++ b/level_0/f_path/tests/unit/c/test-path-is_relative_current.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Path - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the path project. diff --git a/level_0/f_path/tests/unit/c/test-path-real.h b/level_0/f_path/tests/unit/c/test-path-real.h index 0012af6ff..283a65a2b 100644 --- a/level_0/f_path/tests/unit/c/test-path-real.h +++ b/level_0/f_path/tests/unit/c/test-path-real.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Path - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the path project. diff --git a/level_0/f_path/tests/unit/c/test-path.h b/level_0/f_path/tests/unit/c/test-path.h index 9a5d4b194..344674a23 100644 --- a/level_0/f_path/tests/unit/c/test-path.h +++ b/level_0/f_path/tests/unit/c/test-path.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Path - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the path project. diff --git a/level_0/f_pipe/c/pipe.h b/level_0/f_pipe/c/pipe.h index 1d7056c2f..69d014419 100644 --- a/level_0/f_pipe/c/pipe.h +++ b/level_0/f_pipe/c/pipe.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Pipe - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Provides pipe functionality. diff --git a/level_0/f_pipe/tests/unit/c/mock-pipe.h b/level_0/f_pipe/tests/unit/c/mock-pipe.h index ec74b8adf..29213b033 100644 --- a/level_0/f_pipe/tests/unit/c/mock-pipe.h +++ b/level_0/f_pipe/tests/unit/c/mock-pipe.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Pipe - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the pipe project. diff --git a/level_0/f_pipe/tests/unit/c/test-pipe-debug_exists.h b/level_0/f_pipe/tests/unit/c/test-pipe-debug_exists.h index 069baec5f..7aaea4e0d 100644 --- a/level_0/f_pipe/tests/unit/c/test-pipe-debug_exists.h +++ b/level_0/f_pipe/tests/unit/c/test-pipe-debug_exists.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Pipe - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the pipe project. diff --git a/level_0/f_pipe/tests/unit/c/test-pipe-error_exists.h b/level_0/f_pipe/tests/unit/c/test-pipe-error_exists.h index 80a8328e0..9e81aa0a6 100644 --- a/level_0/f_pipe/tests/unit/c/test-pipe-error_exists.h +++ b/level_0/f_pipe/tests/unit/c/test-pipe-error_exists.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Pipe - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the pipe project. diff --git a/level_0/f_pipe/tests/unit/c/test-pipe-input_exists.h b/level_0/f_pipe/tests/unit/c/test-pipe-input_exists.h index a04a31e16..6e1f6f4cc 100644 --- a/level_0/f_pipe/tests/unit/c/test-pipe-input_exists.h +++ b/level_0/f_pipe/tests/unit/c/test-pipe-input_exists.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Pipe - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the pipe project. diff --git a/level_0/f_pipe/tests/unit/c/test-pipe-warning_exists.h b/level_0/f_pipe/tests/unit/c/test-pipe-warning_exists.h index 563a6c07d..e157c3ccc 100644 --- a/level_0/f_pipe/tests/unit/c/test-pipe-warning_exists.h +++ b/level_0/f_pipe/tests/unit/c/test-pipe-warning_exists.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Pipe - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the pipe project. diff --git a/level_0/f_pipe/tests/unit/c/test-pipe.h b/level_0/f_pipe/tests/unit/c/test-pipe.h index 20858ee88..10eb2efb7 100644 --- a/level_0/f_pipe/tests/unit/c/test-pipe.h +++ b/level_0/f_pipe/tests/unit/c/test-pipe.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Pipe - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the pipe project. diff --git a/level_0/f_print/c/print.h b/level_0/f_print/c/print.h index a994bd4a6..7da686044 100644 --- a/level_0/f_print/c/print.h +++ b/level_0/f_print/c/print.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Print - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Provides some standard printing functions not available in a libc. diff --git a/level_0/f_print/c/print/common.h b/level_0/f_print/c/print/common.h index 025997385..60b76e473 100644 --- a/level_0/f_print/c/print/common.h +++ b/level_0/f_print/c/print/common.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Print - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Defines common data to be used for/by project print. diff --git a/level_0/f_print/c/print/private-to.h b/level_0/f_print/c/print/private-to.h index 99a49586e..bd8642278 100644 --- a/level_0/f_print/c/print/private-to.h +++ b/level_0/f_print/c/print/private-to.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Print - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * These are provided for internal reduction in redundant code. diff --git a/level_0/f_print/c/print/to.h b/level_0/f_print/c/print/to.h index 0aa960c26..c8597bb27 100644 --- a/level_0/f_print/c/print/to.h +++ b/level_0/f_print/c/print/to.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Print - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Defines print_to_* variants of print functins to be used for/by project print. diff --git a/level_0/f_print/c/private-print.h b/level_0/f_print/c/private-print.h index fc94f5e84..d088a6b83 100644 --- a/level_0/f_print/c/private-print.h +++ b/level_0/f_print/c/private-print.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Print - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * These are provided for internal reduction in redundant code. diff --git a/level_0/f_print/tests/unit/c/mock-print.h b/level_0/f_print/tests/unit/c/mock-print.h index c061f0b26..f10a6a593 100644 --- a/level_0/f_print/tests/unit/c/mock-print.h +++ b/level_0/f_print/tests/unit/c/mock-print.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Print - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the print project. diff --git a/level_0/f_print/tests/unit/c/test-print-.h b/level_0/f_print/tests/unit/c/test-print-.h index f57918a19..033493eaa 100644 --- a/level_0/f_print/tests/unit/c/test-print-.h +++ b/level_0/f_print/tests/unit/c/test-print-.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Print - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the print project. diff --git a/level_0/f_print/tests/unit/c/test-print-character.h b/level_0/f_print/tests/unit/c/test-print-character.h index 7e7c5c5a7..2a245e1b1 100644 --- a/level_0/f_print/tests/unit/c/test-print-character.h +++ b/level_0/f_print/tests/unit/c/test-print-character.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Print - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the print project. diff --git a/level_0/f_print/tests/unit/c/test-print-character_safely.h b/level_0/f_print/tests/unit/c/test-print-character_safely.h index 38159bf78..2de4b2b79 100644 --- a/level_0/f_print/tests/unit/c/test-print-character_safely.h +++ b/level_0/f_print/tests/unit/c/test-print-character_safely.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Print - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the print project. diff --git a/level_0/f_print/tests/unit/c/test-print-character_safely_get.h b/level_0/f_print/tests/unit/c/test-print-character_safely_get.h index 55a4f9e49..3d016039a 100644 --- a/level_0/f_print/tests/unit/c/test-print-character_safely_get.h +++ b/level_0/f_print/tests/unit/c/test-print-character_safely_get.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Print - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the print project. diff --git a/level_0/f_print/tests/unit/c/test-print-dynamic.h b/level_0/f_print/tests/unit/c/test-print-dynamic.h index b961e5bc2..2b413ca73 100644 --- a/level_0/f_print/tests/unit/c/test-print-dynamic.h +++ b/level_0/f_print/tests/unit/c/test-print-dynamic.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Print - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the print project. diff --git a/level_0/f_print/tests/unit/c/test-print-dynamic_partial.h b/level_0/f_print/tests/unit/c/test-print-dynamic_partial.h index 3952e2e06..327d748d8 100644 --- a/level_0/f_print/tests/unit/c/test-print-dynamic_partial.h +++ b/level_0/f_print/tests/unit/c/test-print-dynamic_partial.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Print - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the print project. diff --git a/level_0/f_print/tests/unit/c/test-print-dynamic_partial_raw.h b/level_0/f_print/tests/unit/c/test-print-dynamic_partial_raw.h index fe34f86ab..37b07dee7 100644 --- a/level_0/f_print/tests/unit/c/test-print-dynamic_partial_raw.h +++ b/level_0/f_print/tests/unit/c/test-print-dynamic_partial_raw.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Print - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the print project. diff --git a/level_0/f_print/tests/unit/c/test-print-dynamic_partial_raw_safely.h b/level_0/f_print/tests/unit/c/test-print-dynamic_partial_raw_safely.h index 7c62a630f..388cc980b 100644 --- a/level_0/f_print/tests/unit/c/test-print-dynamic_partial_raw_safely.h +++ b/level_0/f_print/tests/unit/c/test-print-dynamic_partial_raw_safely.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Print - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the print project. diff --git a/level_0/f_print/tests/unit/c/test-print-dynamic_partial_safely.h b/level_0/f_print/tests/unit/c/test-print-dynamic_partial_safely.h index 4e9a79804..660e65c07 100644 --- a/level_0/f_print/tests/unit/c/test-print-dynamic_partial_safely.h +++ b/level_0/f_print/tests/unit/c/test-print-dynamic_partial_safely.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Print - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the print project. diff --git a/level_0/f_print/tests/unit/c/test-print-dynamic_raw.h b/level_0/f_print/tests/unit/c/test-print-dynamic_raw.h index 952387050..568a6ce06 100644 --- a/level_0/f_print/tests/unit/c/test-print-dynamic_raw.h +++ b/level_0/f_print/tests/unit/c/test-print-dynamic_raw.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Print - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the print project. diff --git a/level_0/f_print/tests/unit/c/test-print-dynamic_raw_safely.h b/level_0/f_print/tests/unit/c/test-print-dynamic_raw_safely.h index f6ce51c25..7416489a5 100644 --- a/level_0/f_print/tests/unit/c/test-print-dynamic_raw_safely.h +++ b/level_0/f_print/tests/unit/c/test-print-dynamic_raw_safely.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Print - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the print project. diff --git a/level_0/f_print/tests/unit/c/test-print-dynamic_safely.h b/level_0/f_print/tests/unit/c/test-print-dynamic_safely.h index 8b600b24e..19e61e6d0 100644 --- a/level_0/f_print/tests/unit/c/test-print-dynamic_safely.h +++ b/level_0/f_print/tests/unit/c/test-print-dynamic_safely.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Print - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the print project. diff --git a/level_0/f_print/tests/unit/c/test-print-except.h b/level_0/f_print/tests/unit/c/test-print-except.h index 8e97d21c0..f4219e41c 100644 --- a/level_0/f_print/tests/unit/c/test-print-except.h +++ b/level_0/f_print/tests/unit/c/test-print-except.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Print - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the print project. diff --git a/level_0/f_print/tests/unit/c/test-print-except_dynamic.h b/level_0/f_print/tests/unit/c/test-print-except_dynamic.h index 2b637533f..d2106489e 100644 --- a/level_0/f_print/tests/unit/c/test-print-except_dynamic.h +++ b/level_0/f_print/tests/unit/c/test-print-except_dynamic.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Print - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the print project. diff --git a/level_0/f_print/tests/unit/c/test-print-except_dynamic_partial.h b/level_0/f_print/tests/unit/c/test-print-except_dynamic_partial.h index 7fb8bec14..40d9477be 100644 --- a/level_0/f_print/tests/unit/c/test-print-except_dynamic_partial.h +++ b/level_0/f_print/tests/unit/c/test-print-except_dynamic_partial.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Print - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the print project. diff --git a/level_0/f_print/tests/unit/c/test-print-except_dynamic_partial_raw.h b/level_0/f_print/tests/unit/c/test-print-except_dynamic_partial_raw.h index eba293472..4701e3095 100644 --- a/level_0/f_print/tests/unit/c/test-print-except_dynamic_partial_raw.h +++ b/level_0/f_print/tests/unit/c/test-print-except_dynamic_partial_raw.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Print - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the print project. diff --git a/level_0/f_print/tests/unit/c/test-print-except_dynamic_partial_raw_safely.h b/level_0/f_print/tests/unit/c/test-print-except_dynamic_partial_raw_safely.h index 41a837091..86186dee7 100644 --- a/level_0/f_print/tests/unit/c/test-print-except_dynamic_partial_raw_safely.h +++ b/level_0/f_print/tests/unit/c/test-print-except_dynamic_partial_raw_safely.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Print - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the print project. diff --git a/level_0/f_print/tests/unit/c/test-print-except_dynamic_partial_safely.h b/level_0/f_print/tests/unit/c/test-print-except_dynamic_partial_safely.h index daf758790..326cf4593 100644 --- a/level_0/f_print/tests/unit/c/test-print-except_dynamic_partial_safely.h +++ b/level_0/f_print/tests/unit/c/test-print-except_dynamic_partial_safely.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Print - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the print project. diff --git a/level_0/f_print/tests/unit/c/test-print-except_dynamic_raw.h b/level_0/f_print/tests/unit/c/test-print-except_dynamic_raw.h index e859286e6..3bbb08ba4 100644 --- a/level_0/f_print/tests/unit/c/test-print-except_dynamic_raw.h +++ b/level_0/f_print/tests/unit/c/test-print-except_dynamic_raw.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Print - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the print project. diff --git a/level_0/f_print/tests/unit/c/test-print-except_dynamic_raw_safely.h b/level_0/f_print/tests/unit/c/test-print-except_dynamic_raw_safely.h index a8caf6d1b..8e465b3d2 100644 --- a/level_0/f_print/tests/unit/c/test-print-except_dynamic_raw_safely.h +++ b/level_0/f_print/tests/unit/c/test-print-except_dynamic_raw_safely.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Print - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the print project. diff --git a/level_0/f_print/tests/unit/c/test-print-except_dynamic_safely.h b/level_0/f_print/tests/unit/c/test-print-except_dynamic_safely.h index 04bd60e0e..a4cc5e64a 100644 --- a/level_0/f_print/tests/unit/c/test-print-except_dynamic_safely.h +++ b/level_0/f_print/tests/unit/c/test-print-except_dynamic_safely.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Print - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the print project. diff --git a/level_0/f_print/tests/unit/c/test-print-except_in.h b/level_0/f_print/tests/unit/c/test-print-except_in.h index abfcb58b5..6fd2917c2 100644 --- a/level_0/f_print/tests/unit/c/test-print-except_in.h +++ b/level_0/f_print/tests/unit/c/test-print-except_in.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Print - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the print project. diff --git a/level_0/f_print/tests/unit/c/test-print-except_in_dynamic.h b/level_0/f_print/tests/unit/c/test-print-except_in_dynamic.h index 284661124..ba4afb38f 100644 --- a/level_0/f_print/tests/unit/c/test-print-except_in_dynamic.h +++ b/level_0/f_print/tests/unit/c/test-print-except_in_dynamic.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Print - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the print project. diff --git a/level_0/f_print/tests/unit/c/test-print-except_in_dynamic_partial.h b/level_0/f_print/tests/unit/c/test-print-except_in_dynamic_partial.h index 34bd8d636..4c131920e 100644 --- a/level_0/f_print/tests/unit/c/test-print-except_in_dynamic_partial.h +++ b/level_0/f_print/tests/unit/c/test-print-except_in_dynamic_partial.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Print - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the print project. diff --git a/level_0/f_print/tests/unit/c/test-print-except_in_dynamic_partial_raw.h b/level_0/f_print/tests/unit/c/test-print-except_in_dynamic_partial_raw.h index b8435ac21..9f158a688 100644 --- a/level_0/f_print/tests/unit/c/test-print-except_in_dynamic_partial_raw.h +++ b/level_0/f_print/tests/unit/c/test-print-except_in_dynamic_partial_raw.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Print - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the print project. diff --git a/level_0/f_print/tests/unit/c/test-print-except_in_dynamic_partial_raw_safely.h b/level_0/f_print/tests/unit/c/test-print-except_in_dynamic_partial_raw_safely.h index 73e3d5d22..11e3f9425 100644 --- a/level_0/f_print/tests/unit/c/test-print-except_in_dynamic_partial_raw_safely.h +++ b/level_0/f_print/tests/unit/c/test-print-except_in_dynamic_partial_raw_safely.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Print - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the print project. diff --git a/level_0/f_print/tests/unit/c/test-print-except_in_dynamic_partial_safely.h b/level_0/f_print/tests/unit/c/test-print-except_in_dynamic_partial_safely.h index e2684dda3..dd72238ab 100644 --- a/level_0/f_print/tests/unit/c/test-print-except_in_dynamic_partial_safely.h +++ b/level_0/f_print/tests/unit/c/test-print-except_in_dynamic_partial_safely.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Print - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the print project. diff --git a/level_0/f_print/tests/unit/c/test-print-except_in_dynamic_raw.h b/level_0/f_print/tests/unit/c/test-print-except_in_dynamic_raw.h index 7161eb41f..f2a06159c 100644 --- a/level_0/f_print/tests/unit/c/test-print-except_in_dynamic_raw.h +++ b/level_0/f_print/tests/unit/c/test-print-except_in_dynamic_raw.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Print - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the print project. diff --git a/level_0/f_print/tests/unit/c/test-print-except_in_dynamic_raw_safely.h b/level_0/f_print/tests/unit/c/test-print-except_in_dynamic_raw_safely.h index 8037c3603..c906c138b 100644 --- a/level_0/f_print/tests/unit/c/test-print-except_in_dynamic_raw_safely.h +++ b/level_0/f_print/tests/unit/c/test-print-except_in_dynamic_raw_safely.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Print - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the print project. diff --git a/level_0/f_print/tests/unit/c/test-print-except_in_dynamic_safely.h b/level_0/f_print/tests/unit/c/test-print-except_in_dynamic_safely.h index b70500e09..901c413e2 100644 --- a/level_0/f_print/tests/unit/c/test-print-except_in_dynamic_safely.h +++ b/level_0/f_print/tests/unit/c/test-print-except_in_dynamic_safely.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Print - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the print project. diff --git a/level_0/f_print/tests/unit/c/test-print-except_in_raw.h b/level_0/f_print/tests/unit/c/test-print-except_in_raw.h index c4da8dd24..55bb9a343 100644 --- a/level_0/f_print/tests/unit/c/test-print-except_in_raw.h +++ b/level_0/f_print/tests/unit/c/test-print-except_in_raw.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Print - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the print project. diff --git a/level_0/f_print/tests/unit/c/test-print-except_in_raw_safely.h b/level_0/f_print/tests/unit/c/test-print-except_in_raw_safely.h index ca115927c..353e6e08b 100644 --- a/level_0/f_print/tests/unit/c/test-print-except_in_raw_safely.h +++ b/level_0/f_print/tests/unit/c/test-print-except_in_raw_safely.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Print - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the print project. diff --git a/level_0/f_print/tests/unit/c/test-print-except_in_safely.h b/level_0/f_print/tests/unit/c/test-print-except_in_safely.h index d8e01edc7..e317db0ec 100644 --- a/level_0/f_print/tests/unit/c/test-print-except_in_safely.h +++ b/level_0/f_print/tests/unit/c/test-print-except_in_safely.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Print - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the print project. diff --git a/level_0/f_print/tests/unit/c/test-print-except_raw.h b/level_0/f_print/tests/unit/c/test-print-except_raw.h index 8731348ec..12550876d 100644 --- a/level_0/f_print/tests/unit/c/test-print-except_raw.h +++ b/level_0/f_print/tests/unit/c/test-print-except_raw.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Print - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the print project. diff --git a/level_0/f_print/tests/unit/c/test-print-except_raw_safely.h b/level_0/f_print/tests/unit/c/test-print-except_raw_safely.h index 1b86c68cb..419d89893 100644 --- a/level_0/f_print/tests/unit/c/test-print-except_raw_safely.h +++ b/level_0/f_print/tests/unit/c/test-print-except_raw_safely.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Print - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the print project. diff --git a/level_0/f_print/tests/unit/c/test-print-except_safely.h b/level_0/f_print/tests/unit/c/test-print-except_safely.h index 0fd60bbbd..c618d6433 100644 --- a/level_0/f_print/tests/unit/c/test-print-except_safely.h +++ b/level_0/f_print/tests/unit/c/test-print-except_safely.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Print - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the print project. diff --git a/level_0/f_print/tests/unit/c/test-print-raw.h b/level_0/f_print/tests/unit/c/test-print-raw.h index 86cda9229..89fd04f81 100644 --- a/level_0/f_print/tests/unit/c/test-print-raw.h +++ b/level_0/f_print/tests/unit/c/test-print-raw.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Print - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the print project. diff --git a/level_0/f_print/tests/unit/c/test-print-raw_safely.h b/level_0/f_print/tests/unit/c/test-print-raw_safely.h index c6748ce67..044e7eae9 100644 --- a/level_0/f_print/tests/unit/c/test-print-raw_safely.h +++ b/level_0/f_print/tests/unit/c/test-print-raw_safely.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Print - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the print project. diff --git a/level_0/f_print/tests/unit/c/test-print-raw_terminated.h b/level_0/f_print/tests/unit/c/test-print-raw_terminated.h index c61dd352c..0ecee27fc 100644 --- a/level_0/f_print/tests/unit/c/test-print-raw_terminated.h +++ b/level_0/f_print/tests/unit/c/test-print-raw_terminated.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Print - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the print project. diff --git a/level_0/f_print/tests/unit/c/test-print-safely.h b/level_0/f_print/tests/unit/c/test-print-safely.h index d76a325dc..f568e4648 100644 --- a/level_0/f_print/tests/unit/c/test-print-safely.h +++ b/level_0/f_print/tests/unit/c/test-print-safely.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Print - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the print project. diff --git a/level_0/f_print/tests/unit/c/test-print-safely_get.h b/level_0/f_print/tests/unit/c/test-print-safely_get.h index d186cb590..33730ddf1 100644 --- a/level_0/f_print/tests/unit/c/test-print-safely_get.h +++ b/level_0/f_print/tests/unit/c/test-print-safely_get.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Print - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the print project. diff --git a/level_0/f_print/tests/unit/c/test-print-safely_terminated.h b/level_0/f_print/tests/unit/c/test-print-safely_terminated.h index 9217b00db..17bac1934 100644 --- a/level_0/f_print/tests/unit/c/test-print-safely_terminated.h +++ b/level_0/f_print/tests/unit/c/test-print-safely_terminated.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Print - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the print project. diff --git a/level_0/f_print/tests/unit/c/test-print-terminated.h b/level_0/f_print/tests/unit/c/test-print-terminated.h index 579ee7b77..6a3f0e86d 100644 --- a/level_0/f_print/tests/unit/c/test-print-terminated.h +++ b/level_0/f_print/tests/unit/c/test-print-terminated.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Print - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the print project. diff --git a/level_0/f_print/tests/unit/c/test-print-to.h b/level_0/f_print/tests/unit/c/test-print-to.h index 99459f9df..0a060b047 100644 --- a/level_0/f_print/tests/unit/c/test-print-to.h +++ b/level_0/f_print/tests/unit/c/test-print-to.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Print - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the print project. diff --git a/level_0/f_print/tests/unit/c/test-print-to_character.h b/level_0/f_print/tests/unit/c/test-print-to_character.h index 298778dc8..18022a1c4 100644 --- a/level_0/f_print/tests/unit/c/test-print-to_character.h +++ b/level_0/f_print/tests/unit/c/test-print-to_character.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Print - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the print project. diff --git a/level_0/f_print/tests/unit/c/test-print-to_character_safely.h b/level_0/f_print/tests/unit/c/test-print-to_character_safely.h index f7315c7ed..28215c754 100644 --- a/level_0/f_print/tests/unit/c/test-print-to_character_safely.h +++ b/level_0/f_print/tests/unit/c/test-print-to_character_safely.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Print - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the print project. diff --git a/level_0/f_print/tests/unit/c/test-print-to_dynamic.h b/level_0/f_print/tests/unit/c/test-print-to_dynamic.h index 51f6c7ef3..cdc80fac8 100644 --- a/level_0/f_print/tests/unit/c/test-print-to_dynamic.h +++ b/level_0/f_print/tests/unit/c/test-print-to_dynamic.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Print - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the print project. diff --git a/level_0/f_print/tests/unit/c/test-print-to_dynamic_partial.h b/level_0/f_print/tests/unit/c/test-print-to_dynamic_partial.h index 0e9046dc7..4cfbab93a 100644 --- a/level_0/f_print/tests/unit/c/test-print-to_dynamic_partial.h +++ b/level_0/f_print/tests/unit/c/test-print-to_dynamic_partial.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Print - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the print project. diff --git a/level_0/f_print/tests/unit/c/test-print-to_dynamic_partial_raw.h b/level_0/f_print/tests/unit/c/test-print-to_dynamic_partial_raw.h index 4c45a5864..294bdc0de 100644 --- a/level_0/f_print/tests/unit/c/test-print-to_dynamic_partial_raw.h +++ b/level_0/f_print/tests/unit/c/test-print-to_dynamic_partial_raw.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Print - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the print project. diff --git a/level_0/f_print/tests/unit/c/test-print-to_dynamic_partial_raw_safely.h b/level_0/f_print/tests/unit/c/test-print-to_dynamic_partial_raw_safely.h index c5cbe2f77..ea27654e3 100644 --- a/level_0/f_print/tests/unit/c/test-print-to_dynamic_partial_raw_safely.h +++ b/level_0/f_print/tests/unit/c/test-print-to_dynamic_partial_raw_safely.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Print - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the print project. diff --git a/level_0/f_print/tests/unit/c/test-print-to_dynamic_partial_safely.h b/level_0/f_print/tests/unit/c/test-print-to_dynamic_partial_safely.h index 90dbbc25a..7ea36f28d 100644 --- a/level_0/f_print/tests/unit/c/test-print-to_dynamic_partial_safely.h +++ b/level_0/f_print/tests/unit/c/test-print-to_dynamic_partial_safely.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Print - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the print project. diff --git a/level_0/f_print/tests/unit/c/test-print-to_dynamic_raw.h b/level_0/f_print/tests/unit/c/test-print-to_dynamic_raw.h index a3ddc1ccc..85768aa09 100644 --- a/level_0/f_print/tests/unit/c/test-print-to_dynamic_raw.h +++ b/level_0/f_print/tests/unit/c/test-print-to_dynamic_raw.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Print - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the print project. diff --git a/level_0/f_print/tests/unit/c/test-print-to_dynamic_raw_safely.h b/level_0/f_print/tests/unit/c/test-print-to_dynamic_raw_safely.h index 94796dcd2..dc33244e7 100644 --- a/level_0/f_print/tests/unit/c/test-print-to_dynamic_raw_safely.h +++ b/level_0/f_print/tests/unit/c/test-print-to_dynamic_raw_safely.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Print - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the print project. diff --git a/level_0/f_print/tests/unit/c/test-print-to_dynamic_safely.h b/level_0/f_print/tests/unit/c/test-print-to_dynamic_safely.h index f388df870..c33d94358 100644 --- a/level_0/f_print/tests/unit/c/test-print-to_dynamic_safely.h +++ b/level_0/f_print/tests/unit/c/test-print-to_dynamic_safely.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Print - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the print project. diff --git a/level_0/f_print/tests/unit/c/test-print-to_except.h b/level_0/f_print/tests/unit/c/test-print-to_except.h index 44c3bb2b5..aa383afb0 100644 --- a/level_0/f_print/tests/unit/c/test-print-to_except.h +++ b/level_0/f_print/tests/unit/c/test-print-to_except.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Print - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the print project. diff --git a/level_0/f_print/tests/unit/c/test-print-to_except_dynamic.h b/level_0/f_print/tests/unit/c/test-print-to_except_dynamic.h index 1beef6984..37e787496 100644 --- a/level_0/f_print/tests/unit/c/test-print-to_except_dynamic.h +++ b/level_0/f_print/tests/unit/c/test-print-to_except_dynamic.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Print - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the print project. diff --git a/level_0/f_print/tests/unit/c/test-print-to_except_dynamic_partial.h b/level_0/f_print/tests/unit/c/test-print-to_except_dynamic_partial.h index 1058e90c7..1cc10465c 100644 --- a/level_0/f_print/tests/unit/c/test-print-to_except_dynamic_partial.h +++ b/level_0/f_print/tests/unit/c/test-print-to_except_dynamic_partial.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Print - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the print project. diff --git a/level_0/f_print/tests/unit/c/test-print-to_except_dynamic_partial_raw.h b/level_0/f_print/tests/unit/c/test-print-to_except_dynamic_partial_raw.h index 87ef61fc5..40bf35ef6 100644 --- a/level_0/f_print/tests/unit/c/test-print-to_except_dynamic_partial_raw.h +++ b/level_0/f_print/tests/unit/c/test-print-to_except_dynamic_partial_raw.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Print - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the print project. diff --git a/level_0/f_print/tests/unit/c/test-print-to_except_dynamic_partial_raw_safely.h b/level_0/f_print/tests/unit/c/test-print-to_except_dynamic_partial_raw_safely.h index deec69f00..c26ac0ce1 100644 --- a/level_0/f_print/tests/unit/c/test-print-to_except_dynamic_partial_raw_safely.h +++ b/level_0/f_print/tests/unit/c/test-print-to_except_dynamic_partial_raw_safely.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Print - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the print project. diff --git a/level_0/f_print/tests/unit/c/test-print-to_except_dynamic_partial_safely.h b/level_0/f_print/tests/unit/c/test-print-to_except_dynamic_partial_safely.h index a3f57a6d4..70eb9666f 100644 --- a/level_0/f_print/tests/unit/c/test-print-to_except_dynamic_partial_safely.h +++ b/level_0/f_print/tests/unit/c/test-print-to_except_dynamic_partial_safely.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Print - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the print project. diff --git a/level_0/f_print/tests/unit/c/test-print-to_except_dynamic_raw.h b/level_0/f_print/tests/unit/c/test-print-to_except_dynamic_raw.h index da5866518..f166f043e 100644 --- a/level_0/f_print/tests/unit/c/test-print-to_except_dynamic_raw.h +++ b/level_0/f_print/tests/unit/c/test-print-to_except_dynamic_raw.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Print - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the print project. diff --git a/level_0/f_print/tests/unit/c/test-print-to_except_dynamic_raw_safely.h b/level_0/f_print/tests/unit/c/test-print-to_except_dynamic_raw_safely.h index eca588882..7e43069e0 100644 --- a/level_0/f_print/tests/unit/c/test-print-to_except_dynamic_raw_safely.h +++ b/level_0/f_print/tests/unit/c/test-print-to_except_dynamic_raw_safely.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Print - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the print project. diff --git a/level_0/f_print/tests/unit/c/test-print-to_except_dynamic_safely.h b/level_0/f_print/tests/unit/c/test-print-to_except_dynamic_safely.h index a536ae57f..099f54d01 100644 --- a/level_0/f_print/tests/unit/c/test-print-to_except_dynamic_safely.h +++ b/level_0/f_print/tests/unit/c/test-print-to_except_dynamic_safely.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Print - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the print project. diff --git a/level_0/f_print/tests/unit/c/test-print-to_except_in.h b/level_0/f_print/tests/unit/c/test-print-to_except_in.h index 0ae87be1a..ecd13ed66 100644 --- a/level_0/f_print/tests/unit/c/test-print-to_except_in.h +++ b/level_0/f_print/tests/unit/c/test-print-to_except_in.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Print - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the print project. diff --git a/level_0/f_print/tests/unit/c/test-print-to_except_in_dynamic.h b/level_0/f_print/tests/unit/c/test-print-to_except_in_dynamic.h index 8d36bd221..b9efa653d 100644 --- a/level_0/f_print/tests/unit/c/test-print-to_except_in_dynamic.h +++ b/level_0/f_print/tests/unit/c/test-print-to_except_in_dynamic.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Print - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the print project. diff --git a/level_0/f_print/tests/unit/c/test-print-to_except_in_dynamic_partial.h b/level_0/f_print/tests/unit/c/test-print-to_except_in_dynamic_partial.h index 2f53667e2..da9a5b853 100644 --- a/level_0/f_print/tests/unit/c/test-print-to_except_in_dynamic_partial.h +++ b/level_0/f_print/tests/unit/c/test-print-to_except_in_dynamic_partial.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Print - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the print project. diff --git a/level_0/f_print/tests/unit/c/test-print-to_except_in_dynamic_partial_raw.h b/level_0/f_print/tests/unit/c/test-print-to_except_in_dynamic_partial_raw.h index d1b748f5a..8627967e3 100644 --- a/level_0/f_print/tests/unit/c/test-print-to_except_in_dynamic_partial_raw.h +++ b/level_0/f_print/tests/unit/c/test-print-to_except_in_dynamic_partial_raw.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Print - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the print project. diff --git a/level_0/f_print/tests/unit/c/test-print-to_except_in_dynamic_partial_raw_safely.h b/level_0/f_print/tests/unit/c/test-print-to_except_in_dynamic_partial_raw_safely.h index db1193756..108a9b69a 100644 --- a/level_0/f_print/tests/unit/c/test-print-to_except_in_dynamic_partial_raw_safely.h +++ b/level_0/f_print/tests/unit/c/test-print-to_except_in_dynamic_partial_raw_safely.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Print - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the print project. diff --git a/level_0/f_print/tests/unit/c/test-print-to_except_in_dynamic_partial_safely.h b/level_0/f_print/tests/unit/c/test-print-to_except_in_dynamic_partial_safely.h index 54d55e464..7298349f1 100644 --- a/level_0/f_print/tests/unit/c/test-print-to_except_in_dynamic_partial_safely.h +++ b/level_0/f_print/tests/unit/c/test-print-to_except_in_dynamic_partial_safely.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Print - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the print project. diff --git a/level_0/f_print/tests/unit/c/test-print-to_except_in_dynamic_raw.h b/level_0/f_print/tests/unit/c/test-print-to_except_in_dynamic_raw.h index 795f0de3b..f74a7b3a7 100644 --- a/level_0/f_print/tests/unit/c/test-print-to_except_in_dynamic_raw.h +++ b/level_0/f_print/tests/unit/c/test-print-to_except_in_dynamic_raw.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Print - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the print project. diff --git a/level_0/f_print/tests/unit/c/test-print-to_except_in_dynamic_raw_safely.h b/level_0/f_print/tests/unit/c/test-print-to_except_in_dynamic_raw_safely.h index d2dc5f303..345362b4b 100644 --- a/level_0/f_print/tests/unit/c/test-print-to_except_in_dynamic_raw_safely.h +++ b/level_0/f_print/tests/unit/c/test-print-to_except_in_dynamic_raw_safely.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Print - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the print project. diff --git a/level_0/f_print/tests/unit/c/test-print-to_except_in_dynamic_safely.h b/level_0/f_print/tests/unit/c/test-print-to_except_in_dynamic_safely.h index 9dc9143ad..e765ac9e7 100644 --- a/level_0/f_print/tests/unit/c/test-print-to_except_in_dynamic_safely.h +++ b/level_0/f_print/tests/unit/c/test-print-to_except_in_dynamic_safely.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Print - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the print project. diff --git a/level_0/f_print/tests/unit/c/test-print-to_except_in_raw.h b/level_0/f_print/tests/unit/c/test-print-to_except_in_raw.h index 8bdbebfbb..06f68f63b 100644 --- a/level_0/f_print/tests/unit/c/test-print-to_except_in_raw.h +++ b/level_0/f_print/tests/unit/c/test-print-to_except_in_raw.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Print - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the print project. diff --git a/level_0/f_print/tests/unit/c/test-print-to_except_in_raw_safely.h b/level_0/f_print/tests/unit/c/test-print-to_except_in_raw_safely.h index 1af3733f5..4cc4c1896 100644 --- a/level_0/f_print/tests/unit/c/test-print-to_except_in_raw_safely.h +++ b/level_0/f_print/tests/unit/c/test-print-to_except_in_raw_safely.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Print - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the print project. diff --git a/level_0/f_print/tests/unit/c/test-print-to_except_in_safely.h b/level_0/f_print/tests/unit/c/test-print-to_except_in_safely.h index 06eafe67b..d442701f4 100644 --- a/level_0/f_print/tests/unit/c/test-print-to_except_in_safely.h +++ b/level_0/f_print/tests/unit/c/test-print-to_except_in_safely.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Print - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the print project. diff --git a/level_0/f_print/tests/unit/c/test-print-to_except_raw.h b/level_0/f_print/tests/unit/c/test-print-to_except_raw.h index ccda45879..e8d9cee84 100644 --- a/level_0/f_print/tests/unit/c/test-print-to_except_raw.h +++ b/level_0/f_print/tests/unit/c/test-print-to_except_raw.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Print - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the print project. diff --git a/level_0/f_print/tests/unit/c/test-print-to_except_raw_safely.h b/level_0/f_print/tests/unit/c/test-print-to_except_raw_safely.h index 4fe5c3fb8..8f1d74fd7 100644 --- a/level_0/f_print/tests/unit/c/test-print-to_except_raw_safely.h +++ b/level_0/f_print/tests/unit/c/test-print-to_except_raw_safely.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Print - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the print project. diff --git a/level_0/f_print/tests/unit/c/test-print-to_except_safely.h b/level_0/f_print/tests/unit/c/test-print-to_except_safely.h index d4f913d19..547f12e50 100644 --- a/level_0/f_print/tests/unit/c/test-print-to_except_safely.h +++ b/level_0/f_print/tests/unit/c/test-print-to_except_safely.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Print - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the print project. diff --git a/level_0/f_print/tests/unit/c/test-print-to_raw.h b/level_0/f_print/tests/unit/c/test-print-to_raw.h index c85c25a09..750430ed7 100644 --- a/level_0/f_print/tests/unit/c/test-print-to_raw.h +++ b/level_0/f_print/tests/unit/c/test-print-to_raw.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Print - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the print project. diff --git a/level_0/f_print/tests/unit/c/test-print-to_raw_safely.h b/level_0/f_print/tests/unit/c/test-print-to_raw_safely.h index 32e19216e..1100d67d3 100644 --- a/level_0/f_print/tests/unit/c/test-print-to_raw_safely.h +++ b/level_0/f_print/tests/unit/c/test-print-to_raw_safely.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Print - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the print project. diff --git a/level_0/f_print/tests/unit/c/test-print-to_raw_terminated.h b/level_0/f_print/tests/unit/c/test-print-to_raw_terminated.h index 1391921d5..261518907 100644 --- a/level_0/f_print/tests/unit/c/test-print-to_raw_terminated.h +++ b/level_0/f_print/tests/unit/c/test-print-to_raw_terminated.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Print - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the print project. diff --git a/level_0/f_print/tests/unit/c/test-print-to_safely.h b/level_0/f_print/tests/unit/c/test-print-to_safely.h index a396d7ae5..ace240811 100644 --- a/level_0/f_print/tests/unit/c/test-print-to_safely.h +++ b/level_0/f_print/tests/unit/c/test-print-to_safely.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Print - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the print project. diff --git a/level_0/f_print/tests/unit/c/test-print-to_safely_terminated.h b/level_0/f_print/tests/unit/c/test-print-to_safely_terminated.h index bdc29a281..2b3ec2c97 100644 --- a/level_0/f_print/tests/unit/c/test-print-to_safely_terminated.h +++ b/level_0/f_print/tests/unit/c/test-print-to_safely_terminated.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Print - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the print project. diff --git a/level_0/f_print/tests/unit/c/test-print-to_terminated.h b/level_0/f_print/tests/unit/c/test-print-to_terminated.h index 9c824d1e7..6ee90437d 100644 --- a/level_0/f_print/tests/unit/c/test-print-to_terminated.h +++ b/level_0/f_print/tests/unit/c/test-print-to_terminated.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Print - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the print project. diff --git a/level_0/f_print/tests/unit/c/test-print.h b/level_0/f_print/tests/unit/c/test-print.h index 700c5f540..6b1f055a2 100644 --- a/level_0/f_print/tests/unit/c/test-print.h +++ b/level_0/f_print/tests/unit/c/test-print.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Print - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the print project. diff --git a/level_0/f_serialize/c/private-serialize.h b/level_0/f_serialize/c/private-serialize.h index 1b168e8fe..b294f8ab2 100644 --- a/level_0/f_serialize/c/private-serialize.h +++ b/level_0/f_serialize/c/private-serialize.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Serialize - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * These are provided for internal reduction in redundant code. diff --git a/level_0/f_serialize/c/serialize.h b/level_0/f_serialize/c/serialize.h index 61cd24fc6..b97b49e7d 100644 --- a/level_0/f_serialize/c/serialize.h +++ b/level_0/f_serialize/c/serialize.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Serialize - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Provides string processing functionality for what is to be defined as a serialize string. diff --git a/level_0/f_serialize/c/serialize/common.h b/level_0/f_serialize/c/serialize/common.h index e9ad446c1..f69e851f4 100644 --- a/level_0/f_serialize/c/serialize/common.h +++ b/level_0/f_serialize/c/serialize/common.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Serialize - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Defines common data to be used for/by project serialize. diff --git a/level_0/f_serialize/tests/unit/c/test-serialize-from_simple.h b/level_0/f_serialize/tests/unit/c/test-serialize-from_simple.h index b5904b41b..428dd69ba 100644 --- a/level_0/f_serialize/tests/unit/c/test-serialize-from_simple.h +++ b/level_0/f_serialize/tests/unit/c/test-serialize-from_simple.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Serialize - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the serialize project. diff --git a/level_0/f_serialize/tests/unit/c/test-serialize-from_simple_get.h b/level_0/f_serialize/tests/unit/c/test-serialize-from_simple_get.h index f99959dce..fece808de 100644 --- a/level_0/f_serialize/tests/unit/c/test-serialize-from_simple_get.h +++ b/level_0/f_serialize/tests/unit/c/test-serialize-from_simple_get.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Serialize - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the serialize project. diff --git a/level_0/f_serialize/tests/unit/c/test-serialize-from_simple_range.h b/level_0/f_serialize/tests/unit/c/test-serialize-from_simple_range.h index 25aa02fa9..a1baf2ea9 100644 --- a/level_0/f_serialize/tests/unit/c/test-serialize-from_simple_range.h +++ b/level_0/f_serialize/tests/unit/c/test-serialize-from_simple_range.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Serialize - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the serialize project. diff --git a/level_0/f_serialize/tests/unit/c/test-serialize-from_simple_select.h b/level_0/f_serialize/tests/unit/c/test-serialize-from_simple_select.h index 66da08c3e..bd8222aad 100644 --- a/level_0/f_serialize/tests/unit/c/test-serialize-from_simple_select.h +++ b/level_0/f_serialize/tests/unit/c/test-serialize-from_simple_select.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Serialize - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the serialize project. diff --git a/level_0/f_serialize/tests/unit/c/test-serialize-to_simple.h b/level_0/f_serialize/tests/unit/c/test-serialize-to_simple.h index 982ccd8a3..d9f7291e4 100644 --- a/level_0/f_serialize/tests/unit/c/test-serialize-to_simple.h +++ b/level_0/f_serialize/tests/unit/c/test-serialize-to_simple.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Serialize - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the serialize project. diff --git a/level_0/f_serialize/tests/unit/c/test-serialize.h b/level_0/f_serialize/tests/unit/c/test-serialize.h index 9c5b1334c..1a96b46da 100644 --- a/level_0/f_serialize/tests/unit/c/test-serialize.h +++ b/level_0/f_serialize/tests/unit/c/test-serialize.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Serialize - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the serialize project. diff --git a/level_0/f_signal/c/signal.h b/level_0/f_signal/c/signal.h index c868866a3..85f87c6a9 100644 --- a/level_0/f_signal/c/signal.h +++ b/level_0/f_signal/c/signal.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Signal - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Provides signal processing functionality, such as signal variable handling. diff --git a/level_0/f_signal/c/signal/common.h b/level_0/f_signal/c/signal/common.h index 48a57a0d1..8958b8b6e 100644 --- a/level_0/f_signal/c/signal/common.h +++ b/level_0/f_signal/c/signal/common.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Signal - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Defines common data to be used for/by project signal. diff --git a/level_0/f_signal/tests/unit/c/mock-signal.h b/level_0/f_signal/tests/unit/c/mock-signal.h index cd2702562..656f41188 100644 --- a/level_0/f_signal/tests/unit/c/mock-signal.h +++ b/level_0/f_signal/tests/unit/c/mock-signal.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Account - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the signal project. diff --git a/level_0/f_signal/tests/unit/c/test-signal-action.h b/level_0/f_signal/tests/unit/c/test-signal-action.h index 23eda75ba..f45b10311 100644 --- a/level_0/f_signal/tests/unit/c/test-signal-action.h +++ b/level_0/f_signal/tests/unit/c/test-signal-action.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Signal - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the signal project. diff --git a/level_0/f_signal/tests/unit/c/test-signal-close.h b/level_0/f_signal/tests/unit/c/test-signal-close.h index 0dcf1c727..4dd8769b5 100644 --- a/level_0/f_signal/tests/unit/c/test-signal-close.h +++ b/level_0/f_signal/tests/unit/c/test-signal-close.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Signal - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the signal project. diff --git a/level_0/f_signal/tests/unit/c/test-signal-mask.h b/level_0/f_signal/tests/unit/c/test-signal-mask.h index 3ae7e4a81..25bc5bb2b 100644 --- a/level_0/f_signal/tests/unit/c/test-signal-mask.h +++ b/level_0/f_signal/tests/unit/c/test-signal-mask.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Signal - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the signal project. diff --git a/level_0/f_signal/tests/unit/c/test-signal-open.h b/level_0/f_signal/tests/unit/c/test-signal-open.h index 19cf53d4a..9dd2d7b88 100644 --- a/level_0/f_signal/tests/unit/c/test-signal-open.h +++ b/level_0/f_signal/tests/unit/c/test-signal-open.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Signal - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the signal project. diff --git a/level_0/f_signal/tests/unit/c/test-signal-pause.h b/level_0/f_signal/tests/unit/c/test-signal-pause.h index 3a4fd7343..986955d32 100644 --- a/level_0/f_signal/tests/unit/c/test-signal-pause.h +++ b/level_0/f_signal/tests/unit/c/test-signal-pause.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Signal - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the signal project. diff --git a/level_0/f_signal/tests/unit/c/test-signal-queue.h b/level_0/f_signal/tests/unit/c/test-signal-queue.h index c32a1f110..213a283f9 100644 --- a/level_0/f_signal/tests/unit/c/test-signal-queue.h +++ b/level_0/f_signal/tests/unit/c/test-signal-queue.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Signal - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the signal project. diff --git a/level_0/f_signal/tests/unit/c/test-signal-read.h b/level_0/f_signal/tests/unit/c/test-signal-read.h index a7dd4ccf4..d9e03d8ed 100644 --- a/level_0/f_signal/tests/unit/c/test-signal-read.h +++ b/level_0/f_signal/tests/unit/c/test-signal-read.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Signal - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the signal project. diff --git a/level_0/f_signal/tests/unit/c/test-signal-send.h b/level_0/f_signal/tests/unit/c/test-signal-send.h index 7bec85f6c..9864ce31f 100644 --- a/level_0/f_signal/tests/unit/c/test-signal-send.h +++ b/level_0/f_signal/tests/unit/c/test-signal-send.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Signal - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the signal project. diff --git a/level_0/f_signal/tests/unit/c/test-signal-set_add.h b/level_0/f_signal/tests/unit/c/test-signal-set_add.h index 0e7a6f2d6..38fbb2723 100644 --- a/level_0/f_signal/tests/unit/c/test-signal-set_add.h +++ b/level_0/f_signal/tests/unit/c/test-signal-set_add.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Signal - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the signal project. diff --git a/level_0/f_signal/tests/unit/c/test-signal-set_delete.h b/level_0/f_signal/tests/unit/c/test-signal-set_delete.h index ac8b544d8..46a9b0116 100644 --- a/level_0/f_signal/tests/unit/c/test-signal-set_delete.h +++ b/level_0/f_signal/tests/unit/c/test-signal-set_delete.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Signal - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the signal project. diff --git a/level_0/f_signal/tests/unit/c/test-signal-set_empty.h b/level_0/f_signal/tests/unit/c/test-signal-set_empty.h index 9f8d3b48a..8df679680 100644 --- a/level_0/f_signal/tests/unit/c/test-signal-set_empty.h +++ b/level_0/f_signal/tests/unit/c/test-signal-set_empty.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Signal - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the signal project. diff --git a/level_0/f_signal/tests/unit/c/test-signal-set_fill.h b/level_0/f_signal/tests/unit/c/test-signal-set_fill.h index dcd74d5ad..3ef501455 100644 --- a/level_0/f_signal/tests/unit/c/test-signal-set_fill.h +++ b/level_0/f_signal/tests/unit/c/test-signal-set_fill.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Signal - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the signal project. diff --git a/level_0/f_signal/tests/unit/c/test-signal-set_has.h b/level_0/f_signal/tests/unit/c/test-signal-set_has.h index a838f351e..bd38f2387 100644 --- a/level_0/f_signal/tests/unit/c/test-signal-set_has.h +++ b/level_0/f_signal/tests/unit/c/test-signal-set_has.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Signal - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the signal project. diff --git a/level_0/f_signal/tests/unit/c/test-signal-suspend.h b/level_0/f_signal/tests/unit/c/test-signal-suspend.h index 80c0f0515..081792685 100644 --- a/level_0/f_signal/tests/unit/c/test-signal-suspend.h +++ b/level_0/f_signal/tests/unit/c/test-signal-suspend.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Signal - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the signal project. diff --git a/level_0/f_signal/tests/unit/c/test-signal-wait.h b/level_0/f_signal/tests/unit/c/test-signal-wait.h index edaf6b3ee..417de8c24 100644 --- a/level_0/f_signal/tests/unit/c/test-signal-wait.h +++ b/level_0/f_signal/tests/unit/c/test-signal-wait.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Signal - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the signal project. diff --git a/level_0/f_signal/tests/unit/c/test-signal-wait_until.h b/level_0/f_signal/tests/unit/c/test-signal-wait_until.h index 29dcc5082..ea27f566f 100644 --- a/level_0/f_signal/tests/unit/c/test-signal-wait_until.h +++ b/level_0/f_signal/tests/unit/c/test-signal-wait_until.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Signal - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the signal project. diff --git a/level_0/f_signal/tests/unit/c/test-signal.h b/level_0/f_signal/tests/unit/c/test-signal.h index b37e83ef3..96a77d3ce 100644 --- a/level_0/f_signal/tests/unit/c/test-signal.h +++ b/level_0/f_signal/tests/unit/c/test-signal.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Account - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the signal project. diff --git a/level_0/f_socket/c/socket.h b/level_0/f_socket/c/socket.h index b9bbd8b8e..d7a4daf66 100644 --- a/level_0/f_socket/c/socket.h +++ b/level_0/f_socket/c/socket.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Socket - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Provide means to interact with sockets. diff --git a/level_0/f_socket/c/socket/common.h b/level_0/f_socket/c/socket/common.h index bbfe6a8d7..a004a25b0 100644 --- a/level_0/f_socket/c/socket/common.h +++ b/level_0/f_socket/c/socket/common.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Socket - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Defines common data to be used for/by project socket. diff --git a/level_0/f_socket/tests/unit/c/mock-socket.h b/level_0/f_socket/tests/unit/c/mock-socket.h index 75e8e83a1..3ebcbc07a 100644 --- a/level_0/f_socket/tests/unit/c/mock-socket.h +++ b/level_0/f_socket/tests/unit/c/mock-socket.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Socket - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the socket project. diff --git a/level_0/f_socket/tests/unit/c/test-socket-accept.h b/level_0/f_socket/tests/unit/c/test-socket-accept.h index 13c041208..2ad9ecc48 100644 --- a/level_0/f_socket/tests/unit/c/test-socket-accept.h +++ b/level_0/f_socket/tests/unit/c/test-socket-accept.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Socket - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the socket project. diff --git a/level_0/f_socket/tests/unit/c/test-socket-bind.h b/level_0/f_socket/tests/unit/c/test-socket-bind.h index 4602f0ecd..b23288184 100644 --- a/level_0/f_socket/tests/unit/c/test-socket-bind.h +++ b/level_0/f_socket/tests/unit/c/test-socket-bind.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Socket - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the socket project. diff --git a/level_0/f_socket/tests/unit/c/test-socket-bind_local.h b/level_0/f_socket/tests/unit/c/test-socket-bind_local.h index 594fe7a1e..e19e2a629 100644 --- a/level_0/f_socket/tests/unit/c/test-socket-bind_local.h +++ b/level_0/f_socket/tests/unit/c/test-socket-bind_local.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Socket - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the socket project. diff --git a/level_0/f_socket/tests/unit/c/test-socket-connect.h b/level_0/f_socket/tests/unit/c/test-socket-connect.h index 0b5628e5c..ab9042608 100644 --- a/level_0/f_socket/tests/unit/c/test-socket-connect.h +++ b/level_0/f_socket/tests/unit/c/test-socket-connect.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Socket - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the socket project. diff --git a/level_0/f_socket/tests/unit/c/test-socket-create.h b/level_0/f_socket/tests/unit/c/test-socket-create.h index c7187d41a..8092dccd7 100644 --- a/level_0/f_socket/tests/unit/c/test-socket-create.h +++ b/level_0/f_socket/tests/unit/c/test-socket-create.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Socket - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the socket project. diff --git a/level_0/f_socket/tests/unit/c/test-socket-create_pair.h b/level_0/f_socket/tests/unit/c/test-socket-create_pair.h index 45a597058..1377c4f3e 100644 --- a/level_0/f_socket/tests/unit/c/test-socket-create_pair.h +++ b/level_0/f_socket/tests/unit/c/test-socket-create_pair.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Socket - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the socket project. diff --git a/level_0/f_socket/tests/unit/c/test-socket-disconnect.h b/level_0/f_socket/tests/unit/c/test-socket-disconnect.h index db5045839..a1093a73d 100644 --- a/level_0/f_socket/tests/unit/c/test-socket-disconnect.h +++ b/level_0/f_socket/tests/unit/c/test-socket-disconnect.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Socket - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the socket project. diff --git a/level_0/f_socket/tests/unit/c/test-socket-listen.h b/level_0/f_socket/tests/unit/c/test-socket-listen.h index c2c6fc575..bc3c05a57 100644 --- a/level_0/f_socket/tests/unit/c/test-socket-listen.h +++ b/level_0/f_socket/tests/unit/c/test-socket-listen.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Socket - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the socket project. diff --git a/level_0/f_socket/tests/unit/c/test-socket-option_get.h b/level_0/f_socket/tests/unit/c/test-socket-option_get.h index e73e641ee..674d5d834 100644 --- a/level_0/f_socket/tests/unit/c/test-socket-option_get.h +++ b/level_0/f_socket/tests/unit/c/test-socket-option_get.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Socket - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the socket project. diff --git a/level_0/f_socket/tests/unit/c/test-socket-option_set.h b/level_0/f_socket/tests/unit/c/test-socket-option_set.h index 77a606e8e..43b2df4ac 100644 --- a/level_0/f_socket/tests/unit/c/test-socket-option_set.h +++ b/level_0/f_socket/tests/unit/c/test-socket-option_set.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Socket - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the socket project. diff --git a/level_0/f_socket/tests/unit/c/test-socket-read.h b/level_0/f_socket/tests/unit/c/test-socket-read.h index 94d195db2..1433a0a96 100644 --- a/level_0/f_socket/tests/unit/c/test-socket-read.h +++ b/level_0/f_socket/tests/unit/c/test-socket-read.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Socket - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the socket project. diff --git a/level_0/f_socket/tests/unit/c/test-socket-read_message.h b/level_0/f_socket/tests/unit/c/test-socket-read_message.h index 5a2b88ae4..67883e584 100644 --- a/level_0/f_socket/tests/unit/c/test-socket-read_message.h +++ b/level_0/f_socket/tests/unit/c/test-socket-read_message.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Socket - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the socket project. diff --git a/level_0/f_socket/tests/unit/c/test-socket-write.h b/level_0/f_socket/tests/unit/c/test-socket-write.h index f710cd3ba..d87c4eaf7 100644 --- a/level_0/f_socket/tests/unit/c/test-socket-write.h +++ b/level_0/f_socket/tests/unit/c/test-socket-write.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Socket - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the socket project. diff --git a/level_0/f_socket/tests/unit/c/test-socket-write_message.h b/level_0/f_socket/tests/unit/c/test-socket-write_message.h index 3a2ac5b8e..b96350fdb 100644 --- a/level_0/f_socket/tests/unit/c/test-socket-write_message.h +++ b/level_0/f_socket/tests/unit/c/test-socket-write_message.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Socket - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the socket project. diff --git a/level_0/f_socket/tests/unit/c/test-socket.h b/level_0/f_socket/tests/unit/c/test-socket.h index 823ab3c77..6758d8bfd 100644 --- a/level_0/f_socket/tests/unit/c/test-socket.h +++ b/level_0/f_socket/tests/unit/c/test-socket.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Socket - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the socket project. diff --git a/level_0/f_status/c/status.h b/level_0/f_status/c/status.h index 4813ebf5d..7f69d4b8f 100644 --- a/level_0/f_status/c/status.h +++ b/level_0/f_status/c/status.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Status - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Provides status code definitions. diff --git a/level_0/f_status/tests/unit/c/test-status-macro-is_error.h b/level_0/f_status/tests/unit/c/test-status-macro-is_error.h index 1c8530e00..20688c4d8 100644 --- a/level_0/f_status/tests/unit/c/test-status-macro-is_error.h +++ b/level_0/f_status/tests/unit/c/test-status-macro-is_error.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Status - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the status project. diff --git a/level_0/f_status/tests/unit/c/test-status-macro-is_error_not.h b/level_0/f_status/tests/unit/c/test-status-macro-is_error_not.h index 40775be34..6fcb3ae25 100644 --- a/level_0/f_status/tests/unit/c/test-status-macro-is_error_not.h +++ b/level_0/f_status/tests/unit/c/test-status-macro-is_error_not.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Status - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the status project. diff --git a/level_0/f_status/tests/unit/c/test-status-macro-is_fine.h b/level_0/f_status/tests/unit/c/test-status-macro-is_fine.h index ceef66552..9f6ac70c7 100644 --- a/level_0/f_status/tests/unit/c/test-status-macro-is_fine.h +++ b/level_0/f_status/tests/unit/c/test-status-macro-is_fine.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Status - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the status project. diff --git a/level_0/f_status/tests/unit/c/test-status-macro-is_fine_not.h b/level_0/f_status/tests/unit/c/test-status-macro-is_fine_not.h index 04722f993..ca272091b 100644 --- a/level_0/f_status/tests/unit/c/test-status-macro-is_fine_not.h +++ b/level_0/f_status/tests/unit/c/test-status-macro-is_fine_not.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Status - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the status project. diff --git a/level_0/f_status/tests/unit/c/test-status-macro-is_problem.h b/level_0/f_status/tests/unit/c/test-status-macro-is_problem.h index e1997e6a0..0a121a548 100644 --- a/level_0/f_status/tests/unit/c/test-status-macro-is_problem.h +++ b/level_0/f_status/tests/unit/c/test-status-macro-is_problem.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Status - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the status project. diff --git a/level_0/f_status/tests/unit/c/test-status-macro-is_problem_not.h b/level_0/f_status/tests/unit/c/test-status-macro-is_problem_not.h index c17cde935..63ac942e1 100644 --- a/level_0/f_status/tests/unit/c/test-status-macro-is_problem_not.h +++ b/level_0/f_status/tests/unit/c/test-status-macro-is_problem_not.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Status - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the status project. diff --git a/level_0/f_status/tests/unit/c/test-status-macro-is_signal.h b/level_0/f_status/tests/unit/c/test-status-macro-is_signal.h index 6955e618f..33403c2cc 100644 --- a/level_0/f_status/tests/unit/c/test-status-macro-is_signal.h +++ b/level_0/f_status/tests/unit/c/test-status-macro-is_signal.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Status - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the status project. diff --git a/level_0/f_status/tests/unit/c/test-status-macro-is_signal_not.h b/level_0/f_status/tests/unit/c/test-status-macro-is_signal_not.h index e66cd2468..8b4cd8d6a 100644 --- a/level_0/f_status/tests/unit/c/test-status-macro-is_signal_not.h +++ b/level_0/f_status/tests/unit/c/test-status-macro-is_signal_not.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Status - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the status project. diff --git a/level_0/f_status/tests/unit/c/test-status-macro-is_warning.h b/level_0/f_status/tests/unit/c/test-status-macro-is_warning.h index dcaad01df..e0766f6b8 100644 --- a/level_0/f_status/tests/unit/c/test-status-macro-is_warning.h +++ b/level_0/f_status/tests/unit/c/test-status-macro-is_warning.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Status - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the status project. diff --git a/level_0/f_status/tests/unit/c/test-status-macro-is_warning_not.h b/level_0/f_status/tests/unit/c/test-status-macro-is_warning_not.h index d075f0ed8..8b7a222b2 100644 --- a/level_0/f_status/tests/unit/c/test-status-macro-is_warning_not.h +++ b/level_0/f_status/tests/unit/c/test-status-macro-is_warning_not.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Status - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the status project. diff --git a/level_0/f_status/tests/unit/c/test-status-macro-set_error.h b/level_0/f_status/tests/unit/c/test-status-macro-set_error.h index b954c58e1..8be1c140e 100644 --- a/level_0/f_status/tests/unit/c/test-status-macro-set_error.h +++ b/level_0/f_status/tests/unit/c/test-status-macro-set_error.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Status - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the status project. diff --git a/level_0/f_status/tests/unit/c/test-status-macro-set_fine.h b/level_0/f_status/tests/unit/c/test-status-macro-set_fine.h index f0ad9e5ed..2249f9b32 100644 --- a/level_0/f_status/tests/unit/c/test-status-macro-set_fine.h +++ b/level_0/f_status/tests/unit/c/test-status-macro-set_fine.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Status - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the status project. diff --git a/level_0/f_status/tests/unit/c/test-status-macro-set_signal.h b/level_0/f_status/tests/unit/c/test-status-macro-set_signal.h index 5da037df8..1888d9a4d 100644 --- a/level_0/f_status/tests/unit/c/test-status-macro-set_signal.h +++ b/level_0/f_status/tests/unit/c/test-status-macro-set_signal.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Status - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the status project. diff --git a/level_0/f_status/tests/unit/c/test-status-macro-set_warning.h b/level_0/f_status/tests/unit/c/test-status-macro-set_warning.h index a19b0225f..0391f32dd 100644 --- a/level_0/f_status/tests/unit/c/test-status-macro-set_warning.h +++ b/level_0/f_status/tests/unit/c/test-status-macro-set_warning.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Status - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the status project. diff --git a/level_0/f_status/tests/unit/c/test-status.h b/level_0/f_status/tests/unit/c/test-status.h index f3d8b0400..580545721 100644 --- a/level_0/f_status/tests/unit/c/test-status.h +++ b/level_0/f_status/tests/unit/c/test-status.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Status - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the status project. diff --git a/level_0/f_status_string/c/status_string.h b/level_0/f_status_string/c/status_string.h index bf649e733..8c052275a 100644 --- a/level_0/f_status_string/c/status_string.h +++ b/level_0/f_status_string/c/status_string.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Status - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Provides status code functions, such as those that translate status codes into strings. diff --git a/level_0/f_status_string/tests/unit/c/test-status_string-to.h b/level_0/f_status_string/tests/unit/c/test-status_string-to.h index 15bcbe60e..503752f2a 100644 --- a/level_0/f_status_string/tests/unit/c/test-status_string-to.h +++ b/level_0/f_status_string/tests/unit/c/test-status_string-to.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Status - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the status_string project. diff --git a/level_0/f_status_string/tests/unit/c/test-status_string.h b/level_0/f_status_string/tests/unit/c/test-status_string.h index 62a6c7d83..353f1ced0 100644 --- a/level_0/f_status_string/tests/unit/c/test-status_string.h +++ b/level_0/f_status_string/tests/unit/c/test-status_string.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Status - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the status_string project. diff --git a/level_0/f_string/c/private-string.h b/level_0/f_string/c/private-string.h index 39e653164..f207c29fd 100644 --- a/level_0/f_string/c/private-string.h +++ b/level_0/f_string/c/private-string.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: String - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * These are provided for internal reduction in redundant code. diff --git a/level_0/f_string/c/string.h b/level_0/f_string/c/string.h index 39b9db36f..bef274c7e 100644 --- a/level_0/f_string/c/string.h +++ b/level_0/f_string/c/string.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: String - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Provides string capabilities. diff --git a/level_0/f_string/c/string/common.h b/level_0/f_string/c/string/common.h index 8333260a7..0805548ac 100644 --- a/level_0/f_string/c/string/common.h +++ b/level_0/f_string/c/string/common.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: String - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Defines common string data. diff --git a/level_0/f_string/c/string/dynamic.h b/level_0/f_string/c/string/dynamic.h index 5a02cc2b6..b75097cd8 100644 --- a/level_0/f_string/c/string/dynamic.h +++ b/level_0/f_string/c/string/dynamic.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: String - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Defines dynamic string data. diff --git a/level_0/f_string/c/string/map.h b/level_0/f_string/c/string/map.h index d10e64f06..b1d856eda 100644 --- a/level_0/f_string/c/string/map.h +++ b/level_0/f_string/c/string/map.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: String - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Defines map string data. diff --git a/level_0/f_string/c/string/map_multi.h b/level_0/f_string/c/string/map_multi.h index 8a5538c39..a0b3ec6bd 100644 --- a/level_0/f_string/c/string/map_multi.h +++ b/level_0/f_string/c/string/map_multi.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: String - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Defines map string data. diff --git a/level_0/f_string/c/string/private-dynamic.h b/level_0/f_string/c/string/private-dynamic.h index 0b8f3a230..e7e114d7d 100644 --- a/level_0/f_string/c/string/private-dynamic.h +++ b/level_0/f_string/c/string/private-dynamic.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: String - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * These are provided for internal reduction in redundant code. diff --git a/level_0/f_string/c/string/private-map.h b/level_0/f_string/c/string/private-map.h index bcb1c7e8e..c156172df 100644 --- a/level_0/f_string/c/string/private-map.h +++ b/level_0/f_string/c/string/private-map.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: String - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * These are provided for internal reduction in redundant code. diff --git a/level_0/f_string/c/string/private-map_multi.h b/level_0/f_string/c/string/private-map_multi.h index 5c4f52d76..ea67e1d5e 100644 --- a/level_0/f_string/c/string/private-map_multi.h +++ b/level_0/f_string/c/string/private-map_multi.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: String - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * These are provided for internal reduction in redundant code. diff --git a/level_0/f_string/c/string/private-quantity.h b/level_0/f_string/c/string/private-quantity.h index b542fc4e6..4ed379194 100644 --- a/level_0/f_string/c/string/private-quantity.h +++ b/level_0/f_string/c/string/private-quantity.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: String - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * These are provided for internal reduction in redundant code. diff --git a/level_0/f_string/c/string/private-range.h b/level_0/f_string/c/string/private-range.h index 86a44a8aa..5229908a4 100644 --- a/level_0/f_string/c/string/private-range.h +++ b/level_0/f_string/c/string/private-range.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: String - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * These are provided for internal reduction in redundant code. diff --git a/level_0/f_string/c/string/private-triple.h b/level_0/f_string/c/string/private-triple.h index 9792505df..bd49f4f87 100644 --- a/level_0/f_string/c/string/private-triple.h +++ b/level_0/f_string/c/string/private-triple.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: String - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * These are provided for internal reduction in redundant code. diff --git a/level_0/f_string/c/string/quantity.h b/level_0/f_string/c/string/quantity.h index 6de8b131c..0bb14d2ca 100644 --- a/level_0/f_string/c/string/quantity.h +++ b/level_0/f_string/c/string/quantity.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: String - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Defines quantity string data. diff --git a/level_0/f_string/c/string/range.h b/level_0/f_string/c/string/range.h index 21c4ec582..454480826 100644 --- a/level_0/f_string/c/string/range.h +++ b/level_0/f_string/c/string/range.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: String - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Defines range string data. diff --git a/level_0/f_string/c/string/static.h b/level_0/f_string/c/string/static.h index e314f53f6..bca31e6c9 100644 --- a/level_0/f_string/c/string/static.h +++ b/level_0/f_string/c/string/static.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: String - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Defines static string data. diff --git a/level_0/f_string/c/string/triple.h b/level_0/f_string/c/string/triple.h index eb60d72e1..89d510ba6 100644 --- a/level_0/f_string/c/string/triple.h +++ b/level_0/f_string/c/string/triple.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: String - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Defines 3-tuple of string data called a triple (which is an ordered list of 3 strings). diff --git a/level_0/f_string/tests/unit/c/test-string-append.h b/level_0/f_string/tests/unit/c/test-string-append.h index 43b5e2841..7ddefebe3 100644 --- a/level_0/f_string/tests/unit/c/test-string-append.h +++ b/level_0/f_string/tests/unit/c/test-string-append.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_string/tests/unit/c/test-string-append_assure.h b/level_0/f_string/tests/unit/c/test-string-append_assure.h index cd4f5b751..59f7ba2ce 100644 --- a/level_0/f_string/tests/unit/c/test-string-append_assure.h +++ b/level_0/f_string/tests/unit/c/test-string-append_assure.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_string/tests/unit/c/test-string-append_assure_nulless.h b/level_0/f_string/tests/unit/c/test-string-append_assure_nulless.h index 811770a27..f67ec6dbf 100644 --- a/level_0/f_string/tests/unit/c/test-string-append_assure_nulless.h +++ b/level_0/f_string/tests/unit/c/test-string-append_assure_nulless.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_string/tests/unit/c/test-string-append_nulless.h b/level_0/f_string/tests/unit/c/test-string-append_nulless.h index abc6cc149..f508d0f21 100644 --- a/level_0/f_string/tests/unit/c/test-string-append_nulless.h +++ b/level_0/f_string/tests/unit/c/test-string-append_nulless.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_string/tests/unit/c/test-string-dynamic_adjust.h b/level_0/f_string/tests/unit/c/test-string-dynamic_adjust.h index 6b63e69dd..1f7ee7d0c 100644 --- a/level_0/f_string/tests/unit/c/test-string-dynamic_adjust.h +++ b/level_0/f_string/tests/unit/c/test-string-dynamic_adjust.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_string/tests/unit/c/test-string-dynamic_append.h b/level_0/f_string/tests/unit/c/test-string-dynamic_append.h index ce4aa0852..a47e899a2 100644 --- a/level_0/f_string/tests/unit/c/test-string-dynamic_append.h +++ b/level_0/f_string/tests/unit/c/test-string-dynamic_append.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_string/tests/unit/c/test-string-dynamic_append_assure.h b/level_0/f_string/tests/unit/c/test-string-dynamic_append_assure.h index 31f01649a..a108200b6 100644 --- a/level_0/f_string/tests/unit/c/test-string-dynamic_append_assure.h +++ b/level_0/f_string/tests/unit/c/test-string-dynamic_append_assure.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_string/tests/unit/c/test-string-dynamic_append_assure_nulless.h b/level_0/f_string/tests/unit/c/test-string-dynamic_append_assure_nulless.h index 3d9bea26d..393fe465a 100644 --- a/level_0/f_string/tests/unit/c/test-string-dynamic_append_assure_nulless.h +++ b/level_0/f_string/tests/unit/c/test-string-dynamic_append_assure_nulless.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_string/tests/unit/c/test-string-dynamic_append_nulless.h b/level_0/f_string/tests/unit/c/test-string-dynamic_append_nulless.h index 0d94566f5..537726dd1 100644 --- a/level_0/f_string/tests/unit/c/test-string-dynamic_append_nulless.h +++ b/level_0/f_string/tests/unit/c/test-string-dynamic_append_nulless.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_string/tests/unit/c/test-string-dynamic_decimate_by.h b/level_0/f_string/tests/unit/c/test-string-dynamic_decimate_by.h index b64cf4f24..201d78a8e 100644 --- a/level_0/f_string/tests/unit/c/test-string-dynamic_decimate_by.h +++ b/level_0/f_string/tests/unit/c/test-string-dynamic_decimate_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_string/tests/unit/c/test-string-dynamic_decrease_by.h b/level_0/f_string/tests/unit/c/test-string-dynamic_decrease_by.h index 6c57438a1..46fe90681 100644 --- a/level_0/f_string/tests/unit/c/test-string-dynamic_decrease_by.h +++ b/level_0/f_string/tests/unit/c/test-string-dynamic_decrease_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_string/tests/unit/c/test-string-dynamic_increase.h b/level_0/f_string/tests/unit/c/test-string-dynamic_increase.h index 6d4d7f5ed..1c9715e7c 100644 --- a/level_0/f_string/tests/unit/c/test-string-dynamic_increase.h +++ b/level_0/f_string/tests/unit/c/test-string-dynamic_increase.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_string/tests/unit/c/test-string-dynamic_increase_by.h b/level_0/f_string/tests/unit/c/test-string-dynamic_increase_by.h index 6a148c31a..1703bead1 100644 --- a/level_0/f_string/tests/unit/c/test-string-dynamic_increase_by.h +++ b/level_0/f_string/tests/unit/c/test-string-dynamic_increase_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_string/tests/unit/c/test-string-dynamic_mash.h b/level_0/f_string/tests/unit/c/test-string-dynamic_mash.h index 24ca7b746..74c543f82 100644 --- a/level_0/f_string/tests/unit/c/test-string-dynamic_mash.h +++ b/level_0/f_string/tests/unit/c/test-string-dynamic_mash.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_string/tests/unit/c/test-string-dynamic_mash_nulless.h b/level_0/f_string/tests/unit/c/test-string-dynamic_mash_nulless.h index ee8f27e10..7801b02f6 100644 --- a/level_0/f_string/tests/unit/c/test-string-dynamic_mash_nulless.h +++ b/level_0/f_string/tests/unit/c/test-string-dynamic_mash_nulless.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_string/tests/unit/c/test-string-dynamic_mish.h b/level_0/f_string/tests/unit/c/test-string-dynamic_mish.h index 09c14e688..00c58ae18 100644 --- a/level_0/f_string/tests/unit/c/test-string-dynamic_mish.h +++ b/level_0/f_string/tests/unit/c/test-string-dynamic_mish.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_string/tests/unit/c/test-string-dynamic_mish_nulless.h b/level_0/f_string/tests/unit/c/test-string-dynamic_mish_nulless.h index 5427d038c..baf83dbdf 100644 --- a/level_0/f_string/tests/unit/c/test-string-dynamic_mish_nulless.h +++ b/level_0/f_string/tests/unit/c/test-string-dynamic_mish_nulless.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_string/tests/unit/c/test-string-dynamic_partial_append.h b/level_0/f_string/tests/unit/c/test-string-dynamic_partial_append.h index aed752f7e..80219f1e6 100644 --- a/level_0/f_string/tests/unit/c/test-string-dynamic_partial_append.h +++ b/level_0/f_string/tests/unit/c/test-string-dynamic_partial_append.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_string/tests/unit/c/test-string-dynamic_partial_append_assure.h b/level_0/f_string/tests/unit/c/test-string-dynamic_partial_append_assure.h index 207ec9259..fc7708b06 100644 --- a/level_0/f_string/tests/unit/c/test-string-dynamic_partial_append_assure.h +++ b/level_0/f_string/tests/unit/c/test-string-dynamic_partial_append_assure.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_string/tests/unit/c/test-string-dynamic_partial_append_assure_nulless.h b/level_0/f_string/tests/unit/c/test-string-dynamic_partial_append_assure_nulless.h index 80edc08a0..337e00539 100644 --- a/level_0/f_string/tests/unit/c/test-string-dynamic_partial_append_assure_nulless.h +++ b/level_0/f_string/tests/unit/c/test-string-dynamic_partial_append_assure_nulless.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_string/tests/unit/c/test-string-dynamic_partial_append_nulless.h b/level_0/f_string/tests/unit/c/test-string-dynamic_partial_append_nulless.h index 5327c90e1..9a0e2904e 100644 --- a/level_0/f_string/tests/unit/c/test-string-dynamic_partial_append_nulless.h +++ b/level_0/f_string/tests/unit/c/test-string-dynamic_partial_append_nulless.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_string/tests/unit/c/test-string-dynamic_partial_mash.h b/level_0/f_string/tests/unit/c/test-string-dynamic_partial_mash.h index 9912eebc6..63cea12ad 100644 --- a/level_0/f_string/tests/unit/c/test-string-dynamic_partial_mash.h +++ b/level_0/f_string/tests/unit/c/test-string-dynamic_partial_mash.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_string/tests/unit/c/test-string-dynamic_partial_mash_nulless.h b/level_0/f_string/tests/unit/c/test-string-dynamic_partial_mash_nulless.h index 815075dc5..5d50f226c 100644 --- a/level_0/f_string/tests/unit/c/test-string-dynamic_partial_mash_nulless.h +++ b/level_0/f_string/tests/unit/c/test-string-dynamic_partial_mash_nulless.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_string/tests/unit/c/test-string-dynamic_partial_mish.h b/level_0/f_string/tests/unit/c/test-string-dynamic_partial_mish.h index 2a6c46d31..8ff64556b 100644 --- a/level_0/f_string/tests/unit/c/test-string-dynamic_partial_mish.h +++ b/level_0/f_string/tests/unit/c/test-string-dynamic_partial_mish.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_string/tests/unit/c/test-string-dynamic_partial_mish_nulless.h b/level_0/f_string/tests/unit/c/test-string-dynamic_partial_mish_nulless.h index aadf92441..5b81dec21 100644 --- a/level_0/f_string/tests/unit/c/test-string-dynamic_partial_mish_nulless.h +++ b/level_0/f_string/tests/unit/c/test-string-dynamic_partial_mish_nulless.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_string/tests/unit/c/test-string-dynamic_partial_prepend.h b/level_0/f_string/tests/unit/c/test-string-dynamic_partial_prepend.h index f6a7119c2..f5800d83e 100644 --- a/level_0/f_string/tests/unit/c/test-string-dynamic_partial_prepend.h +++ b/level_0/f_string/tests/unit/c/test-string-dynamic_partial_prepend.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_string/tests/unit/c/test-string-dynamic_partial_prepend_assure.h b/level_0/f_string/tests/unit/c/test-string-dynamic_partial_prepend_assure.h index b15d4aeeb..4e7f623cd 100644 --- a/level_0/f_string/tests/unit/c/test-string-dynamic_partial_prepend_assure.h +++ b/level_0/f_string/tests/unit/c/test-string-dynamic_partial_prepend_assure.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_string/tests/unit/c/test-string-dynamic_partial_prepend_assure_nulless.h b/level_0/f_string/tests/unit/c/test-string-dynamic_partial_prepend_assure_nulless.h index d820992d2..894023271 100644 --- a/level_0/f_string/tests/unit/c/test-string-dynamic_partial_prepend_assure_nulless.h +++ b/level_0/f_string/tests/unit/c/test-string-dynamic_partial_prepend_assure_nulless.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_string/tests/unit/c/test-string-dynamic_partial_prepend_nulless.h b/level_0/f_string/tests/unit/c/test-string-dynamic_partial_prepend_nulless.h index af2576f07..abd6f1db1 100644 --- a/level_0/f_string/tests/unit/c/test-string-dynamic_partial_prepend_nulless.h +++ b/level_0/f_string/tests/unit/c/test-string-dynamic_partial_prepend_nulless.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_string/tests/unit/c/test-string-dynamic_prepend.h b/level_0/f_string/tests/unit/c/test-string-dynamic_prepend.h index 61a1a599e..39ed3f298 100644 --- a/level_0/f_string/tests/unit/c/test-string-dynamic_prepend.h +++ b/level_0/f_string/tests/unit/c/test-string-dynamic_prepend.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_string/tests/unit/c/test-string-dynamic_prepend_assure.h b/level_0/f_string/tests/unit/c/test-string-dynamic_prepend_assure.h index c05b8a32c..e12c6462c 100644 --- a/level_0/f_string/tests/unit/c/test-string-dynamic_prepend_assure.h +++ b/level_0/f_string/tests/unit/c/test-string-dynamic_prepend_assure.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_string/tests/unit/c/test-string-dynamic_prepend_assure_nulless.h b/level_0/f_string/tests/unit/c/test-string-dynamic_prepend_assure_nulless.h index 3d6a2ea59..893e656c4 100644 --- a/level_0/f_string/tests/unit/c/test-string-dynamic_prepend_assure_nulless.h +++ b/level_0/f_string/tests/unit/c/test-string-dynamic_prepend_assure_nulless.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_string/tests/unit/c/test-string-dynamic_prepend_nulless.h b/level_0/f_string/tests/unit/c/test-string-dynamic_prepend_nulless.h index af47150e9..13d2c1229 100644 --- a/level_0/f_string/tests/unit/c/test-string-dynamic_prepend_nulless.h +++ b/level_0/f_string/tests/unit/c/test-string-dynamic_prepend_nulless.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_string/tests/unit/c/test-string-dynamic_resize.h b/level_0/f_string/tests/unit/c/test-string-dynamic_resize.h index 89a9bc2c7..c1a9a2a0c 100644 --- a/level_0/f_string/tests/unit/c/test-string-dynamic_resize.h +++ b/level_0/f_string/tests/unit/c/test-string-dynamic_resize.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_string/tests/unit/c/test-string-dynamic_seek_line.h b/level_0/f_string/tests/unit/c/test-string-dynamic_seek_line.h index d3ac2e51e..d368f8403 100644 --- a/level_0/f_string/tests/unit/c/test-string-dynamic_seek_line.h +++ b/level_0/f_string/tests/unit/c/test-string-dynamic_seek_line.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_string/tests/unit/c/test-string-dynamic_seek_line_to.h b/level_0/f_string/tests/unit/c/test-string-dynamic_seek_line_to.h index d39a2c5dd..7d82528ec 100644 --- a/level_0/f_string/tests/unit/c/test-string-dynamic_seek_line_to.h +++ b/level_0/f_string/tests/unit/c/test-string-dynamic_seek_line_to.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_string/tests/unit/c/test-string-dynamic_seek_to.h b/level_0/f_string/tests/unit/c/test-string-dynamic_seek_to.h index 47a6c6371..8ddad5371 100644 --- a/level_0/f_string/tests/unit/c/test-string-dynamic_seek_to.h +++ b/level_0/f_string/tests/unit/c/test-string-dynamic_seek_to.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_string/tests/unit/c/test-string-dynamic_terminate.h b/level_0/f_string/tests/unit/c/test-string-dynamic_terminate.h index c3975391f..ee35528a3 100644 --- a/level_0/f_string/tests/unit/c/test-string-dynamic_terminate.h +++ b/level_0/f_string/tests/unit/c/test-string-dynamic_terminate.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_string/tests/unit/c/test-string-dynamic_terminate_after.h b/level_0/f_string/tests/unit/c/test-string-dynamic_terminate_after.h index b21833a4e..e72e264a0 100644 --- a/level_0/f_string/tests/unit/c/test-string-dynamic_terminate_after.h +++ b/level_0/f_string/tests/unit/c/test-string-dynamic_terminate_after.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_string/tests/unit/c/test-string-dynamics_adjust.h b/level_0/f_string/tests/unit/c/test-string-dynamics_adjust.h index 3a03fb2ee..2ada38e9d 100644 --- a/level_0/f_string/tests/unit/c/test-string-dynamics_adjust.h +++ b/level_0/f_string/tests/unit/c/test-string-dynamics_adjust.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_string/tests/unit/c/test-string-dynamics_append.h b/level_0/f_string/tests/unit/c/test-string-dynamics_append.h index 03aaf0c83..d8b5bb12d 100644 --- a/level_0/f_string/tests/unit/c/test-string-dynamics_append.h +++ b/level_0/f_string/tests/unit/c/test-string-dynamics_append.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_string/tests/unit/c/test-string-dynamics_append_all.h b/level_0/f_string/tests/unit/c/test-string-dynamics_append_all.h index b6ff90eab..70b4e9f65 100644 --- a/level_0/f_string/tests/unit/c/test-string-dynamics_append_all.h +++ b/level_0/f_string/tests/unit/c/test-string-dynamics_append_all.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_string/tests/unit/c/test-string-dynamics_decimate_by.h b/level_0/f_string/tests/unit/c/test-string-dynamics_decimate_by.h index 8998bf6dd..df1996170 100644 --- a/level_0/f_string/tests/unit/c/test-string-dynamics_decimate_by.h +++ b/level_0/f_string/tests/unit/c/test-string-dynamics_decimate_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_string/tests/unit/c/test-string-dynamics_decrease_by.h b/level_0/f_string/tests/unit/c/test-string-dynamics_decrease_by.h index 1479c6edf..29a90e234 100644 --- a/level_0/f_string/tests/unit/c/test-string-dynamics_decrease_by.h +++ b/level_0/f_string/tests/unit/c/test-string-dynamics_decrease_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_string/tests/unit/c/test-string-dynamics_increase.h b/level_0/f_string/tests/unit/c/test-string-dynamics_increase.h index ec1e50add..ded56627c 100644 --- a/level_0/f_string/tests/unit/c/test-string-dynamics_increase.h +++ b/level_0/f_string/tests/unit/c/test-string-dynamics_increase.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_string/tests/unit/c/test-string-dynamics_increase_by.h b/level_0/f_string/tests/unit/c/test-string-dynamics_increase_by.h index 8b59882db..58683ea33 100644 --- a/level_0/f_string/tests/unit/c/test-string-dynamics_increase_by.h +++ b/level_0/f_string/tests/unit/c/test-string-dynamics_increase_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_string/tests/unit/c/test-string-dynamics_resize.h b/level_0/f_string/tests/unit/c/test-string-dynamics_resize.h index 1f7ef4ff0..ae5aca558 100644 --- a/level_0/f_string/tests/unit/c/test-string-dynamics_resize.h +++ b/level_0/f_string/tests/unit/c/test-string-dynamics_resize.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_string/tests/unit/c/test-string-dynamicss_adjust.h b/level_0/f_string/tests/unit/c/test-string-dynamicss_adjust.h index acba1c128..e5036543b 100644 --- a/level_0/f_string/tests/unit/c/test-string-dynamicss_adjust.h +++ b/level_0/f_string/tests/unit/c/test-string-dynamicss_adjust.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_string/tests/unit/c/test-string-dynamicss_append.h b/level_0/f_string/tests/unit/c/test-string-dynamicss_append.h index 0196ec9cd..d02b27a0f 100644 --- a/level_0/f_string/tests/unit/c/test-string-dynamicss_append.h +++ b/level_0/f_string/tests/unit/c/test-string-dynamicss_append.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_string/tests/unit/c/test-string-dynamicss_append_all.h b/level_0/f_string/tests/unit/c/test-string-dynamicss_append_all.h index 57a41b2ee..f7d833449 100644 --- a/level_0/f_string/tests/unit/c/test-string-dynamicss_append_all.h +++ b/level_0/f_string/tests/unit/c/test-string-dynamicss_append_all.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_string/tests/unit/c/test-string-dynamicss_decimate_by.h b/level_0/f_string/tests/unit/c/test-string-dynamicss_decimate_by.h index 00c293e41..3793bd36f 100644 --- a/level_0/f_string/tests/unit/c/test-string-dynamicss_decimate_by.h +++ b/level_0/f_string/tests/unit/c/test-string-dynamicss_decimate_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_string/tests/unit/c/test-string-dynamicss_decrease_by.h b/level_0/f_string/tests/unit/c/test-string-dynamicss_decrease_by.h index d4552e399..9f2d4b2e1 100644 --- a/level_0/f_string/tests/unit/c/test-string-dynamicss_decrease_by.h +++ b/level_0/f_string/tests/unit/c/test-string-dynamicss_decrease_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_string/tests/unit/c/test-string-dynamicss_increase.h b/level_0/f_string/tests/unit/c/test-string-dynamicss_increase.h index ee27f435f..0c3e6dd53 100644 --- a/level_0/f_string/tests/unit/c/test-string-dynamicss_increase.h +++ b/level_0/f_string/tests/unit/c/test-string-dynamicss_increase.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_string/tests/unit/c/test-string-dynamicss_increase_by.h b/level_0/f_string/tests/unit/c/test-string-dynamicss_increase_by.h index 8381c38ac..abbc43e7a 100644 --- a/level_0/f_string/tests/unit/c/test-string-dynamicss_increase_by.h +++ b/level_0/f_string/tests/unit/c/test-string-dynamicss_increase_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_string/tests/unit/c/test-string-dynamicss_resize.h b/level_0/f_string/tests/unit/c/test-string-dynamicss_resize.h index 0db8685d0..f47ca3d3e 100644 --- a/level_0/f_string/tests/unit/c/test-string-dynamicss_resize.h +++ b/level_0/f_string/tests/unit/c/test-string-dynamicss_resize.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_string/tests/unit/c/test-string-map_multis_adjust.h b/level_0/f_string/tests/unit/c/test-string-map_multis_adjust.h index bcefa08c8..d06e7c548 100644 --- a/level_0/f_string/tests/unit/c/test-string-map_multis_adjust.h +++ b/level_0/f_string/tests/unit/c/test-string-map_multis_adjust.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_string/tests/unit/c/test-string-map_multis_append.h b/level_0/f_string/tests/unit/c/test-string-map_multis_append.h index 545620306..87b287f70 100644 --- a/level_0/f_string/tests/unit/c/test-string-map_multis_append.h +++ b/level_0/f_string/tests/unit/c/test-string-map_multis_append.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_string/tests/unit/c/test-string-map_multis_append_all.h b/level_0/f_string/tests/unit/c/test-string-map_multis_append_all.h index 35e5060ed..1ecaf9e40 100644 --- a/level_0/f_string/tests/unit/c/test-string-map_multis_append_all.h +++ b/level_0/f_string/tests/unit/c/test-string-map_multis_append_all.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_string/tests/unit/c/test-string-map_multis_decimate_by.h b/level_0/f_string/tests/unit/c/test-string-map_multis_decimate_by.h index 2d4f7c34b..faa898832 100644 --- a/level_0/f_string/tests/unit/c/test-string-map_multis_decimate_by.h +++ b/level_0/f_string/tests/unit/c/test-string-map_multis_decimate_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_string/tests/unit/c/test-string-map_multis_decrease_by.h b/level_0/f_string/tests/unit/c/test-string-map_multis_decrease_by.h index 6ffb7aed6..36fa7b950 100644 --- a/level_0/f_string/tests/unit/c/test-string-map_multis_decrease_by.h +++ b/level_0/f_string/tests/unit/c/test-string-map_multis_decrease_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_string/tests/unit/c/test-string-map_multis_increase.h b/level_0/f_string/tests/unit/c/test-string-map_multis_increase.h index d48acfde7..e61a517e0 100644 --- a/level_0/f_string/tests/unit/c/test-string-map_multis_increase.h +++ b/level_0/f_string/tests/unit/c/test-string-map_multis_increase.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_string/tests/unit/c/test-string-map_multis_increase_by.h b/level_0/f_string/tests/unit/c/test-string-map_multis_increase_by.h index 01cca18f7..eb3b1ad84 100644 --- a/level_0/f_string/tests/unit/c/test-string-map_multis_increase_by.h +++ b/level_0/f_string/tests/unit/c/test-string-map_multis_increase_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_string/tests/unit/c/test-string-map_multis_resize.h b/level_0/f_string/tests/unit/c/test-string-map_multis_resize.h index f3f54267e..4d891ff83 100644 --- a/level_0/f_string/tests/unit/c/test-string-map_multis_resize.h +++ b/level_0/f_string/tests/unit/c/test-string-map_multis_resize.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_string/tests/unit/c/test-string-map_multiss_adjust.h b/level_0/f_string/tests/unit/c/test-string-map_multiss_adjust.h index d6b60de23..bea9999f9 100644 --- a/level_0/f_string/tests/unit/c/test-string-map_multiss_adjust.h +++ b/level_0/f_string/tests/unit/c/test-string-map_multiss_adjust.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_string/tests/unit/c/test-string-map_multiss_append.h b/level_0/f_string/tests/unit/c/test-string-map_multiss_append.h index 3a5dbc660..974fcfdf7 100644 --- a/level_0/f_string/tests/unit/c/test-string-map_multiss_append.h +++ b/level_0/f_string/tests/unit/c/test-string-map_multiss_append.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_string/tests/unit/c/test-string-map_multiss_append_all.h b/level_0/f_string/tests/unit/c/test-string-map_multiss_append_all.h index 0ea3f87dd..ae4841e42 100644 --- a/level_0/f_string/tests/unit/c/test-string-map_multiss_append_all.h +++ b/level_0/f_string/tests/unit/c/test-string-map_multiss_append_all.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_string/tests/unit/c/test-string-map_multiss_decimate_by.h b/level_0/f_string/tests/unit/c/test-string-map_multiss_decimate_by.h index 538814d4d..9a600e974 100644 --- a/level_0/f_string/tests/unit/c/test-string-map_multiss_decimate_by.h +++ b/level_0/f_string/tests/unit/c/test-string-map_multiss_decimate_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_string/tests/unit/c/test-string-map_multiss_decrease_by.h b/level_0/f_string/tests/unit/c/test-string-map_multiss_decrease_by.h index d5d82a928..1a0b66f50 100644 --- a/level_0/f_string/tests/unit/c/test-string-map_multiss_decrease_by.h +++ b/level_0/f_string/tests/unit/c/test-string-map_multiss_decrease_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_string/tests/unit/c/test-string-map_multiss_increase.h b/level_0/f_string/tests/unit/c/test-string-map_multiss_increase.h index 82f92f855..4e5f78ec4 100644 --- a/level_0/f_string/tests/unit/c/test-string-map_multiss_increase.h +++ b/level_0/f_string/tests/unit/c/test-string-map_multiss_increase.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_string/tests/unit/c/test-string-map_multiss_increase_by.h b/level_0/f_string/tests/unit/c/test-string-map_multiss_increase_by.h index d85c9c2a6..823fad727 100644 --- a/level_0/f_string/tests/unit/c/test-string-map_multiss_increase_by.h +++ b/level_0/f_string/tests/unit/c/test-string-map_multiss_increase_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_string/tests/unit/c/test-string-map_multiss_resize.h b/level_0/f_string/tests/unit/c/test-string-map_multiss_resize.h index 31cb8d111..f7cb290c8 100644 --- a/level_0/f_string/tests/unit/c/test-string-map_multiss_resize.h +++ b/level_0/f_string/tests/unit/c/test-string-map_multiss_resize.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_string/tests/unit/c/test-string-maps_adjust.h b/level_0/f_string/tests/unit/c/test-string-maps_adjust.h index d545fd411..f25f52c43 100644 --- a/level_0/f_string/tests/unit/c/test-string-maps_adjust.h +++ b/level_0/f_string/tests/unit/c/test-string-maps_adjust.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_string/tests/unit/c/test-string-maps_append.h b/level_0/f_string/tests/unit/c/test-string-maps_append.h index 4098f9478..4a8056c20 100644 --- a/level_0/f_string/tests/unit/c/test-string-maps_append.h +++ b/level_0/f_string/tests/unit/c/test-string-maps_append.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_string/tests/unit/c/test-string-maps_append_all.h b/level_0/f_string/tests/unit/c/test-string-maps_append_all.h index 1fb67d81b..c946317e5 100644 --- a/level_0/f_string/tests/unit/c/test-string-maps_append_all.h +++ b/level_0/f_string/tests/unit/c/test-string-maps_append_all.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_string/tests/unit/c/test-string-maps_decimate_by.h b/level_0/f_string/tests/unit/c/test-string-maps_decimate_by.h index 595ab8c86..611748a49 100644 --- a/level_0/f_string/tests/unit/c/test-string-maps_decimate_by.h +++ b/level_0/f_string/tests/unit/c/test-string-maps_decimate_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_string/tests/unit/c/test-string-maps_decrease_by.h b/level_0/f_string/tests/unit/c/test-string-maps_decrease_by.h index 00a555c15..ed704c06c 100644 --- a/level_0/f_string/tests/unit/c/test-string-maps_decrease_by.h +++ b/level_0/f_string/tests/unit/c/test-string-maps_decrease_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_string/tests/unit/c/test-string-maps_increase.h b/level_0/f_string/tests/unit/c/test-string-maps_increase.h index 2278049f0..ff4ca74ab 100644 --- a/level_0/f_string/tests/unit/c/test-string-maps_increase.h +++ b/level_0/f_string/tests/unit/c/test-string-maps_increase.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_string/tests/unit/c/test-string-maps_increase_by.h b/level_0/f_string/tests/unit/c/test-string-maps_increase_by.h index e36b9f2d1..f903f76cb 100644 --- a/level_0/f_string/tests/unit/c/test-string-maps_increase_by.h +++ b/level_0/f_string/tests/unit/c/test-string-maps_increase_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_string/tests/unit/c/test-string-maps_resize.h b/level_0/f_string/tests/unit/c/test-string-maps_resize.h index 2cd822536..2d4167f94 100644 --- a/level_0/f_string/tests/unit/c/test-string-maps_resize.h +++ b/level_0/f_string/tests/unit/c/test-string-maps_resize.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_string/tests/unit/c/test-string-mapss_adjust.h b/level_0/f_string/tests/unit/c/test-string-mapss_adjust.h index 6fe1abe5c..70db7f4f1 100644 --- a/level_0/f_string/tests/unit/c/test-string-mapss_adjust.h +++ b/level_0/f_string/tests/unit/c/test-string-mapss_adjust.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_string/tests/unit/c/test-string-mapss_append.h b/level_0/f_string/tests/unit/c/test-string-mapss_append.h index 1c13bc8f9..ac771636e 100644 --- a/level_0/f_string/tests/unit/c/test-string-mapss_append.h +++ b/level_0/f_string/tests/unit/c/test-string-mapss_append.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_string/tests/unit/c/test-string-mapss_append_all.h b/level_0/f_string/tests/unit/c/test-string-mapss_append_all.h index b68c89b91..ce9426b14 100644 --- a/level_0/f_string/tests/unit/c/test-string-mapss_append_all.h +++ b/level_0/f_string/tests/unit/c/test-string-mapss_append_all.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_string/tests/unit/c/test-string-mapss_decimate_by.h b/level_0/f_string/tests/unit/c/test-string-mapss_decimate_by.h index f36a86a84..abe0d40ab 100644 --- a/level_0/f_string/tests/unit/c/test-string-mapss_decimate_by.h +++ b/level_0/f_string/tests/unit/c/test-string-mapss_decimate_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_string/tests/unit/c/test-string-mapss_decrease_by.h b/level_0/f_string/tests/unit/c/test-string-mapss_decrease_by.h index 338215d73..289acbd06 100644 --- a/level_0/f_string/tests/unit/c/test-string-mapss_decrease_by.h +++ b/level_0/f_string/tests/unit/c/test-string-mapss_decrease_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_string/tests/unit/c/test-string-mapss_increase.h b/level_0/f_string/tests/unit/c/test-string-mapss_increase.h index 155dfabed..028a8499d 100644 --- a/level_0/f_string/tests/unit/c/test-string-mapss_increase.h +++ b/level_0/f_string/tests/unit/c/test-string-mapss_increase.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_string/tests/unit/c/test-string-mapss_increase_by.h b/level_0/f_string/tests/unit/c/test-string-mapss_increase_by.h index d067504e5..3765b11cc 100644 --- a/level_0/f_string/tests/unit/c/test-string-mapss_increase_by.h +++ b/level_0/f_string/tests/unit/c/test-string-mapss_increase_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_string/tests/unit/c/test-string-mapss_resize.h b/level_0/f_string/tests/unit/c/test-string-mapss_resize.h index 695fd2bc6..d7a62958e 100644 --- a/level_0/f_string/tests/unit/c/test-string-mapss_resize.h +++ b/level_0/f_string/tests/unit/c/test-string-mapss_resize.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_string/tests/unit/c/test-string-mash.h b/level_0/f_string/tests/unit/c/test-string-mash.h index 0ba0b1ccb..331851174 100644 --- a/level_0/f_string/tests/unit/c/test-string-mash.h +++ b/level_0/f_string/tests/unit/c/test-string-mash.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_string/tests/unit/c/test-string-mash_nulless.h b/level_0/f_string/tests/unit/c/test-string-mash_nulless.h index 3d50143f0..7bfa92bad 100644 --- a/level_0/f_string/tests/unit/c/test-string-mash_nulless.h +++ b/level_0/f_string/tests/unit/c/test-string-mash_nulless.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_string/tests/unit/c/test-string-mish.h b/level_0/f_string/tests/unit/c/test-string-mish.h index 547bb146f..fc3a25a00 100644 --- a/level_0/f_string/tests/unit/c/test-string-mish.h +++ b/level_0/f_string/tests/unit/c/test-string-mish.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_string/tests/unit/c/test-string-mish_nulless.h b/level_0/f_string/tests/unit/c/test-string-mish_nulless.h index d53c9e4a7..49aa9866b 100644 --- a/level_0/f_string/tests/unit/c/test-string-mish_nulless.h +++ b/level_0/f_string/tests/unit/c/test-string-mish_nulless.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_string/tests/unit/c/test-string-prepend.h b/level_0/f_string/tests/unit/c/test-string-prepend.h index 808528849..f75bbd7fa 100644 --- a/level_0/f_string/tests/unit/c/test-string-prepend.h +++ b/level_0/f_string/tests/unit/c/test-string-prepend.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_string/tests/unit/c/test-string-prepend_assure.h b/level_0/f_string/tests/unit/c/test-string-prepend_assure.h index 10f704e45..4edc8d859 100644 --- a/level_0/f_string/tests/unit/c/test-string-prepend_assure.h +++ b/level_0/f_string/tests/unit/c/test-string-prepend_assure.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_string/tests/unit/c/test-string-prepend_assure_nulless.h b/level_0/f_string/tests/unit/c/test-string-prepend_assure_nulless.h index 6ba6c44e0..d31c1e3f7 100644 --- a/level_0/f_string/tests/unit/c/test-string-prepend_assure_nulless.h +++ b/level_0/f_string/tests/unit/c/test-string-prepend_assure_nulless.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_string/tests/unit/c/test-string-prepend_nulless.h b/level_0/f_string/tests/unit/c/test-string-prepend_nulless.h index 5ef4ce8f0..e1297171d 100644 --- a/level_0/f_string/tests/unit/c/test-string-prepend_nulless.h +++ b/level_0/f_string/tests/unit/c/test-string-prepend_nulless.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_string/tests/unit/c/test-string-quantitys_adjust.h b/level_0/f_string/tests/unit/c/test-string-quantitys_adjust.h index b5dcbc43b..fc7c80709 100644 --- a/level_0/f_string/tests/unit/c/test-string-quantitys_adjust.h +++ b/level_0/f_string/tests/unit/c/test-string-quantitys_adjust.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_string/tests/unit/c/test-string-quantitys_append.h b/level_0/f_string/tests/unit/c/test-string-quantitys_append.h index d926efb3c..dcb6a3a46 100644 --- a/level_0/f_string/tests/unit/c/test-string-quantitys_append.h +++ b/level_0/f_string/tests/unit/c/test-string-quantitys_append.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_string/tests/unit/c/test-string-quantitys_append_all.h b/level_0/f_string/tests/unit/c/test-string-quantitys_append_all.h index 53bdcff9c..5bc452901 100644 --- a/level_0/f_string/tests/unit/c/test-string-quantitys_append_all.h +++ b/level_0/f_string/tests/unit/c/test-string-quantitys_append_all.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_string/tests/unit/c/test-string-quantitys_decimate_by.h b/level_0/f_string/tests/unit/c/test-string-quantitys_decimate_by.h index 1a81a0ffe..9baefd2ac 100644 --- a/level_0/f_string/tests/unit/c/test-string-quantitys_decimate_by.h +++ b/level_0/f_string/tests/unit/c/test-string-quantitys_decimate_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_string/tests/unit/c/test-string-quantitys_decrease_by.h b/level_0/f_string/tests/unit/c/test-string-quantitys_decrease_by.h index b67fe482f..f245982bc 100644 --- a/level_0/f_string/tests/unit/c/test-string-quantitys_decrease_by.h +++ b/level_0/f_string/tests/unit/c/test-string-quantitys_decrease_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_string/tests/unit/c/test-string-quantitys_increase.h b/level_0/f_string/tests/unit/c/test-string-quantitys_increase.h index 31f41ccea..8ccb0c453 100644 --- a/level_0/f_string/tests/unit/c/test-string-quantitys_increase.h +++ b/level_0/f_string/tests/unit/c/test-string-quantitys_increase.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_string/tests/unit/c/test-string-quantitys_increase_by.h b/level_0/f_string/tests/unit/c/test-string-quantitys_increase_by.h index eba7e67f7..1d52555cf 100644 --- a/level_0/f_string/tests/unit/c/test-string-quantitys_increase_by.h +++ b/level_0/f_string/tests/unit/c/test-string-quantitys_increase_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_string/tests/unit/c/test-string-quantitys_resize.h b/level_0/f_string/tests/unit/c/test-string-quantitys_resize.h index 1b6b986a8..f29fefdcd 100644 --- a/level_0/f_string/tests/unit/c/test-string-quantitys_resize.h +++ b/level_0/f_string/tests/unit/c/test-string-quantitys_resize.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_string/tests/unit/c/test-string-quantityss_adjust.h b/level_0/f_string/tests/unit/c/test-string-quantityss_adjust.h index bd4c55e60..75f4e4d73 100644 --- a/level_0/f_string/tests/unit/c/test-string-quantityss_adjust.h +++ b/level_0/f_string/tests/unit/c/test-string-quantityss_adjust.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_string/tests/unit/c/test-string-quantityss_append.h b/level_0/f_string/tests/unit/c/test-string-quantityss_append.h index 8b6f5a395..5ee4f33e4 100644 --- a/level_0/f_string/tests/unit/c/test-string-quantityss_append.h +++ b/level_0/f_string/tests/unit/c/test-string-quantityss_append.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_string/tests/unit/c/test-string-quantityss_append_all.h b/level_0/f_string/tests/unit/c/test-string-quantityss_append_all.h index 39362e668..dd97727bb 100644 --- a/level_0/f_string/tests/unit/c/test-string-quantityss_append_all.h +++ b/level_0/f_string/tests/unit/c/test-string-quantityss_append_all.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_string/tests/unit/c/test-string-quantityss_decimate_by.h b/level_0/f_string/tests/unit/c/test-string-quantityss_decimate_by.h index 49b6b9079..05001663d 100644 --- a/level_0/f_string/tests/unit/c/test-string-quantityss_decimate_by.h +++ b/level_0/f_string/tests/unit/c/test-string-quantityss_decimate_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_string/tests/unit/c/test-string-quantityss_decrease_by.h b/level_0/f_string/tests/unit/c/test-string-quantityss_decrease_by.h index 3219634f6..1cacca3f2 100644 --- a/level_0/f_string/tests/unit/c/test-string-quantityss_decrease_by.h +++ b/level_0/f_string/tests/unit/c/test-string-quantityss_decrease_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_string/tests/unit/c/test-string-quantityss_increase.h b/level_0/f_string/tests/unit/c/test-string-quantityss_increase.h index 4d7d5262d..51a95d274 100644 --- a/level_0/f_string/tests/unit/c/test-string-quantityss_increase.h +++ b/level_0/f_string/tests/unit/c/test-string-quantityss_increase.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_string/tests/unit/c/test-string-quantityss_increase_by.h b/level_0/f_string/tests/unit/c/test-string-quantityss_increase_by.h index 18be1b953..ccbf50c61 100644 --- a/level_0/f_string/tests/unit/c/test-string-quantityss_increase_by.h +++ b/level_0/f_string/tests/unit/c/test-string-quantityss_increase_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_string/tests/unit/c/test-string-quantityss_resize.h b/level_0/f_string/tests/unit/c/test-string-quantityss_resize.h index fb9125068..77c4a07b9 100644 --- a/level_0/f_string/tests/unit/c/test-string-quantityss_resize.h +++ b/level_0/f_string/tests/unit/c/test-string-quantityss_resize.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_string/tests/unit/c/test-string-ranges_adjust.h b/level_0/f_string/tests/unit/c/test-string-ranges_adjust.h index c5f1f1c66..4e016f6f6 100644 --- a/level_0/f_string/tests/unit/c/test-string-ranges_adjust.h +++ b/level_0/f_string/tests/unit/c/test-string-ranges_adjust.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_string/tests/unit/c/test-string-ranges_append.h b/level_0/f_string/tests/unit/c/test-string-ranges_append.h index 2e12a4aa6..75764a9de 100644 --- a/level_0/f_string/tests/unit/c/test-string-ranges_append.h +++ b/level_0/f_string/tests/unit/c/test-string-ranges_append.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_string/tests/unit/c/test-string-ranges_append_all.h b/level_0/f_string/tests/unit/c/test-string-ranges_append_all.h index 4cfb1653e..2f75492df 100644 --- a/level_0/f_string/tests/unit/c/test-string-ranges_append_all.h +++ b/level_0/f_string/tests/unit/c/test-string-ranges_append_all.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_string/tests/unit/c/test-string-ranges_decimate_by.h b/level_0/f_string/tests/unit/c/test-string-ranges_decimate_by.h index 1da014acf..4217158d4 100644 --- a/level_0/f_string/tests/unit/c/test-string-ranges_decimate_by.h +++ b/level_0/f_string/tests/unit/c/test-string-ranges_decimate_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_string/tests/unit/c/test-string-ranges_decrease_by.h b/level_0/f_string/tests/unit/c/test-string-ranges_decrease_by.h index e3d5b2113..f291b1180 100644 --- a/level_0/f_string/tests/unit/c/test-string-ranges_decrease_by.h +++ b/level_0/f_string/tests/unit/c/test-string-ranges_decrease_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_string/tests/unit/c/test-string-ranges_increase.h b/level_0/f_string/tests/unit/c/test-string-ranges_increase.h index a074e0209..0c6d13a58 100644 --- a/level_0/f_string/tests/unit/c/test-string-ranges_increase.h +++ b/level_0/f_string/tests/unit/c/test-string-ranges_increase.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_string/tests/unit/c/test-string-ranges_increase_by.h b/level_0/f_string/tests/unit/c/test-string-ranges_increase_by.h index 60b2af606..450434be6 100644 --- a/level_0/f_string/tests/unit/c/test-string-ranges_increase_by.h +++ b/level_0/f_string/tests/unit/c/test-string-ranges_increase_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_string/tests/unit/c/test-string-ranges_resize.h b/level_0/f_string/tests/unit/c/test-string-ranges_resize.h index fb71f9f4b..f6f56b306 100644 --- a/level_0/f_string/tests/unit/c/test-string-ranges_resize.h +++ b/level_0/f_string/tests/unit/c/test-string-ranges_resize.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_string/tests/unit/c/test-string-rangess_adjust.h b/level_0/f_string/tests/unit/c/test-string-rangess_adjust.h index 4b35d76fc..a12fa4532 100644 --- a/level_0/f_string/tests/unit/c/test-string-rangess_adjust.h +++ b/level_0/f_string/tests/unit/c/test-string-rangess_adjust.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_string/tests/unit/c/test-string-rangess_append.h b/level_0/f_string/tests/unit/c/test-string-rangess_append.h index 873cfa40c..096721f7d 100644 --- a/level_0/f_string/tests/unit/c/test-string-rangess_append.h +++ b/level_0/f_string/tests/unit/c/test-string-rangess_append.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_string/tests/unit/c/test-string-rangess_append_all.h b/level_0/f_string/tests/unit/c/test-string-rangess_append_all.h index 9006f5b87..985b03004 100644 --- a/level_0/f_string/tests/unit/c/test-string-rangess_append_all.h +++ b/level_0/f_string/tests/unit/c/test-string-rangess_append_all.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_string/tests/unit/c/test-string-rangess_decimate_by.h b/level_0/f_string/tests/unit/c/test-string-rangess_decimate_by.h index 9f141aa89..6fbf9d5ac 100644 --- a/level_0/f_string/tests/unit/c/test-string-rangess_decimate_by.h +++ b/level_0/f_string/tests/unit/c/test-string-rangess_decimate_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_string/tests/unit/c/test-string-rangess_decrease_by.h b/level_0/f_string/tests/unit/c/test-string-rangess_decrease_by.h index a5fe29d0e..492d20360 100644 --- a/level_0/f_string/tests/unit/c/test-string-rangess_decrease_by.h +++ b/level_0/f_string/tests/unit/c/test-string-rangess_decrease_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_string/tests/unit/c/test-string-rangess_increase.h b/level_0/f_string/tests/unit/c/test-string-rangess_increase.h index 24a1565b2..2090ba6c5 100644 --- a/level_0/f_string/tests/unit/c/test-string-rangess_increase.h +++ b/level_0/f_string/tests/unit/c/test-string-rangess_increase.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_string/tests/unit/c/test-string-rangess_increase_by.h b/level_0/f_string/tests/unit/c/test-string-rangess_increase_by.h index a470871d6..c377d7c5d 100644 --- a/level_0/f_string/tests/unit/c/test-string-rangess_increase_by.h +++ b/level_0/f_string/tests/unit/c/test-string-rangess_increase_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_string/tests/unit/c/test-string-rangess_resize.h b/level_0/f_string/tests/unit/c/test-string-rangess_resize.h index 9233b19f2..7c02cd51a 100644 --- a/level_0/f_string/tests/unit/c/test-string-rangess_resize.h +++ b/level_0/f_string/tests/unit/c/test-string-rangess_resize.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_string/tests/unit/c/test-string-seek_line.h b/level_0/f_string/tests/unit/c/test-string-seek_line.h index 20988c35a..3d647c23e 100644 --- a/level_0/f_string/tests/unit/c/test-string-seek_line.h +++ b/level_0/f_string/tests/unit/c/test-string-seek_line.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_string/tests/unit/c/test-string-seek_line_to.h b/level_0/f_string/tests/unit/c/test-string-seek_line_to.h index ce21e481a..d988d6cd0 100644 --- a/level_0/f_string/tests/unit/c/test-string-seek_line_to.h +++ b/level_0/f_string/tests/unit/c/test-string-seek_line_to.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_string/tests/unit/c/test-string-seek_to.h b/level_0/f_string/tests/unit/c/test-string-seek_to.h index 42b3238fa..7b4fb5472 100644 --- a/level_0/f_string/tests/unit/c/test-string-seek_to.h +++ b/level_0/f_string/tests/unit/c/test-string-seek_to.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_string/tests/unit/c/test-string-triples_adjust.h b/level_0/f_string/tests/unit/c/test-string-triples_adjust.h index 4871cc053..413d272b9 100644 --- a/level_0/f_string/tests/unit/c/test-string-triples_adjust.h +++ b/level_0/f_string/tests/unit/c/test-string-triples_adjust.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_string/tests/unit/c/test-string-triples_append.h b/level_0/f_string/tests/unit/c/test-string-triples_append.h index 57d6f5268..16b4fe7e5 100644 --- a/level_0/f_string/tests/unit/c/test-string-triples_append.h +++ b/level_0/f_string/tests/unit/c/test-string-triples_append.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_string/tests/unit/c/test-string-triples_append_all.h b/level_0/f_string/tests/unit/c/test-string-triples_append_all.h index 8c51c60b4..f472467b3 100644 --- a/level_0/f_string/tests/unit/c/test-string-triples_append_all.h +++ b/level_0/f_string/tests/unit/c/test-string-triples_append_all.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_string/tests/unit/c/test-string-triples_decimate_by.h b/level_0/f_string/tests/unit/c/test-string-triples_decimate_by.h index be492599c..776aa2c40 100644 --- a/level_0/f_string/tests/unit/c/test-string-triples_decimate_by.h +++ b/level_0/f_string/tests/unit/c/test-string-triples_decimate_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_string/tests/unit/c/test-string-triples_decrease_by.h b/level_0/f_string/tests/unit/c/test-string-triples_decrease_by.h index 7b24f4436..a2b27d12c 100644 --- a/level_0/f_string/tests/unit/c/test-string-triples_decrease_by.h +++ b/level_0/f_string/tests/unit/c/test-string-triples_decrease_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_string/tests/unit/c/test-string-triples_increase.h b/level_0/f_string/tests/unit/c/test-string-triples_increase.h index 4d455dc6f..ea68b5331 100644 --- a/level_0/f_string/tests/unit/c/test-string-triples_increase.h +++ b/level_0/f_string/tests/unit/c/test-string-triples_increase.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_string/tests/unit/c/test-string-triples_increase_by.h b/level_0/f_string/tests/unit/c/test-string-triples_increase_by.h index 04d5abb8a..45b7127b1 100644 --- a/level_0/f_string/tests/unit/c/test-string-triples_increase_by.h +++ b/level_0/f_string/tests/unit/c/test-string-triples_increase_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_string/tests/unit/c/test-string-triples_resize.h b/level_0/f_string/tests/unit/c/test-string-triples_resize.h index 1a0ed810d..2e35b057f 100644 --- a/level_0/f_string/tests/unit/c/test-string-triples_resize.h +++ b/level_0/f_string/tests/unit/c/test-string-triples_resize.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_string/tests/unit/c/test-string-tripless_adjust.h b/level_0/f_string/tests/unit/c/test-string-tripless_adjust.h index 467bd80e5..e20b796f7 100644 --- a/level_0/f_string/tests/unit/c/test-string-tripless_adjust.h +++ b/level_0/f_string/tests/unit/c/test-string-tripless_adjust.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_string/tests/unit/c/test-string-tripless_append.h b/level_0/f_string/tests/unit/c/test-string-tripless_append.h index 1c6e2f81c..a93519bff 100644 --- a/level_0/f_string/tests/unit/c/test-string-tripless_append.h +++ b/level_0/f_string/tests/unit/c/test-string-tripless_append.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_string/tests/unit/c/test-string-tripless_append_all.h b/level_0/f_string/tests/unit/c/test-string-tripless_append_all.h index 4faf28505..dda4401e0 100644 --- a/level_0/f_string/tests/unit/c/test-string-tripless_append_all.h +++ b/level_0/f_string/tests/unit/c/test-string-tripless_append_all.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_string/tests/unit/c/test-string-tripless_decimate_by.h b/level_0/f_string/tests/unit/c/test-string-tripless_decimate_by.h index 863104be4..edef6d17e 100644 --- a/level_0/f_string/tests/unit/c/test-string-tripless_decimate_by.h +++ b/level_0/f_string/tests/unit/c/test-string-tripless_decimate_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_string/tests/unit/c/test-string-tripless_decrease_by.h b/level_0/f_string/tests/unit/c/test-string-tripless_decrease_by.h index 6d5093fc3..a4f267075 100644 --- a/level_0/f_string/tests/unit/c/test-string-tripless_decrease_by.h +++ b/level_0/f_string/tests/unit/c/test-string-tripless_decrease_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_string/tests/unit/c/test-string-tripless_increase.h b/level_0/f_string/tests/unit/c/test-string-tripless_increase.h index 3ce14e739..caec0af42 100644 --- a/level_0/f_string/tests/unit/c/test-string-tripless_increase.h +++ b/level_0/f_string/tests/unit/c/test-string-tripless_increase.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_string/tests/unit/c/test-string-tripless_increase_by.h b/level_0/f_string/tests/unit/c/test-string-tripless_increase_by.h index 2f9caaaeb..6dc83b85f 100644 --- a/level_0/f_string/tests/unit/c/test-string-tripless_increase_by.h +++ b/level_0/f_string/tests/unit/c/test-string-tripless_increase_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_string/tests/unit/c/test-string-tripless_resize.h b/level_0/f_string/tests/unit/c/test-string-tripless_resize.h index 8698be691..d405ea2d2 100644 --- a/level_0/f_string/tests/unit/c/test-string-tripless_resize.h +++ b/level_0/f_string/tests/unit/c/test-string-tripless_resize.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_string/tests/unit/c/test-string.h b/level_0/f_string/tests/unit/c/test-string.h index 00a768c5a..5de6b81ab 100644 --- a/level_0/f_string/tests/unit/c/test-string.h +++ b/level_0/f_string/tests/unit/c/test-string.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: String - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the string project. diff --git a/level_0/f_thread/c/private-thread.h b/level_0/f_thread/c/private-thread.h index be3a46d6a..604d6acad 100644 --- a/level_0/f_thread/c/private-thread.h +++ b/level_0/f_thread/c/private-thread.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * These are provided for internal reduction in redundant code. diff --git a/level_0/f_thread/c/thread.h b/level_0/f_thread/c/thread.h index f39bd3a82..964147a16 100644 --- a/level_0/f_thread/c/thread.h +++ b/level_0/f_thread/c/thread.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Provides POSIX sets related functionality. diff --git a/level_0/f_thread/c/thread/attribute.h b/level_0/f_thread/c/thread/attribute.h index becfb0d9e..d32416484 100644 --- a/level_0/f_thread/c/thread/attribute.h +++ b/level_0/f_thread/c/thread/attribute.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Defines common data to be used for/by POSIX thread related functionality. diff --git a/level_0/f_thread/c/thread/barrier.h b/level_0/f_thread/c/thread/barrier.h index 5c4d1e008..ed57ef411 100644 --- a/level_0/f_thread/c/thread/barrier.h +++ b/level_0/f_thread/c/thread/barrier.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Defines common data to be used for/by POSIX thread related functionality. diff --git a/level_0/f_thread/c/thread/barrier_attribute.h b/level_0/f_thread/c/thread/barrier_attribute.h index 25d962648..36ff551a0 100644 --- a/level_0/f_thread/c/thread/barrier_attribute.h +++ b/level_0/f_thread/c/thread/barrier_attribute.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Defines common data to be used for/by POSIX thread related functionality. diff --git a/level_0/f_thread/c/thread/condition.h b/level_0/f_thread/c/thread/condition.h index d34981fbf..88bc41ee9 100644 --- a/level_0/f_thread/c/thread/condition.h +++ b/level_0/f_thread/c/thread/condition.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Defines common data to be used for/by POSIX thread related functionality. diff --git a/level_0/f_thread/c/thread/condition_attribute.h b/level_0/f_thread/c/thread/condition_attribute.h index b8c1dfcc8..bfd3961fb 100644 --- a/level_0/f_thread/c/thread/condition_attribute.h +++ b/level_0/f_thread/c/thread/condition_attribute.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Defines common data to be used for/by POSIX thread related functionality. diff --git a/level_0/f_thread/c/thread/id.h b/level_0/f_thread/c/thread/id.h index 49e49b2ab..4908fb2e7 100644 --- a/level_0/f_thread/c/thread/id.h +++ b/level_0/f_thread/c/thread/id.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Defines common data to be used for/by POSIX thread related functionality. diff --git a/level_0/f_thread/c/thread/key.h b/level_0/f_thread/c/thread/key.h index 6a4931f78..700a0ab45 100644 --- a/level_0/f_thread/c/thread/key.h +++ b/level_0/f_thread/c/thread/key.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Defines common data to be used for/by POSIX thread related functionality. diff --git a/level_0/f_thread/c/thread/lock.h b/level_0/f_thread/c/thread/lock.h index 462467191..2ae7d2bf4 100644 --- a/level_0/f_thread/c/thread/lock.h +++ b/level_0/f_thread/c/thread/lock.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Defines common data to be used for/by POSIX thread related functionality. diff --git a/level_0/f_thread/c/thread/lock_attribute.h b/level_0/f_thread/c/thread/lock_attribute.h index 8f64c6b63..1cd6dd87a 100644 --- a/level_0/f_thread/c/thread/lock_attribute.h +++ b/level_0/f_thread/c/thread/lock_attribute.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Defines common data to be used for/by POSIX thread related functionality. diff --git a/level_0/f_thread/c/thread/mutex.h b/level_0/f_thread/c/thread/mutex.h index 32e20b445..183221773 100644 --- a/level_0/f_thread/c/thread/mutex.h +++ b/level_0/f_thread/c/thread/mutex.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Defines common data to be used for/by POSIX thread related functionality. diff --git a/level_0/f_thread/c/thread/mutex_attribute.h b/level_0/f_thread/c/thread/mutex_attribute.h index cb09bd2b4..6cd683408 100644 --- a/level_0/f_thread/c/thread/mutex_attribute.h +++ b/level_0/f_thread/c/thread/mutex_attribute.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Defines common data to be used for/by POSIX thread related functionality. diff --git a/level_0/f_thread/c/thread/once.h b/level_0/f_thread/c/thread/once.h index b78ece5d5..a2276f491 100644 --- a/level_0/f_thread/c/thread/once.h +++ b/level_0/f_thread/c/thread/once.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Defines common data to be used for/by POSIX thread related functionality. diff --git a/level_0/f_thread/c/thread/semaphore.h b/level_0/f_thread/c/thread/semaphore.h index 6e66bc905..3b356e2e0 100644 --- a/level_0/f_thread/c/thread/semaphore.h +++ b/level_0/f_thread/c/thread/semaphore.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Defines common data to be used for/by POSIX thread related functionality. diff --git a/level_0/f_thread/c/thread/set.h b/level_0/f_thread/c/thread/set.h index 1a3e959c2..fd5c72126 100644 --- a/level_0/f_thread/c/thread/set.h +++ b/level_0/f_thread/c/thread/set.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Defines common data to be used for/by POSIX thread related functionality. diff --git a/level_0/f_thread/c/thread/spin.h b/level_0/f_thread/c/thread/spin.h index a4c7c2619..a2ccbc0eb 100644 --- a/level_0/f_thread/c/thread/spin.h +++ b/level_0/f_thread/c/thread/spin.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Defines common data to be used for/by POSIX thread related functionality. diff --git a/level_0/f_thread/tests/unit/c/mock-thread.h b/level_0/f_thread/tests/unit/c/mock-thread.h index ceb8fd21b..92e6f7c18 100644 --- a/level_0/f_thread/tests/unit/c/mock-thread.h +++ b/level_0/f_thread/tests/unit/c/mock-thread.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-at_fork.h b/level_0/f_thread/tests/unit/c/test-thread-at_fork.h index 7a16a08d7..ae78b32dd 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-at_fork.h +++ b/level_0/f_thread/tests/unit/c/test-thread-at_fork.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-attribute_affinity_get.h b/level_0/f_thread/tests/unit/c/test-thread-attribute_affinity_get.h index 8ac021b63..8975dcd62 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-attribute_affinity_get.h +++ b/level_0/f_thread/tests/unit/c/test-thread-attribute_affinity_get.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-attribute_affinity_set.h b/level_0/f_thread/tests/unit/c/test-thread-attribute_affinity_set.h index b58358f53..76c985d2b 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-attribute_affinity_set.h +++ b/level_0/f_thread/tests/unit/c/test-thread-attribute_affinity_set.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-attribute_concurrency_get.h b/level_0/f_thread/tests/unit/c/test-thread-attribute_concurrency_get.h index 221acaad4..ce2f6dd72 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-attribute_concurrency_get.h +++ b/level_0/f_thread/tests/unit/c/test-thread-attribute_concurrency_get.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-attribute_concurrency_set.h b/level_0/f_thread/tests/unit/c/test-thread-attribute_concurrency_set.h index 4011ca3b8..64c31c405 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-attribute_concurrency_set.h +++ b/level_0/f_thread/tests/unit/c/test-thread-attribute_concurrency_set.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-attribute_create.h b/level_0/f_thread/tests/unit/c/test-thread-attribute_create.h index bc627283c..4dcb162f7 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-attribute_create.h +++ b/level_0/f_thread/tests/unit/c/test-thread-attribute_create.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-attribute_default_get.h b/level_0/f_thread/tests/unit/c/test-thread-attribute_default_get.h index 2bf0844eb..708619c15 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-attribute_default_get.h +++ b/level_0/f_thread/tests/unit/c/test-thread-attribute_default_get.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-attribute_default_set.h b/level_0/f_thread/tests/unit/c/test-thread-attribute_default_set.h index 6603f9660..a24e37f63 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-attribute_default_set.h +++ b/level_0/f_thread/tests/unit/c/test-thread-attribute_default_set.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-attribute_delete.h b/level_0/f_thread/tests/unit/c/test-thread-attribute_delete.h index 3fb2d39b9..54bf069b9 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-attribute_delete.h +++ b/level_0/f_thread/tests/unit/c/test-thread-attribute_delete.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-attribute_detach_get.h b/level_0/f_thread/tests/unit/c/test-thread-attribute_detach_get.h index cbc360281..8637fddc1 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-attribute_detach_get.h +++ b/level_0/f_thread/tests/unit/c/test-thread-attribute_detach_get.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-attribute_detach_set.h b/level_0/f_thread/tests/unit/c/test-thread-attribute_detach_set.h index 5e4f01cb3..f393e56ce 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-attribute_detach_set.h +++ b/level_0/f_thread/tests/unit/c/test-thread-attribute_detach_set.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-attribute_guard_get.h b/level_0/f_thread/tests/unit/c/test-thread-attribute_guard_get.h index 887f1a969..3dec1cdf7 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-attribute_guard_get.h +++ b/level_0/f_thread/tests/unit/c/test-thread-attribute_guard_get.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-attribute_guard_set.h b/level_0/f_thread/tests/unit/c/test-thread-attribute_guard_set.h index 166b9039d..0f3d7439a 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-attribute_guard_set.h +++ b/level_0/f_thread/tests/unit/c/test-thread-attribute_guard_set.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-attribute_scheduler_inherit_get.h b/level_0/f_thread/tests/unit/c/test-thread-attribute_scheduler_inherit_get.h index 88766f6ac..3534d5955 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-attribute_scheduler_inherit_get.h +++ b/level_0/f_thread/tests/unit/c/test-thread-attribute_scheduler_inherit_get.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-attribute_scheduler_inherit_set.h b/level_0/f_thread/tests/unit/c/test-thread-attribute_scheduler_inherit_set.h index 20e5657e4..5a247b611 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-attribute_scheduler_inherit_set.h +++ b/level_0/f_thread/tests/unit/c/test-thread-attribute_scheduler_inherit_set.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-attribute_scheduler_parameter_get.h b/level_0/f_thread/tests/unit/c/test-thread-attribute_scheduler_parameter_get.h index c04940c4c..1e1005028 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-attribute_scheduler_parameter_get.h +++ b/level_0/f_thread/tests/unit/c/test-thread-attribute_scheduler_parameter_get.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-attribute_scheduler_parameter_set.h b/level_0/f_thread/tests/unit/c/test-thread-attribute_scheduler_parameter_set.h index 905ca0322..88bbddbd1 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-attribute_scheduler_parameter_set.h +++ b/level_0/f_thread/tests/unit/c/test-thread-attribute_scheduler_parameter_set.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-attribute_scheduler_policy_get.h b/level_0/f_thread/tests/unit/c/test-thread-attribute_scheduler_policy_get.h index 1c551860f..5685aba9c 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-attribute_scheduler_policy_get.h +++ b/level_0/f_thread/tests/unit/c/test-thread-attribute_scheduler_policy_get.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-attribute_scheduler_policy_set.h b/level_0/f_thread/tests/unit/c/test-thread-attribute_scheduler_policy_set.h index 0d307eb24..f029ed7ad 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-attribute_scheduler_policy_set.h +++ b/level_0/f_thread/tests/unit/c/test-thread-attribute_scheduler_policy_set.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-attribute_scope_get.h b/level_0/f_thread/tests/unit/c/test-thread-attribute_scope_get.h index 36e4cf5ba..583f8eb4e 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-attribute_scope_get.h +++ b/level_0/f_thread/tests/unit/c/test-thread-attribute_scope_get.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-attribute_scope_set.h b/level_0/f_thread/tests/unit/c/test-thread-attribute_scope_set.h index 6ef89456f..a5e140b73 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-attribute_scope_set.h +++ b/level_0/f_thread/tests/unit/c/test-thread-attribute_scope_set.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-attribute_stack_get.h b/level_0/f_thread/tests/unit/c/test-thread-attribute_stack_get.h index 6006d04b6..19fc0deb6 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-attribute_stack_get.h +++ b/level_0/f_thread/tests/unit/c/test-thread-attribute_stack_get.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-attribute_stack_set.h b/level_0/f_thread/tests/unit/c/test-thread-attribute_stack_set.h index d612290fc..c47c37bda 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-attribute_stack_set.h +++ b/level_0/f_thread/tests/unit/c/test-thread-attribute_stack_set.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-attribute_stack_size_get.h b/level_0/f_thread/tests/unit/c/test-thread-attribute_stack_size_get.h index c49ee6e59..a932b4fcf 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-attribute_stack_size_get.h +++ b/level_0/f_thread/tests/unit/c/test-thread-attribute_stack_size_get.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-attribute_stack_size_set.h b/level_0/f_thread/tests/unit/c/test-thread-attribute_stack_size_set.h index f03b96499..86c6a3a0d 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-attribute_stack_size_set.h +++ b/level_0/f_thread/tests/unit/c/test-thread-attribute_stack_size_set.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-attributes_adjust.h b/level_0/f_thread/tests/unit/c/test-thread-attributes_adjust.h index 37ea942da..e9cb0fd62 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-attributes_adjust.h +++ b/level_0/f_thread/tests/unit/c/test-thread-attributes_adjust.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-attributes_decimate_by.h b/level_0/f_thread/tests/unit/c/test-thread-attributes_decimate_by.h index cb169a02a..1e22f8c38 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-attributes_decimate_by.h +++ b/level_0/f_thread/tests/unit/c/test-thread-attributes_decimate_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-attributes_decrease_by.h b/level_0/f_thread/tests/unit/c/test-thread-attributes_decrease_by.h index 9d67d66b7..8e4418ed3 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-attributes_decrease_by.h +++ b/level_0/f_thread/tests/unit/c/test-thread-attributes_decrease_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-attributes_increase.h b/level_0/f_thread/tests/unit/c/test-thread-attributes_increase.h index 9095b4f35..0ea203146 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-attributes_increase.h +++ b/level_0/f_thread/tests/unit/c/test-thread-attributes_increase.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-attributes_increase_by.h b/level_0/f_thread/tests/unit/c/test-thread-attributes_increase_by.h index c31c0db62..86a8d2ea8 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-attributes_increase_by.h +++ b/level_0/f_thread/tests/unit/c/test-thread-attributes_increase_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-attributes_resize.h b/level_0/f_thread/tests/unit/c/test-thread-attributes_resize.h index fc871afcf..ed0cc6000 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-attributes_resize.h +++ b/level_0/f_thread/tests/unit/c/test-thread-attributes_resize.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-barrier_attribute_create.h b/level_0/f_thread/tests/unit/c/test-thread-barrier_attribute_create.h index 743dfb1b2..e98e625a8 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-barrier_attribute_create.h +++ b/level_0/f_thread/tests/unit/c/test-thread-barrier_attribute_create.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-barrier_attribute_delete.h b/level_0/f_thread/tests/unit/c/test-thread-barrier_attribute_delete.h index d68db45f6..104592acb 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-barrier_attribute_delete.h +++ b/level_0/f_thread/tests/unit/c/test-thread-barrier_attribute_delete.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-barrier_attribute_shared_get.h b/level_0/f_thread/tests/unit/c/test-thread-barrier_attribute_shared_get.h index 430dc3faf..84c03a883 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-barrier_attribute_shared_get.h +++ b/level_0/f_thread/tests/unit/c/test-thread-barrier_attribute_shared_get.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-barrier_attribute_shared_set.h b/level_0/f_thread/tests/unit/c/test-thread-barrier_attribute_shared_set.h index 4910aa38c..c86bd6b47 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-barrier_attribute_shared_set.h +++ b/level_0/f_thread/tests/unit/c/test-thread-barrier_attribute_shared_set.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-barrier_attributes_adjust.h b/level_0/f_thread/tests/unit/c/test-thread-barrier_attributes_adjust.h index edb87b9eb..e745db061 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-barrier_attributes_adjust.h +++ b/level_0/f_thread/tests/unit/c/test-thread-barrier_attributes_adjust.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-barrier_attributes_decimate_by.h b/level_0/f_thread/tests/unit/c/test-thread-barrier_attributes_decimate_by.h index 27ef05518..595145972 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-barrier_attributes_decimate_by.h +++ b/level_0/f_thread/tests/unit/c/test-thread-barrier_attributes_decimate_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-barrier_attributes_decrease_by.h b/level_0/f_thread/tests/unit/c/test-thread-barrier_attributes_decrease_by.h index d08e2c242..cd71547de 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-barrier_attributes_decrease_by.h +++ b/level_0/f_thread/tests/unit/c/test-thread-barrier_attributes_decrease_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-barrier_attributes_increase.h b/level_0/f_thread/tests/unit/c/test-thread-barrier_attributes_increase.h index 86a226d15..d8068fbd5 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-barrier_attributes_increase.h +++ b/level_0/f_thread/tests/unit/c/test-thread-barrier_attributes_increase.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-barrier_attributes_increase_by.h b/level_0/f_thread/tests/unit/c/test-thread-barrier_attributes_increase_by.h index 1e4717d73..800d330c9 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-barrier_attributes_increase_by.h +++ b/level_0/f_thread/tests/unit/c/test-thread-barrier_attributes_increase_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-barrier_attributes_resize.h b/level_0/f_thread/tests/unit/c/test-thread-barrier_attributes_resize.h index 32b70ca55..be3af2dfb 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-barrier_attributes_resize.h +++ b/level_0/f_thread/tests/unit/c/test-thread-barrier_attributes_resize.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-barrier_create.h b/level_0/f_thread/tests/unit/c/test-thread-barrier_create.h index 478dd8837..cf5cd0545 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-barrier_create.h +++ b/level_0/f_thread/tests/unit/c/test-thread-barrier_create.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-barrier_delete.h b/level_0/f_thread/tests/unit/c/test-thread-barrier_delete.h index 75e5a2531..815106ccb 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-barrier_delete.h +++ b/level_0/f_thread/tests/unit/c/test-thread-barrier_delete.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-barrier_wait.h b/level_0/f_thread/tests/unit/c/test-thread-barrier_wait.h index 73edb9e49..f34bcd804 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-barrier_wait.h +++ b/level_0/f_thread/tests/unit/c/test-thread-barrier_wait.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-barriers_adjust.h b/level_0/f_thread/tests/unit/c/test-thread-barriers_adjust.h index 4d03df895..90ab39b15 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-barriers_adjust.h +++ b/level_0/f_thread/tests/unit/c/test-thread-barriers_adjust.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-barriers_decimate_by.h b/level_0/f_thread/tests/unit/c/test-thread-barriers_decimate_by.h index dc0bcd03e..3d7cf146d 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-barriers_decimate_by.h +++ b/level_0/f_thread/tests/unit/c/test-thread-barriers_decimate_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-barriers_decrease_by.h b/level_0/f_thread/tests/unit/c/test-thread-barriers_decrease_by.h index 49ab73d10..d76a07298 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-barriers_decrease_by.h +++ b/level_0/f_thread/tests/unit/c/test-thread-barriers_decrease_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-barriers_increase.h b/level_0/f_thread/tests/unit/c/test-thread-barriers_increase.h index 7e3a9a515..282d369a7 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-barriers_increase.h +++ b/level_0/f_thread/tests/unit/c/test-thread-barriers_increase.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-barriers_increase_by.h b/level_0/f_thread/tests/unit/c/test-thread-barriers_increase_by.h index 4d3fb1a7d..a81cd8b49 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-barriers_increase_by.h +++ b/level_0/f_thread/tests/unit/c/test-thread-barriers_increase_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-barriers_resize.h b/level_0/f_thread/tests/unit/c/test-thread-barriers_resize.h index c83802a49..17e277bfa 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-barriers_resize.h +++ b/level_0/f_thread/tests/unit/c/test-thread-barriers_resize.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-caller.h b/level_0/f_thread/tests/unit/c/test-thread-caller.h index 2af21b2ff..ed0dcf5f3 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-caller.h +++ b/level_0/f_thread/tests/unit/c/test-thread-caller.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-cancel.h b/level_0/f_thread/tests/unit/c/test-thread-cancel.h index edadc4b73..0130e2570 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-cancel.h +++ b/level_0/f_thread/tests/unit/c/test-thread-cancel.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-cancel_state_set.h b/level_0/f_thread/tests/unit/c/test-thread-cancel_state_set.h index 03d8ede6a..8fdf5a2cf 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-cancel_state_set.h +++ b/level_0/f_thread/tests/unit/c/test-thread-cancel_state_set.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-cancel_test.h b/level_0/f_thread/tests/unit/c/test-thread-cancel_test.h index 80f1ab0bc..5eb372cd0 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-cancel_test.h +++ b/level_0/f_thread/tests/unit/c/test-thread-cancel_test.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-cancel_type_set.h b/level_0/f_thread/tests/unit/c/test-thread-cancel_type_set.h index 051a4a2dc..736a37581 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-cancel_type_set.h +++ b/level_0/f_thread/tests/unit/c/test-thread-cancel_type_set.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-clock_get_id.h b/level_0/f_thread/tests/unit/c/test-thread-clock_get_id.h index 2ec8bde8e..05dc11e26 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-clock_get_id.h +++ b/level_0/f_thread/tests/unit/c/test-thread-clock_get_id.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-compare.h b/level_0/f_thread/tests/unit/c/test-thread-compare.h index 242a1ad40..0355372b3 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-compare.h +++ b/level_0/f_thread/tests/unit/c/test-thread-compare.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-condition_attribute_clock_get.h b/level_0/f_thread/tests/unit/c/test-thread-condition_attribute_clock_get.h index d13edf133..00ce456de 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-condition_attribute_clock_get.h +++ b/level_0/f_thread/tests/unit/c/test-thread-condition_attribute_clock_get.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-condition_attribute_clock_set.h b/level_0/f_thread/tests/unit/c/test-thread-condition_attribute_clock_set.h index e63910a41..04bb3ffbf 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-condition_attribute_clock_set.h +++ b/level_0/f_thread/tests/unit/c/test-thread-condition_attribute_clock_set.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-condition_attribute_create.h b/level_0/f_thread/tests/unit/c/test-thread-condition_attribute_create.h index 281e2e0da..6b1b15f63 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-condition_attribute_create.h +++ b/level_0/f_thread/tests/unit/c/test-thread-condition_attribute_create.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-condition_attribute_delete.h b/level_0/f_thread/tests/unit/c/test-thread-condition_attribute_delete.h index bdbfe6bf5..3d553195d 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-condition_attribute_delete.h +++ b/level_0/f_thread/tests/unit/c/test-thread-condition_attribute_delete.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-condition_attribute_shared_get.h b/level_0/f_thread/tests/unit/c/test-thread-condition_attribute_shared_get.h index b100abf8f..84a5ee747 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-condition_attribute_shared_get.h +++ b/level_0/f_thread/tests/unit/c/test-thread-condition_attribute_shared_get.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-condition_attribute_shared_set.h b/level_0/f_thread/tests/unit/c/test-thread-condition_attribute_shared_set.h index 4e2f41b21..b5358bf32 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-condition_attribute_shared_set.h +++ b/level_0/f_thread/tests/unit/c/test-thread-condition_attribute_shared_set.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-condition_attributes_adjust.h b/level_0/f_thread/tests/unit/c/test-thread-condition_attributes_adjust.h index 093f82d2c..9f1fc475a 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-condition_attributes_adjust.h +++ b/level_0/f_thread/tests/unit/c/test-thread-condition_attributes_adjust.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-condition_attributes_decimate_by.h b/level_0/f_thread/tests/unit/c/test-thread-condition_attributes_decimate_by.h index bcedef74b..93fcf5a57 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-condition_attributes_decimate_by.h +++ b/level_0/f_thread/tests/unit/c/test-thread-condition_attributes_decimate_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-condition_attributes_decrease_by.h b/level_0/f_thread/tests/unit/c/test-thread-condition_attributes_decrease_by.h index 7547343ab..bd8fcff9c 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-condition_attributes_decrease_by.h +++ b/level_0/f_thread/tests/unit/c/test-thread-condition_attributes_decrease_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-condition_attributes_increase.h b/level_0/f_thread/tests/unit/c/test-thread-condition_attributes_increase.h index 895b8917b..ee0c0222b 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-condition_attributes_increase.h +++ b/level_0/f_thread/tests/unit/c/test-thread-condition_attributes_increase.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-condition_attributes_increase_by.h b/level_0/f_thread/tests/unit/c/test-thread-condition_attributes_increase_by.h index 4ccb1f648..04778dc7f 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-condition_attributes_increase_by.h +++ b/level_0/f_thread/tests/unit/c/test-thread-condition_attributes_increase_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-condition_attributes_resize.h b/level_0/f_thread/tests/unit/c/test-thread-condition_attributes_resize.h index bed910620..a39c5de11 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-condition_attributes_resize.h +++ b/level_0/f_thread/tests/unit/c/test-thread-condition_attributes_resize.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-condition_create.h b/level_0/f_thread/tests/unit/c/test-thread-condition_create.h index e34395c70..26d0e70d9 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-condition_create.h +++ b/level_0/f_thread/tests/unit/c/test-thread-condition_create.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-condition_delete.h b/level_0/f_thread/tests/unit/c/test-thread-condition_delete.h index 5a1e580f3..cb53b0d28 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-condition_delete.h +++ b/level_0/f_thread/tests/unit/c/test-thread-condition_delete.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-condition_signal.h b/level_0/f_thread/tests/unit/c/test-thread-condition_signal.h index 0dcd40f57..a9665ce0c 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-condition_signal.h +++ b/level_0/f_thread/tests/unit/c/test-thread-condition_signal.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-condition_signal_all.h b/level_0/f_thread/tests/unit/c/test-thread-condition_signal_all.h index 482f47551..6ca6194ba 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-condition_signal_all.h +++ b/level_0/f_thread/tests/unit/c/test-thread-condition_signal_all.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-condition_wait.h b/level_0/f_thread/tests/unit/c/test-thread-condition_wait.h index 6e0d88f69..0adcd24bd 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-condition_wait.h +++ b/level_0/f_thread/tests/unit/c/test-thread-condition_wait.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-condition_wait_timed.h b/level_0/f_thread/tests/unit/c/test-thread-condition_wait_timed.h index 6db7302b5..80a4560a9 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-condition_wait_timed.h +++ b/level_0/f_thread/tests/unit/c/test-thread-condition_wait_timed.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-conditions_adjust.h b/level_0/f_thread/tests/unit/c/test-thread-conditions_adjust.h index f0e2644ef..206fe1941 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-conditions_adjust.h +++ b/level_0/f_thread/tests/unit/c/test-thread-conditions_adjust.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-conditions_decimate_by.h b/level_0/f_thread/tests/unit/c/test-thread-conditions_decimate_by.h index 4aa9b7171..95c4e7f52 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-conditions_decimate_by.h +++ b/level_0/f_thread/tests/unit/c/test-thread-conditions_decimate_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-conditions_decrease_by.h b/level_0/f_thread/tests/unit/c/test-thread-conditions_decrease_by.h index 87c7c63d9..51a98cb53 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-conditions_decrease_by.h +++ b/level_0/f_thread/tests/unit/c/test-thread-conditions_decrease_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-conditions_increase.h b/level_0/f_thread/tests/unit/c/test-thread-conditions_increase.h index 42d4c9819..540a22388 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-conditions_increase.h +++ b/level_0/f_thread/tests/unit/c/test-thread-conditions_increase.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-conditions_increase_by.h b/level_0/f_thread/tests/unit/c/test-thread-conditions_increase_by.h index 2a98ab585..681e467aa 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-conditions_increase_by.h +++ b/level_0/f_thread/tests/unit/c/test-thread-conditions_increase_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-conditions_resize.h b/level_0/f_thread/tests/unit/c/test-thread-conditions_resize.h index 7e60abf08..786e9cf4a 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-conditions_resize.h +++ b/level_0/f_thread/tests/unit/c/test-thread-conditions_resize.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-create.h b/level_0/f_thread/tests/unit/c/test-thread-create.h index 546e5b01c..f48672494 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-create.h +++ b/level_0/f_thread/tests/unit/c/test-thread-create.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-detach.h b/level_0/f_thread/tests/unit/c/test-thread-detach.h index 235b039ee..cfb54fc20 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-detach.h +++ b/level_0/f_thread/tests/unit/c/test-thread-detach.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-exit.h b/level_0/f_thread/tests/unit/c/test-thread-exit.h index 106388bf0..87294d907 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-exit.h +++ b/level_0/f_thread/tests/unit/c/test-thread-exit.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-ids_adjust.h b/level_0/f_thread/tests/unit/c/test-thread-ids_adjust.h index c56ae72c6..43a593f1a 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-ids_adjust.h +++ b/level_0/f_thread/tests/unit/c/test-thread-ids_adjust.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-ids_decimate_by.h b/level_0/f_thread/tests/unit/c/test-thread-ids_decimate_by.h index 4b96647d8..cc662231a 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-ids_decimate_by.h +++ b/level_0/f_thread/tests/unit/c/test-thread-ids_decimate_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-ids_decrease_by.h b/level_0/f_thread/tests/unit/c/test-thread-ids_decrease_by.h index 75e65bfdc..617e75e6b 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-ids_decrease_by.h +++ b/level_0/f_thread/tests/unit/c/test-thread-ids_decrease_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-ids_increase.h b/level_0/f_thread/tests/unit/c/test-thread-ids_increase.h index 2353d9a23..5ed6c708e 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-ids_increase.h +++ b/level_0/f_thread/tests/unit/c/test-thread-ids_increase.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-ids_increase_by.h b/level_0/f_thread/tests/unit/c/test-thread-ids_increase_by.h index c4a3c1843..1b253f7c2 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-ids_increase_by.h +++ b/level_0/f_thread/tests/unit/c/test-thread-ids_increase_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-ids_resize.h b/level_0/f_thread/tests/unit/c/test-thread-ids_resize.h index c0f0b6114..484340567 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-ids_resize.h +++ b/level_0/f_thread/tests/unit/c/test-thread-ids_resize.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-join.h b/level_0/f_thread/tests/unit/c/test-thread-join.h index 5b1ba95fc..5f6ea378c 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-join.h +++ b/level_0/f_thread/tests/unit/c/test-thread-join.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-join_timed.h b/level_0/f_thread/tests/unit/c/test-thread-join_timed.h index f3ac70fab..300869fd8 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-join_timed.h +++ b/level_0/f_thread/tests/unit/c/test-thread-join_timed.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-join_try.h b/level_0/f_thread/tests/unit/c/test-thread-join_try.h index cd629020d..d1e8afa2c 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-join_try.h +++ b/level_0/f_thread/tests/unit/c/test-thread-join_try.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-key_create.h b/level_0/f_thread/tests/unit/c/test-thread-key_create.h index 834b84018..a7ebb53e6 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-key_create.h +++ b/level_0/f_thread/tests/unit/c/test-thread-key_create.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-key_delete.h b/level_0/f_thread/tests/unit/c/test-thread-key_delete.h index d37f0e2b6..98f6e3eb0 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-key_delete.h +++ b/level_0/f_thread/tests/unit/c/test-thread-key_delete.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-key_get.h b/level_0/f_thread/tests/unit/c/test-thread-key_get.h index 3a385f404..fe0a03bdc 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-key_get.h +++ b/level_0/f_thread/tests/unit/c/test-thread-key_get.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-key_set.h b/level_0/f_thread/tests/unit/c/test-thread-key_set.h index 36988bc6c..bad528de3 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-key_set.h +++ b/level_0/f_thread/tests/unit/c/test-thread-key_set.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-keys_adjust.h b/level_0/f_thread/tests/unit/c/test-thread-keys_adjust.h index a18dc2775..cd3101a9d 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-keys_adjust.h +++ b/level_0/f_thread/tests/unit/c/test-thread-keys_adjust.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-keys_decimate_by.h b/level_0/f_thread/tests/unit/c/test-thread-keys_decimate_by.h index d79bd7477..28df2d3b1 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-keys_decimate_by.h +++ b/level_0/f_thread/tests/unit/c/test-thread-keys_decimate_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-keys_decrease_by.h b/level_0/f_thread/tests/unit/c/test-thread-keys_decrease_by.h index 7109850de..25548fd2b 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-keys_decrease_by.h +++ b/level_0/f_thread/tests/unit/c/test-thread-keys_decrease_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-keys_increase.h b/level_0/f_thread/tests/unit/c/test-thread-keys_increase.h index 989f6a603..d7242b16b 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-keys_increase.h +++ b/level_0/f_thread/tests/unit/c/test-thread-keys_increase.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-keys_increase_by.h b/level_0/f_thread/tests/unit/c/test-thread-keys_increase_by.h index 41e26bfc7..70d721870 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-keys_increase_by.h +++ b/level_0/f_thread/tests/unit/c/test-thread-keys_increase_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-keys_resize.h b/level_0/f_thread/tests/unit/c/test-thread-keys_resize.h index 3c2605179..ebcbfa054 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-keys_resize.h +++ b/level_0/f_thread/tests/unit/c/test-thread-keys_resize.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-lock_attribute_create.h b/level_0/f_thread/tests/unit/c/test-thread-lock_attribute_create.h index f39246478..1ea215a98 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-lock_attribute_create.h +++ b/level_0/f_thread/tests/unit/c/test-thread-lock_attribute_create.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-lock_attribute_delete.h b/level_0/f_thread/tests/unit/c/test-thread-lock_attribute_delete.h index 6f3d33dea..7a8c66694 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-lock_attribute_delete.h +++ b/level_0/f_thread/tests/unit/c/test-thread-lock_attribute_delete.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-lock_attribute_shared_get.h b/level_0/f_thread/tests/unit/c/test-thread-lock_attribute_shared_get.h index c57da18b6..d952455bd 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-lock_attribute_shared_get.h +++ b/level_0/f_thread/tests/unit/c/test-thread-lock_attribute_shared_get.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-lock_attribute_shared_set.h b/level_0/f_thread/tests/unit/c/test-thread-lock_attribute_shared_set.h index d9bf4345f..ce46c0c3f 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-lock_attribute_shared_set.h +++ b/level_0/f_thread/tests/unit/c/test-thread-lock_attribute_shared_set.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-lock_attributes_adjust.h b/level_0/f_thread/tests/unit/c/test-thread-lock_attributes_adjust.h index 4591d1e32..935d9f0fe 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-lock_attributes_adjust.h +++ b/level_0/f_thread/tests/unit/c/test-thread-lock_attributes_adjust.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-lock_attributes_decimate_by.h b/level_0/f_thread/tests/unit/c/test-thread-lock_attributes_decimate_by.h index fef2f55b3..d57a4f055 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-lock_attributes_decimate_by.h +++ b/level_0/f_thread/tests/unit/c/test-thread-lock_attributes_decimate_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-lock_attributes_decrease_by.h b/level_0/f_thread/tests/unit/c/test-thread-lock_attributes_decrease_by.h index 7fc73bed6..a5e720eb6 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-lock_attributes_decrease_by.h +++ b/level_0/f_thread/tests/unit/c/test-thread-lock_attributes_decrease_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-lock_attributes_increase.h b/level_0/f_thread/tests/unit/c/test-thread-lock_attributes_increase.h index dc950ab43..abca64663 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-lock_attributes_increase.h +++ b/level_0/f_thread/tests/unit/c/test-thread-lock_attributes_increase.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-lock_attributes_increase_by.h b/level_0/f_thread/tests/unit/c/test-thread-lock_attributes_increase_by.h index 595ab7967..d58cb611a 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-lock_attributes_increase_by.h +++ b/level_0/f_thread/tests/unit/c/test-thread-lock_attributes_increase_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-lock_attributes_resize.h b/level_0/f_thread/tests/unit/c/test-thread-lock_attributes_resize.h index c4d590635..20df50c0d 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-lock_attributes_resize.h +++ b/level_0/f_thread/tests/unit/c/test-thread-lock_attributes_resize.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-lock_create.h b/level_0/f_thread/tests/unit/c/test-thread-lock_create.h index 5f7e980ec..33ddf0094 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-lock_create.h +++ b/level_0/f_thread/tests/unit/c/test-thread-lock_create.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-lock_delete.h b/level_0/f_thread/tests/unit/c/test-thread-lock_delete.h index 6836144cd..031b7fd4b 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-lock_delete.h +++ b/level_0/f_thread/tests/unit/c/test-thread-lock_delete.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-lock_read.h b/level_0/f_thread/tests/unit/c/test-thread-lock_read.h index 1f6d0b39e..bbc75ea67 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-lock_read.h +++ b/level_0/f_thread/tests/unit/c/test-thread-lock_read.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-lock_read_timed.h b/level_0/f_thread/tests/unit/c/test-thread-lock_read_timed.h index 40e17fa2a..30961dd22 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-lock_read_timed.h +++ b/level_0/f_thread/tests/unit/c/test-thread-lock_read_timed.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-lock_read_try.h b/level_0/f_thread/tests/unit/c/test-thread-lock_read_try.h index 27c9ac715..db725c983 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-lock_read_try.h +++ b/level_0/f_thread/tests/unit/c/test-thread-lock_read_try.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-lock_write.h b/level_0/f_thread/tests/unit/c/test-thread-lock_write.h index a751f37d8..b3b95768f 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-lock_write.h +++ b/level_0/f_thread/tests/unit/c/test-thread-lock_write.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-lock_write_timed.h b/level_0/f_thread/tests/unit/c/test-thread-lock_write_timed.h index f8ab6e893..f79a11181 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-lock_write_timed.h +++ b/level_0/f_thread/tests/unit/c/test-thread-lock_write_timed.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-lock_write_try.h b/level_0/f_thread/tests/unit/c/test-thread-lock_write_try.h index b38c8e3cd..69cf3379d 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-lock_write_try.h +++ b/level_0/f_thread/tests/unit/c/test-thread-lock_write_try.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-locks_adjust.h b/level_0/f_thread/tests/unit/c/test-thread-locks_adjust.h index 424bd737c..e0590fb30 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-locks_adjust.h +++ b/level_0/f_thread/tests/unit/c/test-thread-locks_adjust.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-locks_decimate_by.h b/level_0/f_thread/tests/unit/c/test-thread-locks_decimate_by.h index d0fdbd30b..66426a882 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-locks_decimate_by.h +++ b/level_0/f_thread/tests/unit/c/test-thread-locks_decimate_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-locks_decrease_by.h b/level_0/f_thread/tests/unit/c/test-thread-locks_decrease_by.h index 90fc3a0cd..02dfafd71 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-locks_decrease_by.h +++ b/level_0/f_thread/tests/unit/c/test-thread-locks_decrease_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-locks_increase.h b/level_0/f_thread/tests/unit/c/test-thread-locks_increase.h index f44491c9f..e1692c488 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-locks_increase.h +++ b/level_0/f_thread/tests/unit/c/test-thread-locks_increase.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-locks_increase_by.h b/level_0/f_thread/tests/unit/c/test-thread-locks_increase_by.h index b30e7f380..a14772f48 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-locks_increase_by.h +++ b/level_0/f_thread/tests/unit/c/test-thread-locks_increase_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-locks_resize.h b/level_0/f_thread/tests/unit/c/test-thread-locks_resize.h index 1995ad235..aebb72b93 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-locks_resize.h +++ b/level_0/f_thread/tests/unit/c/test-thread-locks_resize.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-mutex_attribute_create.h b/level_0/f_thread/tests/unit/c/test-thread-mutex_attribute_create.h index e2ff89548..a7ca5a7ff 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-mutex_attribute_create.h +++ b/level_0/f_thread/tests/unit/c/test-thread-mutex_attribute_create.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-mutex_attribute_delete.h b/level_0/f_thread/tests/unit/c/test-thread-mutex_attribute_delete.h index 90b63a3dd..2ff3be164 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-mutex_attribute_delete.h +++ b/level_0/f_thread/tests/unit/c/test-thread-mutex_attribute_delete.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-mutex_attribute_priority_ceiling_get.h b/level_0/f_thread/tests/unit/c/test-thread-mutex_attribute_priority_ceiling_get.h index 34b30d17e..2205ced3a 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-mutex_attribute_priority_ceiling_get.h +++ b/level_0/f_thread/tests/unit/c/test-thread-mutex_attribute_priority_ceiling_get.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-mutex_attribute_priority_ceiling_set.h b/level_0/f_thread/tests/unit/c/test-thread-mutex_attribute_priority_ceiling_set.h index a25f3afee..c595fa4d3 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-mutex_attribute_priority_ceiling_set.h +++ b/level_0/f_thread/tests/unit/c/test-thread-mutex_attribute_priority_ceiling_set.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-mutex_attribute_protocol_get.h b/level_0/f_thread/tests/unit/c/test-thread-mutex_attribute_protocol_get.h index e361c21ca..168118d3f 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-mutex_attribute_protocol_get.h +++ b/level_0/f_thread/tests/unit/c/test-thread-mutex_attribute_protocol_get.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-mutex_attribute_protocol_set.h b/level_0/f_thread/tests/unit/c/test-thread-mutex_attribute_protocol_set.h index c3ea76cf5..834158ed0 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-mutex_attribute_protocol_set.h +++ b/level_0/f_thread/tests/unit/c/test-thread-mutex_attribute_protocol_set.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-mutex_attribute_shared_get.h b/level_0/f_thread/tests/unit/c/test-thread-mutex_attribute_shared_get.h index 2a88e820a..b18e02369 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-mutex_attribute_shared_get.h +++ b/level_0/f_thread/tests/unit/c/test-thread-mutex_attribute_shared_get.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-mutex_attribute_shared_set.h b/level_0/f_thread/tests/unit/c/test-thread-mutex_attribute_shared_set.h index dca26e54f..aa965bca1 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-mutex_attribute_shared_set.h +++ b/level_0/f_thread/tests/unit/c/test-thread-mutex_attribute_shared_set.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-mutex_attribute_type_get.h b/level_0/f_thread/tests/unit/c/test-thread-mutex_attribute_type_get.h index eb2125d7a..0fc57abea 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-mutex_attribute_type_get.h +++ b/level_0/f_thread/tests/unit/c/test-thread-mutex_attribute_type_get.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-mutex_attribute_type_set.h b/level_0/f_thread/tests/unit/c/test-thread-mutex_attribute_type_set.h index 8bf66c25a..7fda4ab4e 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-mutex_attribute_type_set.h +++ b/level_0/f_thread/tests/unit/c/test-thread-mutex_attribute_type_set.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-mutex_attributes_adjust.h b/level_0/f_thread/tests/unit/c/test-thread-mutex_attributes_adjust.h index 17d10db4a..baae21c0d 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-mutex_attributes_adjust.h +++ b/level_0/f_thread/tests/unit/c/test-thread-mutex_attributes_adjust.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-mutex_attributes_decimate_by.h b/level_0/f_thread/tests/unit/c/test-thread-mutex_attributes_decimate_by.h index 312fe1ea5..1e2fda3ed 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-mutex_attributes_decimate_by.h +++ b/level_0/f_thread/tests/unit/c/test-thread-mutex_attributes_decimate_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-mutex_attributes_decrease_by.h b/level_0/f_thread/tests/unit/c/test-thread-mutex_attributes_decrease_by.h index fe43337e3..d5eb3bd49 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-mutex_attributes_decrease_by.h +++ b/level_0/f_thread/tests/unit/c/test-thread-mutex_attributes_decrease_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-mutex_attributes_increase.h b/level_0/f_thread/tests/unit/c/test-thread-mutex_attributes_increase.h index cb95cd2f7..e557d6cad 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-mutex_attributes_increase.h +++ b/level_0/f_thread/tests/unit/c/test-thread-mutex_attributes_increase.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-mutex_attributes_increase_by.h b/level_0/f_thread/tests/unit/c/test-thread-mutex_attributes_increase_by.h index 7b47ea508..72f5c5cf5 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-mutex_attributes_increase_by.h +++ b/level_0/f_thread/tests/unit/c/test-thread-mutex_attributes_increase_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-mutex_attributes_resize.h b/level_0/f_thread/tests/unit/c/test-thread-mutex_attributes_resize.h index 58267b87b..84d297cdd 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-mutex_attributes_resize.h +++ b/level_0/f_thread/tests/unit/c/test-thread-mutex_attributes_resize.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-mutex_create.h b/level_0/f_thread/tests/unit/c/test-thread-mutex_create.h index 53ab17f67..dc213b4fb 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-mutex_create.h +++ b/level_0/f_thread/tests/unit/c/test-thread-mutex_create.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-mutex_delete.h b/level_0/f_thread/tests/unit/c/test-thread-mutex_delete.h index a4965efcd..e0d1363a2 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-mutex_delete.h +++ b/level_0/f_thread/tests/unit/c/test-thread-mutex_delete.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-mutex_lock.h b/level_0/f_thread/tests/unit/c/test-thread-mutex_lock.h index 15099f464..766b2e90f 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-mutex_lock.h +++ b/level_0/f_thread/tests/unit/c/test-thread-mutex_lock.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-mutex_lock_timed.h b/level_0/f_thread/tests/unit/c/test-thread-mutex_lock_timed.h index 14030ab57..8e949d614 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-mutex_lock_timed.h +++ b/level_0/f_thread/tests/unit/c/test-thread-mutex_lock_timed.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-mutex_lock_try.h b/level_0/f_thread/tests/unit/c/test-thread-mutex_lock_try.h index 7f8a00c83..6de58ce11 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-mutex_lock_try.h +++ b/level_0/f_thread/tests/unit/c/test-thread-mutex_lock_try.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-mutex_priority_ceiling_get.h b/level_0/f_thread/tests/unit/c/test-thread-mutex_priority_ceiling_get.h index 97562c542..aee4c1e18 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-mutex_priority_ceiling_get.h +++ b/level_0/f_thread/tests/unit/c/test-thread-mutex_priority_ceiling_get.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-mutex_priority_ceiling_set.h b/level_0/f_thread/tests/unit/c/test-thread-mutex_priority_ceiling_set.h index 4112ce718..55df5379f 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-mutex_priority_ceiling_set.h +++ b/level_0/f_thread/tests/unit/c/test-thread-mutex_priority_ceiling_set.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-mutexs_adjust.h b/level_0/f_thread/tests/unit/c/test-thread-mutexs_adjust.h index 6d532b64f..674947f18 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-mutexs_adjust.h +++ b/level_0/f_thread/tests/unit/c/test-thread-mutexs_adjust.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-mutexs_decimate_by.h b/level_0/f_thread/tests/unit/c/test-thread-mutexs_decimate_by.h index cd9901a50..47ccbf90e 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-mutexs_decimate_by.h +++ b/level_0/f_thread/tests/unit/c/test-thread-mutexs_decimate_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-mutexs_decrease_by.h b/level_0/f_thread/tests/unit/c/test-thread-mutexs_decrease_by.h index eb19fbf5a..7551f861d 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-mutexs_decrease_by.h +++ b/level_0/f_thread/tests/unit/c/test-thread-mutexs_decrease_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-mutexs_increase.h b/level_0/f_thread/tests/unit/c/test-thread-mutexs_increase.h index 09c726691..fe7dc0a1f 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-mutexs_increase.h +++ b/level_0/f_thread/tests/unit/c/test-thread-mutexs_increase.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-mutexs_increase_by.h b/level_0/f_thread/tests/unit/c/test-thread-mutexs_increase_by.h index d2e742f2d..ea7ad30b8 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-mutexs_increase_by.h +++ b/level_0/f_thread/tests/unit/c/test-thread-mutexs_increase_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-mutexs_resize.h b/level_0/f_thread/tests/unit/c/test-thread-mutexs_resize.h index 74c605493..d2634aabe 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-mutexs_resize.h +++ b/level_0/f_thread/tests/unit/c/test-thread-mutexs_resize.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-once.h b/level_0/f_thread/tests/unit/c/test-thread-once.h index 7c8beccea..ead3bcf7c 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-once.h +++ b/level_0/f_thread/tests/unit/c/test-thread-once.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-onces_adjust.h b/level_0/f_thread/tests/unit/c/test-thread-onces_adjust.h index 5b516f731..0538d8c44 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-onces_adjust.h +++ b/level_0/f_thread/tests/unit/c/test-thread-onces_adjust.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-onces_decimate_by.h b/level_0/f_thread/tests/unit/c/test-thread-onces_decimate_by.h index 2bfd6398a..54c3f0410 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-onces_decimate_by.h +++ b/level_0/f_thread/tests/unit/c/test-thread-onces_decimate_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-onces_decrease_by.h b/level_0/f_thread/tests/unit/c/test-thread-onces_decrease_by.h index 295b3535f..045607b6e 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-onces_decrease_by.h +++ b/level_0/f_thread/tests/unit/c/test-thread-onces_decrease_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-onces_increase.h b/level_0/f_thread/tests/unit/c/test-thread-onces_increase.h index 07c296d1a..e37b16fa3 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-onces_increase.h +++ b/level_0/f_thread/tests/unit/c/test-thread-onces_increase.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-onces_increase_by.h b/level_0/f_thread/tests/unit/c/test-thread-onces_increase_by.h index 3e6a31ec8..478527ab3 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-onces_increase_by.h +++ b/level_0/f_thread/tests/unit/c/test-thread-onces_increase_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-onces_resize.h b/level_0/f_thread/tests/unit/c/test-thread-onces_resize.h index 1ac8d2c94..8a56330fb 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-onces_resize.h +++ b/level_0/f_thread/tests/unit/c/test-thread-onces_resize.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-scheduler_parameter_get.h b/level_0/f_thread/tests/unit/c/test-thread-scheduler_parameter_get.h index 35645601c..89828c853 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-scheduler_parameter_get.h +++ b/level_0/f_thread/tests/unit/c/test-thread-scheduler_parameter_get.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-scheduler_parameter_set.h b/level_0/f_thread/tests/unit/c/test-thread-scheduler_parameter_set.h index 399e98293..6cf3724e1 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-scheduler_parameter_set.h +++ b/level_0/f_thread/tests/unit/c/test-thread-scheduler_parameter_set.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-scheduler_priority_set.h b/level_0/f_thread/tests/unit/c/test-thread-scheduler_priority_set.h index 93a80bcb3..06a31b707 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-scheduler_priority_set.h +++ b/level_0/f_thread/tests/unit/c/test-thread-scheduler_priority_set.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-semaphore_create.h b/level_0/f_thread/tests/unit/c/test-thread-semaphore_create.h index e05f74475..1d4835e46 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-semaphore_create.h +++ b/level_0/f_thread/tests/unit/c/test-thread-semaphore_create.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-semaphore_delete.h b/level_0/f_thread/tests/unit/c/test-thread-semaphore_delete.h index 2e0b45c2a..ad92bfaca 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-semaphore_delete.h +++ b/level_0/f_thread/tests/unit/c/test-thread-semaphore_delete.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-semaphore_file_close.h b/level_0/f_thread/tests/unit/c/test-thread-semaphore_file_close.h index 3813ab473..6866f1d5b 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-semaphore_file_close.h +++ b/level_0/f_thread/tests/unit/c/test-thread-semaphore_file_close.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-semaphore_file_delete.h b/level_0/f_thread/tests/unit/c/test-thread-semaphore_file_delete.h index d5cd3be23..38efa8156 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-semaphore_file_delete.h +++ b/level_0/f_thread/tests/unit/c/test-thread-semaphore_file_delete.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-semaphore_file_open.h b/level_0/f_thread/tests/unit/c/test-thread-semaphore_file_open.h index d8355179a..86f66295a 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-semaphore_file_open.h +++ b/level_0/f_thread/tests/unit/c/test-thread-semaphore_file_open.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-semaphore_lock.h b/level_0/f_thread/tests/unit/c/test-thread-semaphore_lock.h index 6d5fb16d1..0f904f4c1 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-semaphore_lock.h +++ b/level_0/f_thread/tests/unit/c/test-thread-semaphore_lock.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-semaphore_lock_timed.h b/level_0/f_thread/tests/unit/c/test-thread-semaphore_lock_timed.h index 6337df529..3aaaa5aa0 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-semaphore_lock_timed.h +++ b/level_0/f_thread/tests/unit/c/test-thread-semaphore_lock_timed.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-semaphore_lock_try.h b/level_0/f_thread/tests/unit/c/test-thread-semaphore_lock_try.h index f2af34eb3..0e303a549 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-semaphore_lock_try.h +++ b/level_0/f_thread/tests/unit/c/test-thread-semaphore_lock_try.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-semaphore_unlock.h b/level_0/f_thread/tests/unit/c/test-thread-semaphore_unlock.h index 3461d04ac..79693eef0 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-semaphore_unlock.h +++ b/level_0/f_thread/tests/unit/c/test-thread-semaphore_unlock.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-semaphore_value_get.h b/level_0/f_thread/tests/unit/c/test-thread-semaphore_value_get.h index fe8c1996b..411b9d949 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-semaphore_value_get.h +++ b/level_0/f_thread/tests/unit/c/test-thread-semaphore_value_get.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-semaphores_adjust.h b/level_0/f_thread/tests/unit/c/test-thread-semaphores_adjust.h index c6fe86f59..7292d62f9 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-semaphores_adjust.h +++ b/level_0/f_thread/tests/unit/c/test-thread-semaphores_adjust.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-semaphores_decimate_by.h b/level_0/f_thread/tests/unit/c/test-thread-semaphores_decimate_by.h index 74b6434ca..41a9791ed 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-semaphores_decimate_by.h +++ b/level_0/f_thread/tests/unit/c/test-thread-semaphores_decimate_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-semaphores_decrease_by.h b/level_0/f_thread/tests/unit/c/test-thread-semaphores_decrease_by.h index 1ae293c28..34df8c5e1 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-semaphores_decrease_by.h +++ b/level_0/f_thread/tests/unit/c/test-thread-semaphores_decrease_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-semaphores_increase.h b/level_0/f_thread/tests/unit/c/test-thread-semaphores_increase.h index 3f8aa10c0..2ebc2a094 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-semaphores_increase.h +++ b/level_0/f_thread/tests/unit/c/test-thread-semaphores_increase.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-semaphores_increase_by.h b/level_0/f_thread/tests/unit/c/test-thread-semaphores_increase_by.h index d20d8a436..11abcb293 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-semaphores_increase_by.h +++ b/level_0/f_thread/tests/unit/c/test-thread-semaphores_increase_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-semaphores_resize.h b/level_0/f_thread/tests/unit/c/test-thread-semaphores_resize.h index 62cf19c92..a41a3e121 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-semaphores_resize.h +++ b/level_0/f_thread/tests/unit/c/test-thread-semaphores_resize.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-sets_adjust.h b/level_0/f_thread/tests/unit/c/test-thread-sets_adjust.h index ea7709f1a..adbefb249 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-sets_adjust.h +++ b/level_0/f_thread/tests/unit/c/test-thread-sets_adjust.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-sets_decimate_by.h b/level_0/f_thread/tests/unit/c/test-thread-sets_decimate_by.h index e64c42ae8..b10a23d59 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-sets_decimate_by.h +++ b/level_0/f_thread/tests/unit/c/test-thread-sets_decimate_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-sets_decrease_by.h b/level_0/f_thread/tests/unit/c/test-thread-sets_decrease_by.h index 2bef736ef..974519119 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-sets_decrease_by.h +++ b/level_0/f_thread/tests/unit/c/test-thread-sets_decrease_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-sets_increase.h b/level_0/f_thread/tests/unit/c/test-thread-sets_increase.h index 52d265a09..3643e488b 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-sets_increase.h +++ b/level_0/f_thread/tests/unit/c/test-thread-sets_increase.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-sets_increase_by.h b/level_0/f_thread/tests/unit/c/test-thread-sets_increase_by.h index ceadba275..dea34d82f 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-sets_increase_by.h +++ b/level_0/f_thread/tests/unit/c/test-thread-sets_increase_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-sets_resize.h b/level_0/f_thread/tests/unit/c/test-thread-sets_resize.h index ebe6d9fc9..a0c0ee6e5 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-sets_resize.h +++ b/level_0/f_thread/tests/unit/c/test-thread-sets_resize.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-signal_mask.h b/level_0/f_thread/tests/unit/c/test-thread-signal_mask.h index 20e3f2b73..705fa635f 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-signal_mask.h +++ b/level_0/f_thread/tests/unit/c/test-thread-signal_mask.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-signal_queue.h b/level_0/f_thread/tests/unit/c/test-thread-signal_queue.h index 7c7d50ace..305b7260d 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-signal_queue.h +++ b/level_0/f_thread/tests/unit/c/test-thread-signal_queue.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-signal_write.h b/level_0/f_thread/tests/unit/c/test-thread-signal_write.h index 1854c26c7..362109e48 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-signal_write.h +++ b/level_0/f_thread/tests/unit/c/test-thread-signal_write.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-spin_create.h b/level_0/f_thread/tests/unit/c/test-thread-spin_create.h index f735c1445..112585b22 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-spin_create.h +++ b/level_0/f_thread/tests/unit/c/test-thread-spin_create.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-spin_delete.h b/level_0/f_thread/tests/unit/c/test-thread-spin_delete.h index cc1f66695..80a37cda9 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-spin_delete.h +++ b/level_0/f_thread/tests/unit/c/test-thread-spin_delete.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-spin_lock.h b/level_0/f_thread/tests/unit/c/test-thread-spin_lock.h index e26e29461..938d12fb5 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-spin_lock.h +++ b/level_0/f_thread/tests/unit/c/test-thread-spin_lock.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-spin_lock_try.h b/level_0/f_thread/tests/unit/c/test-thread-spin_lock_try.h index bfa312c8f..842eccb54 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-spin_lock_try.h +++ b/level_0/f_thread/tests/unit/c/test-thread-spin_lock_try.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-spin_unlock.h b/level_0/f_thread/tests/unit/c/test-thread-spin_unlock.h index ecc65220d..e31157cb1 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-spin_unlock.h +++ b/level_0/f_thread/tests/unit/c/test-thread-spin_unlock.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-spins_adjust.h b/level_0/f_thread/tests/unit/c/test-thread-spins_adjust.h index 17f639c5f..9ed73af74 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-spins_adjust.h +++ b/level_0/f_thread/tests/unit/c/test-thread-spins_adjust.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-spins_decimate_by.h b/level_0/f_thread/tests/unit/c/test-thread-spins_decimate_by.h index 90e6b155d..31cecf0ba 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-spins_decimate_by.h +++ b/level_0/f_thread/tests/unit/c/test-thread-spins_decimate_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-spins_decrease_by.h b/level_0/f_thread/tests/unit/c/test-thread-spins_decrease_by.h index e06ad17f5..ef610d6be 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-spins_decrease_by.h +++ b/level_0/f_thread/tests/unit/c/test-thread-spins_decrease_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-spins_increase.h b/level_0/f_thread/tests/unit/c/test-thread-spins_increase.h index 7302fca03..dc7566d34 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-spins_increase.h +++ b/level_0/f_thread/tests/unit/c/test-thread-spins_increase.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-spins_increase_by.h b/level_0/f_thread/tests/unit/c/test-thread-spins_increase_by.h index 307599802..1e33bdabd 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-spins_increase_by.h +++ b/level_0/f_thread/tests/unit/c/test-thread-spins_increase_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread-spins_resize.h b/level_0/f_thread/tests/unit/c/test-thread-spins_resize.h index 6132ce1ae..4fa350d2d 100644 --- a/level_0/f_thread/tests/unit/c/test-thread-spins_resize.h +++ b/level_0/f_thread/tests/unit/c/test-thread-spins_resize.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the thread project. diff --git a/level_0/f_thread/tests/unit/c/test-thread.h b/level_0/f_thread/tests/unit/c/test-thread.h index 9b27b7b99..90734ebc0 100644 --- a/level_0/f_thread/tests/unit/c/test-thread.h +++ b/level_0/f_thread/tests/unit/c/test-thread.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Thread - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the thread project. diff --git a/level_0/f_type/c/type.h b/level_0/f_type/c/type.h index 4c0708338..b64012945 100644 --- a/level_0/f_type/c/type.h +++ b/level_0/f_type/c/type.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Provides datatype definitions. diff --git a/level_0/f_type_array/c/type_array.h b/level_0/f_type_array/c/type_array.h index 2dad28a70..24cc3be9e 100644 --- a/level_0/f_type_array/c/type_array.h +++ b/level_0/f_type_array/c/type_array.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Provides an extension to the Type project (f_type) that depends on f_memory (linking to the f_memory library). diff --git a/level_0/f_type_array/c/type_array/array_length.h b/level_0/f_type_array/c/type_array/array_length.h index 5de9676ef..e850bbeb3 100644 --- a/level_0/f_type_array/c/type_array/array_length.h +++ b/level_0/f_type_array/c/type_array/array_length.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Defines data to be used for/by type (array) related functionality. diff --git a/level_0/f_type_array/c/type_array/cell.h b/level_0/f_type_array/c/type_array/cell.h index be2d096e9..447ee4a1d 100644 --- a/level_0/f_type_array/c/type_array/cell.h +++ b/level_0/f_type_array/c/type_array/cell.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Defines data to be used for/by type (array) related functionality. diff --git a/level_0/f_type_array/c/type_array/common.h b/level_0/f_type_array/c/type_array/common.h index 0d6370d5d..c809fd319 100644 --- a/level_0/f_type_array/c/type_array/common.h +++ b/level_0/f_type_array/c/type_array/common.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Defines common data to be used for/by type (array) related functionality. diff --git a/level_0/f_type_array/c/type_array/fll_id.h b/level_0/f_type_array/c/type_array/fll_id.h index 699d2f169..dbde84d68 100644 --- a/level_0/f_type_array/c/type_array/fll_id.h +++ b/level_0/f_type_array/c/type_array/fll_id.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Defines data to be used for/by type (array) related functionality. diff --git a/level_0/f_type_array/c/type_array/int128.h b/level_0/f_type_array/c/type_array/int128.h index 9f50198c5..0326b7c16 100644 --- a/level_0/f_type_array/c/type_array/int128.h +++ b/level_0/f_type_array/c/type_array/int128.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Defines data to be used for/by type (array) related functionality. diff --git a/level_0/f_type_array/c/type_array/int16.h b/level_0/f_type_array/c/type_array/int16.h index d52eb8ccf..b06bfbfa7 100644 --- a/level_0/f_type_array/c/type_array/int16.h +++ b/level_0/f_type_array/c/type_array/int16.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Defines data to be used for/by type (array) related functionality. diff --git a/level_0/f_type_array/c/type_array/int32.h b/level_0/f_type_array/c/type_array/int32.h index eaa6542ec..ccc3f8d22 100644 --- a/level_0/f_type_array/c/type_array/int32.h +++ b/level_0/f_type_array/c/type_array/int32.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Defines data to be used for/by type (array) related functionality. diff --git a/level_0/f_type_array/c/type_array/int64.h b/level_0/f_type_array/c/type_array/int64.h index be024856e..c428ddeb6 100644 --- a/level_0/f_type_array/c/type_array/int64.h +++ b/level_0/f_type_array/c/type_array/int64.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Defines data to be used for/by type (array) related functionality. diff --git a/level_0/f_type_array/c/type_array/int8.h b/level_0/f_type_array/c/type_array/int8.h index 756030a42..03d21adb3 100644 --- a/level_0/f_type_array/c/type_array/int8.h +++ b/level_0/f_type_array/c/type_array/int8.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Defines data to be used for/by type (array) related functionality. diff --git a/level_0/f_type_array/c/type_array/private-array_length.h b/level_0/f_type_array/c/type_array/private-array_length.h index f6645ce9b..1efa4aa7e 100644 --- a/level_0/f_type_array/c/type_array/private-array_length.h +++ b/level_0/f_type_array/c/type_array/private-array_length.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * These are provided for internal reduction in redundant code. diff --git a/level_0/f_type_array/c/type_array/private-cell.h b/level_0/f_type_array/c/type_array/private-cell.h index 0c61d5c78..164204140 100644 --- a/level_0/f_type_array/c/type_array/private-cell.h +++ b/level_0/f_type_array/c/type_array/private-cell.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * These are provided for internal reduction in redundant code. diff --git a/level_0/f_type_array/c/type_array/private-fll_id.h b/level_0/f_type_array/c/type_array/private-fll_id.h index d9e87a55c..534725e40 100644 --- a/level_0/f_type_array/c/type_array/private-fll_id.h +++ b/level_0/f_type_array/c/type_array/private-fll_id.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * These are provided for internal reduction in redundant code. diff --git a/level_0/f_type_array/c/type_array/private-int128.h b/level_0/f_type_array/c/type_array/private-int128.h index fb58663d6..2453584ba 100644 --- a/level_0/f_type_array/c/type_array/private-int128.h +++ b/level_0/f_type_array/c/type_array/private-int128.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * These are provided for internal reduction in redundant code. diff --git a/level_0/f_type_array/c/type_array/private-int16.h b/level_0/f_type_array/c/type_array/private-int16.h index 3b30b6d3f..a286cec5a 100644 --- a/level_0/f_type_array/c/type_array/private-int16.h +++ b/level_0/f_type_array/c/type_array/private-int16.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * These are provided for internal reduction in redundant code. diff --git a/level_0/f_type_array/c/type_array/private-int32.h b/level_0/f_type_array/c/type_array/private-int32.h index a2cfc5c36..1b2b5b003 100644 --- a/level_0/f_type_array/c/type_array/private-int32.h +++ b/level_0/f_type_array/c/type_array/private-int32.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * These are provided for internal reduction in redundant code. diff --git a/level_0/f_type_array/c/type_array/private-int64.h b/level_0/f_type_array/c/type_array/private-int64.h index 02f8ad770..2f9c221f3 100644 --- a/level_0/f_type_array/c/type_array/private-int64.h +++ b/level_0/f_type_array/c/type_array/private-int64.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * These are provided for internal reduction in redundant code. diff --git a/level_0/f_type_array/c/type_array/private-int8.h b/level_0/f_type_array/c/type_array/private-int8.h index 55e5661f7..593519794 100644 --- a/level_0/f_type_array/c/type_array/private-int8.h +++ b/level_0/f_type_array/c/type_array/private-int8.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * These are provided for internal reduction in redundant code. diff --git a/level_0/f_type_array/c/type_array/private-state.h b/level_0/f_type_array/c/type_array/private-state.h index b7732fc56..4ccf2a801 100644 --- a/level_0/f_type_array/c/type_array/private-state.h +++ b/level_0/f_type_array/c/type_array/private-state.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * These are provided for internal reduction in redundant code. diff --git a/level_0/f_type_array/c/type_array/private-status.h b/level_0/f_type_array/c/type_array/private-status.h index 55d4ace37..afb09cf4b 100644 --- a/level_0/f_type_array/c/type_array/private-status.h +++ b/level_0/f_type_array/c/type_array/private-status.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * These are provided for internal reduction in redundant code. diff --git a/level_0/f_type_array/c/type_array/private-uint128.h b/level_0/f_type_array/c/type_array/private-uint128.h index d866a6277..931befa90 100644 --- a/level_0/f_type_array/c/type_array/private-uint128.h +++ b/level_0/f_type_array/c/type_array/private-uint128.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * These are provided for internal reduction in redundant code. diff --git a/level_0/f_type_array/c/type_array/private-uint16.h b/level_0/f_type_array/c/type_array/private-uint16.h index 5df42a334..87a72e7b0 100644 --- a/level_0/f_type_array/c/type_array/private-uint16.h +++ b/level_0/f_type_array/c/type_array/private-uint16.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * These are provided for internal reduction in redundant code. diff --git a/level_0/f_type_array/c/type_array/private-uint32.h b/level_0/f_type_array/c/type_array/private-uint32.h index f357bb06f..9653d1b5f 100644 --- a/level_0/f_type_array/c/type_array/private-uint32.h +++ b/level_0/f_type_array/c/type_array/private-uint32.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * These are provided for internal reduction in redundant code. diff --git a/level_0/f_type_array/c/type_array/private-uint64.h b/level_0/f_type_array/c/type_array/private-uint64.h index d3a935dcb..45a90d227 100644 --- a/level_0/f_type_array/c/type_array/private-uint64.h +++ b/level_0/f_type_array/c/type_array/private-uint64.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * These are provided for internal reduction in redundant code. diff --git a/level_0/f_type_array/c/type_array/private-uint8.h b/level_0/f_type_array/c/type_array/private-uint8.h index e2581b90b..ab33345fc 100644 --- a/level_0/f_type_array/c/type_array/private-uint8.h +++ b/level_0/f_type_array/c/type_array/private-uint8.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * These are provided for internal reduction in redundant code. diff --git a/level_0/f_type_array/c/type_array/state.h b/level_0/f_type_array/c/type_array/state.h index 02f2a1d45..af71eaef6 100644 --- a/level_0/f_type_array/c/type_array/state.h +++ b/level_0/f_type_array/c/type_array/state.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Defines data to be used for/by type (array) related functionality. diff --git a/level_0/f_type_array/c/type_array/status.h b/level_0/f_type_array/c/type_array/status.h index d13bd6ea2..58b2ec2c7 100644 --- a/level_0/f_type_array/c/type_array/status.h +++ b/level_0/f_type_array/c/type_array/status.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Defines data to be used for/by type (array) related functionality. diff --git a/level_0/f_type_array/c/type_array/uint128.h b/level_0/f_type_array/c/type_array/uint128.h index c95d6d91a..f5b954355 100644 --- a/level_0/f_type_array/c/type_array/uint128.h +++ b/level_0/f_type_array/c/type_array/uint128.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Defines data to be used for/by type (array) related functionality. diff --git a/level_0/f_type_array/c/type_array/uint16.h b/level_0/f_type_array/c/type_array/uint16.h index 4b4c520dd..b649074f3 100644 --- a/level_0/f_type_array/c/type_array/uint16.h +++ b/level_0/f_type_array/c/type_array/uint16.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Defines data to be used for/by type (array) related functionality. diff --git a/level_0/f_type_array/c/type_array/uint32.h b/level_0/f_type_array/c/type_array/uint32.h index 9016a6ac9..eb2b0d0b8 100644 --- a/level_0/f_type_array/c/type_array/uint32.h +++ b/level_0/f_type_array/c/type_array/uint32.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Defines data to be used for/by type (array) related functionality. diff --git a/level_0/f_type_array/c/type_array/uint64.h b/level_0/f_type_array/c/type_array/uint64.h index c3d2b8c93..7324974fc 100644 --- a/level_0/f_type_array/c/type_array/uint64.h +++ b/level_0/f_type_array/c/type_array/uint64.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Defines data to be used for/by type (array) related functionality. diff --git a/level_0/f_type_array/c/type_array/uint8.h b/level_0/f_type_array/c/type_array/uint8.h index fe3bcc7a7..ce4aabc46 100644 --- a/level_0/f_type_array/c/type_array/uint8.h +++ b/level_0/f_type_array/c/type_array/uint8.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Defines data to be used for/by type (array) related functionality. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-array_lengths_adjust.h b/level_0/f_type_array/tests/unit/c/test-type_array-array_lengths_adjust.h index 3e6a1b671..d2cac7de0 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-array_lengths_adjust.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-array_lengths_adjust.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-array_lengths_append.h b/level_0/f_type_array/tests/unit/c/test-type_array-array_lengths_append.h index a3926d612..258411d68 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-array_lengths_append.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-array_lengths_append.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-array_lengths_append_all.h b/level_0/f_type_array/tests/unit/c/test-type_array-array_lengths_append_all.h index b9d4e3d71..ce6f77206 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-array_lengths_append_all.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-array_lengths_append_all.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-array_lengths_decimate_by.h b/level_0/f_type_array/tests/unit/c/test-type_array-array_lengths_decimate_by.h index aff79a2fe..7d931bbb4 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-array_lengths_decimate_by.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-array_lengths_decimate_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-array_lengths_decrease_by.h b/level_0/f_type_array/tests/unit/c/test-type_array-array_lengths_decrease_by.h index d9564d407..afca7049a 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-array_lengths_decrease_by.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-array_lengths_decrease_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-array_lengths_increase.h b/level_0/f_type_array/tests/unit/c/test-type_array-array_lengths_increase.h index 4629c77eb..d2794212d 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-array_lengths_increase.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-array_lengths_increase.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-array_lengths_increase_by.h b/level_0/f_type_array/tests/unit/c/test-type_array-array_lengths_increase_by.h index 49176695a..cfd7e7108 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-array_lengths_increase_by.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-array_lengths_increase_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-array_lengths_resize.h b/level_0/f_type_array/tests/unit/c/test-type_array-array_lengths_resize.h index 7c3fe4778..ac3c8fd64 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-array_lengths_resize.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-array_lengths_resize.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-array_lengthss_adjust.h b/level_0/f_type_array/tests/unit/c/test-type_array-array_lengthss_adjust.h index 2910f1ca4..5eb61f080 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-array_lengthss_adjust.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-array_lengthss_adjust.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-array_lengthss_append.h b/level_0/f_type_array/tests/unit/c/test-type_array-array_lengthss_append.h index 98ceef58a..5719d8bf0 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-array_lengthss_append.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-array_lengthss_append.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-array_lengthss_append_all.h b/level_0/f_type_array/tests/unit/c/test-type_array-array_lengthss_append_all.h index 463a7b426..250bdb9bf 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-array_lengthss_append_all.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-array_lengthss_append_all.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-array_lengthss_decimate_by.h b/level_0/f_type_array/tests/unit/c/test-type_array-array_lengthss_decimate_by.h index 300b4564d..df3ddd707 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-array_lengthss_decimate_by.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-array_lengthss_decimate_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-array_lengthss_decrease_by.h b/level_0/f_type_array/tests/unit/c/test-type_array-array_lengthss_decrease_by.h index 58b87ebcc..f6378bcae 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-array_lengthss_decrease_by.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-array_lengthss_decrease_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-array_lengthss_increase.h b/level_0/f_type_array/tests/unit/c/test-type_array-array_lengthss_increase.h index d4b11c11e..35fbfd2af 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-array_lengthss_increase.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-array_lengthss_increase.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-array_lengthss_increase_by.h b/level_0/f_type_array/tests/unit/c/test-type_array-array_lengthss_increase_by.h index 61f91dba1..e0e8e9d99 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-array_lengthss_increase_by.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-array_lengthss_increase_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-array_lengthss_resize.h b/level_0/f_type_array/tests/unit/c/test-type_array-array_lengthss_resize.h index 457b16eb2..5d6a6d5ca 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-array_lengthss_resize.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-array_lengthss_resize.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-cells_adjust.h b/level_0/f_type_array/tests/unit/c/test-type_array-cells_adjust.h index 8a5a1065e..5e80f9992 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-cells_adjust.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-cells_adjust.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-cells_append.h b/level_0/f_type_array/tests/unit/c/test-type_array-cells_append.h index 79042b6f5..1dd321405 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-cells_append.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-cells_append.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-cells_append_all.h b/level_0/f_type_array/tests/unit/c/test-type_array-cells_append_all.h index 14ef7e4f4..69186dbba 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-cells_append_all.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-cells_append_all.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-cells_decimate_by.h b/level_0/f_type_array/tests/unit/c/test-type_array-cells_decimate_by.h index 4b0aeea4f..d4e5ed158 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-cells_decimate_by.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-cells_decimate_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-cells_decrease_by.h b/level_0/f_type_array/tests/unit/c/test-type_array-cells_decrease_by.h index 6fc1997d9..44e06dd46 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-cells_decrease_by.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-cells_decrease_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-cells_increase.h b/level_0/f_type_array/tests/unit/c/test-type_array-cells_increase.h index 2d5522c46..d766f9920 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-cells_increase.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-cells_increase.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-cells_increase_by.h b/level_0/f_type_array/tests/unit/c/test-type_array-cells_increase_by.h index 0c13b96f2..9285f493c 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-cells_increase_by.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-cells_increase_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-cells_resize.h b/level_0/f_type_array/tests/unit/c/test-type_array-cells_resize.h index 90d65a7a7..79d54964b 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-cells_resize.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-cells_resize.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-cellss_adjust.h b/level_0/f_type_array/tests/unit/c/test-type_array-cellss_adjust.h index c48abffc4..14c007d78 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-cellss_adjust.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-cellss_adjust.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-cellss_append.h b/level_0/f_type_array/tests/unit/c/test-type_array-cellss_append.h index 811c1913e..ceaceefc5 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-cellss_append.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-cellss_append.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-cellss_append_all.h b/level_0/f_type_array/tests/unit/c/test-type_array-cellss_append_all.h index 0677d4fb2..90916d055 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-cellss_append_all.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-cellss_append_all.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-cellss_decimate_by.h b/level_0/f_type_array/tests/unit/c/test-type_array-cellss_decimate_by.h index 5b652e571..24ede5600 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-cellss_decimate_by.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-cellss_decimate_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-cellss_decrease_by.h b/level_0/f_type_array/tests/unit/c/test-type_array-cellss_decrease_by.h index 75563d2c4..e80923240 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-cellss_decrease_by.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-cellss_decrease_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-cellss_increase.h b/level_0/f_type_array/tests/unit/c/test-type_array-cellss_increase.h index 2f5e66967..e74b4080d 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-cellss_increase.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-cellss_increase.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-cellss_increase_by.h b/level_0/f_type_array/tests/unit/c/test-type_array-cellss_increase_by.h index 6ff061eba..5845526e9 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-cellss_increase_by.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-cellss_increase_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-cellss_resize.h b/level_0/f_type_array/tests/unit/c/test-type_array-cellss_resize.h index ff6672873..d84e7d4e0 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-cellss_resize.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-cellss_resize.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-fll_ids_adjust.h b/level_0/f_type_array/tests/unit/c/test-type_array-fll_ids_adjust.h index fec565413..3f3002e7e 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-fll_ids_adjust.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-fll_ids_adjust.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-fll_ids_append.h b/level_0/f_type_array/tests/unit/c/test-type_array-fll_ids_append.h index 46a4f8fb5..075a4a7e8 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-fll_ids_append.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-fll_ids_append.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-fll_ids_append_all.h b/level_0/f_type_array/tests/unit/c/test-type_array-fll_ids_append_all.h index 511a422ba..382886697 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-fll_ids_append_all.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-fll_ids_append_all.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-fll_ids_decimate_by.h b/level_0/f_type_array/tests/unit/c/test-type_array-fll_ids_decimate_by.h index f1980ce87..9bcfde28d 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-fll_ids_decimate_by.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-fll_ids_decimate_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-fll_ids_decrease_by.h b/level_0/f_type_array/tests/unit/c/test-type_array-fll_ids_decrease_by.h index 734e4f37a..f7b8273e4 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-fll_ids_decrease_by.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-fll_ids_decrease_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-fll_ids_increase.h b/level_0/f_type_array/tests/unit/c/test-type_array-fll_ids_increase.h index c31bbf636..2ba7d7a59 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-fll_ids_increase.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-fll_ids_increase.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-fll_ids_increase_by.h b/level_0/f_type_array/tests/unit/c/test-type_array-fll_ids_increase_by.h index 0a7ab9358..a55e49a56 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-fll_ids_increase_by.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-fll_ids_increase_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-fll_ids_resize.h b/level_0/f_type_array/tests/unit/c/test-type_array-fll_ids_resize.h index 091184f03..f93dc6c74 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-fll_ids_resize.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-fll_ids_resize.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-fll_idss_adjust.h b/level_0/f_type_array/tests/unit/c/test-type_array-fll_idss_adjust.h index 602d8faa8..280bc7cc2 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-fll_idss_adjust.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-fll_idss_adjust.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-fll_idss_append.h b/level_0/f_type_array/tests/unit/c/test-type_array-fll_idss_append.h index cfc0ab380..353df1ecc 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-fll_idss_append.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-fll_idss_append.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-fll_idss_append_all.h b/level_0/f_type_array/tests/unit/c/test-type_array-fll_idss_append_all.h index da78b4790..53ddc2d8d 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-fll_idss_append_all.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-fll_idss_append_all.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-fll_idss_decimate_by.h b/level_0/f_type_array/tests/unit/c/test-type_array-fll_idss_decimate_by.h index aa51b016e..a3238427e 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-fll_idss_decimate_by.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-fll_idss_decimate_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-fll_idss_decrease_by.h b/level_0/f_type_array/tests/unit/c/test-type_array-fll_idss_decrease_by.h index 8b60e1a3d..d6d779a47 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-fll_idss_decrease_by.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-fll_idss_decrease_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-fll_idss_increase.h b/level_0/f_type_array/tests/unit/c/test-type_array-fll_idss_increase.h index 180ca3673..1b8ab3cb4 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-fll_idss_increase.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-fll_idss_increase.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-fll_idss_increase_by.h b/level_0/f_type_array/tests/unit/c/test-type_array-fll_idss_increase_by.h index 480169c6e..85e9632ca 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-fll_idss_increase_by.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-fll_idss_increase_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-fll_idss_resize.h b/level_0/f_type_array/tests/unit/c/test-type_array-fll_idss_resize.h index 2c9bf0e44..a22ceb866 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-fll_idss_resize.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-fll_idss_resize.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-int128s_adjust.h b/level_0/f_type_array/tests/unit/c/test-type_array-int128s_adjust.h index 9ea2cd45b..a281b33f3 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-int128s_adjust.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-int128s_adjust.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-int128s_append.h b/level_0/f_type_array/tests/unit/c/test-type_array-int128s_append.h index 1f4eab6cc..1cd336189 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-int128s_append.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-int128s_append.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-int128s_append_all.h b/level_0/f_type_array/tests/unit/c/test-type_array-int128s_append_all.h index a83e4e878..8aba1f3e0 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-int128s_append_all.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-int128s_append_all.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-int128s_decimate_by.h b/level_0/f_type_array/tests/unit/c/test-type_array-int128s_decimate_by.h index 52f68b08a..7b59d17eb 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-int128s_decimate_by.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-int128s_decimate_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-int128s_decrease_by.h b/level_0/f_type_array/tests/unit/c/test-type_array-int128s_decrease_by.h index f3c6dac92..ddd493bdd 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-int128s_decrease_by.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-int128s_decrease_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-int128s_increase.h b/level_0/f_type_array/tests/unit/c/test-type_array-int128s_increase.h index 134c5c0da..107c5374c 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-int128s_increase.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-int128s_increase.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-int128s_increase_by.h b/level_0/f_type_array/tests/unit/c/test-type_array-int128s_increase_by.h index 24f11add1..bf702c436 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-int128s_increase_by.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-int128s_increase_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-int128s_resize.h b/level_0/f_type_array/tests/unit/c/test-type_array-int128s_resize.h index 30b3765aa..a04c18e2e 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-int128s_resize.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-int128s_resize.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-int128ss_adjust.h b/level_0/f_type_array/tests/unit/c/test-type_array-int128ss_adjust.h index 4c10d29b2..24154749f 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-int128ss_adjust.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-int128ss_adjust.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-int128ss_append.h b/level_0/f_type_array/tests/unit/c/test-type_array-int128ss_append.h index f433fc990..f9e596002 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-int128ss_append.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-int128ss_append.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-int128ss_append_all.h b/level_0/f_type_array/tests/unit/c/test-type_array-int128ss_append_all.h index 58a8580b1..473f86bd5 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-int128ss_append_all.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-int128ss_append_all.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-int128ss_decimate_by.h b/level_0/f_type_array/tests/unit/c/test-type_array-int128ss_decimate_by.h index 0f0f5cb68..c3dd04104 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-int128ss_decimate_by.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-int128ss_decimate_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-int128ss_decrease_by.h b/level_0/f_type_array/tests/unit/c/test-type_array-int128ss_decrease_by.h index 44e6824ed..d572c6ad7 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-int128ss_decrease_by.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-int128ss_decrease_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-int128ss_increase.h b/level_0/f_type_array/tests/unit/c/test-type_array-int128ss_increase.h index 1e7d240be..c3a33334b 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-int128ss_increase.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-int128ss_increase.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-int128ss_increase_by.h b/level_0/f_type_array/tests/unit/c/test-type_array-int128ss_increase_by.h index 3314bdef8..e4129e149 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-int128ss_increase_by.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-int128ss_increase_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-int128ss_resize.h b/level_0/f_type_array/tests/unit/c/test-type_array-int128ss_resize.h index 499b99ff9..f275d5a5d 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-int128ss_resize.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-int128ss_resize.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-int16s_adjust.h b/level_0/f_type_array/tests/unit/c/test-type_array-int16s_adjust.h index 620ee1e43..d0d8b14ef 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-int16s_adjust.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-int16s_adjust.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-int16s_append.h b/level_0/f_type_array/tests/unit/c/test-type_array-int16s_append.h index 930eb7bf1..f472be0fc 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-int16s_append.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-int16s_append.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-int16s_append_all.h b/level_0/f_type_array/tests/unit/c/test-type_array-int16s_append_all.h index f18cd9779..ac188271e 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-int16s_append_all.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-int16s_append_all.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-int16s_decimate_by.h b/level_0/f_type_array/tests/unit/c/test-type_array-int16s_decimate_by.h index 397d04637..fd8844163 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-int16s_decimate_by.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-int16s_decimate_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-int16s_decrease_by.h b/level_0/f_type_array/tests/unit/c/test-type_array-int16s_decrease_by.h index 6e6389573..63db78229 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-int16s_decrease_by.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-int16s_decrease_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-int16s_increase.h b/level_0/f_type_array/tests/unit/c/test-type_array-int16s_increase.h index ba9958944..e60a74dc6 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-int16s_increase.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-int16s_increase.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-int16s_increase_by.h b/level_0/f_type_array/tests/unit/c/test-type_array-int16s_increase_by.h index 49af511fd..fc4c5567a 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-int16s_increase_by.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-int16s_increase_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-int16s_resize.h b/level_0/f_type_array/tests/unit/c/test-type_array-int16s_resize.h index 20f95f1d8..324a8d0f1 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-int16s_resize.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-int16s_resize.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-int16ss_adjust.h b/level_0/f_type_array/tests/unit/c/test-type_array-int16ss_adjust.h index c3615f82a..b239ec389 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-int16ss_adjust.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-int16ss_adjust.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-int16ss_append.h b/level_0/f_type_array/tests/unit/c/test-type_array-int16ss_append.h index 1e0fe1157..987ffc8cd 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-int16ss_append.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-int16ss_append.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-int16ss_append_all.h b/level_0/f_type_array/tests/unit/c/test-type_array-int16ss_append_all.h index 87ce31184..29601683b 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-int16ss_append_all.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-int16ss_append_all.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-int16ss_decimate_by.h b/level_0/f_type_array/tests/unit/c/test-type_array-int16ss_decimate_by.h index bb4c289fd..e0f323ccf 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-int16ss_decimate_by.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-int16ss_decimate_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-int16ss_decrease_by.h b/level_0/f_type_array/tests/unit/c/test-type_array-int16ss_decrease_by.h index 7ed4bd200..6a8945a82 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-int16ss_decrease_by.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-int16ss_decrease_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-int16ss_increase.h b/level_0/f_type_array/tests/unit/c/test-type_array-int16ss_increase.h index 94357b5d2..23e6b85c8 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-int16ss_increase.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-int16ss_increase.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-int16ss_increase_by.h b/level_0/f_type_array/tests/unit/c/test-type_array-int16ss_increase_by.h index 8e71cc7cf..5ed54ef3e 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-int16ss_increase_by.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-int16ss_increase_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-int16ss_resize.h b/level_0/f_type_array/tests/unit/c/test-type_array-int16ss_resize.h index 45ebea32f..2521942ad 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-int16ss_resize.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-int16ss_resize.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-int32s_adjust.h b/level_0/f_type_array/tests/unit/c/test-type_array-int32s_adjust.h index b09b1dec1..8351ffecd 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-int32s_adjust.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-int32s_adjust.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-int32s_append.h b/level_0/f_type_array/tests/unit/c/test-type_array-int32s_append.h index 546fe668b..6505b2832 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-int32s_append.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-int32s_append.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-int32s_append_all.h b/level_0/f_type_array/tests/unit/c/test-type_array-int32s_append_all.h index 9bff3d022..b48a4500f 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-int32s_append_all.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-int32s_append_all.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-int32s_decimate_by.h b/level_0/f_type_array/tests/unit/c/test-type_array-int32s_decimate_by.h index e9f376be4..f0989fc1e 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-int32s_decimate_by.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-int32s_decimate_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-int32s_decrease_by.h b/level_0/f_type_array/tests/unit/c/test-type_array-int32s_decrease_by.h index bf3b01fe3..d09729f77 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-int32s_decrease_by.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-int32s_decrease_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-int32s_increase.h b/level_0/f_type_array/tests/unit/c/test-type_array-int32s_increase.h index 617a6201b..9f3312ec7 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-int32s_increase.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-int32s_increase.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-int32s_increase_by.h b/level_0/f_type_array/tests/unit/c/test-type_array-int32s_increase_by.h index 6293cc327..3469ed8ce 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-int32s_increase_by.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-int32s_increase_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-int32s_resize.h b/level_0/f_type_array/tests/unit/c/test-type_array-int32s_resize.h index a763167df..153e7dd7c 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-int32s_resize.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-int32s_resize.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-int32ss_adjust.h b/level_0/f_type_array/tests/unit/c/test-type_array-int32ss_adjust.h index 2f7276662..b888f9a38 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-int32ss_adjust.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-int32ss_adjust.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-int32ss_append.h b/level_0/f_type_array/tests/unit/c/test-type_array-int32ss_append.h index 4fae6936d..df0537874 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-int32ss_append.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-int32ss_append.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-int32ss_append_all.h b/level_0/f_type_array/tests/unit/c/test-type_array-int32ss_append_all.h index a5b0ceba4..18f81e3fa 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-int32ss_append_all.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-int32ss_append_all.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-int32ss_decimate_by.h b/level_0/f_type_array/tests/unit/c/test-type_array-int32ss_decimate_by.h index e864c5d94..65fa0eba2 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-int32ss_decimate_by.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-int32ss_decimate_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-int32ss_decrease_by.h b/level_0/f_type_array/tests/unit/c/test-type_array-int32ss_decrease_by.h index 94c0e4b15..7ec4f502a 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-int32ss_decrease_by.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-int32ss_decrease_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-int32ss_increase.h b/level_0/f_type_array/tests/unit/c/test-type_array-int32ss_increase.h index 510d659d0..edd5c96a9 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-int32ss_increase.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-int32ss_increase.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-int32ss_increase_by.h b/level_0/f_type_array/tests/unit/c/test-type_array-int32ss_increase_by.h index 74da211bd..bdfb7261c 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-int32ss_increase_by.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-int32ss_increase_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-int32ss_resize.h b/level_0/f_type_array/tests/unit/c/test-type_array-int32ss_resize.h index d7ea61b1f..1ba577e68 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-int32ss_resize.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-int32ss_resize.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-int64s_adjust.h b/level_0/f_type_array/tests/unit/c/test-type_array-int64s_adjust.h index 26dfe1fd5..c80001651 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-int64s_adjust.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-int64s_adjust.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-int64s_append.h b/level_0/f_type_array/tests/unit/c/test-type_array-int64s_append.h index 42aeea800..c817cd56f 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-int64s_append.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-int64s_append.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-int64s_append_all.h b/level_0/f_type_array/tests/unit/c/test-type_array-int64s_append_all.h index 60174a216..06b617054 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-int64s_append_all.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-int64s_append_all.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-int64s_decimate_by.h b/level_0/f_type_array/tests/unit/c/test-type_array-int64s_decimate_by.h index d7a8d21f5..265bcb334 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-int64s_decimate_by.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-int64s_decimate_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-int64s_decrease_by.h b/level_0/f_type_array/tests/unit/c/test-type_array-int64s_decrease_by.h index 600aa2bda..33d4bdd39 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-int64s_decrease_by.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-int64s_decrease_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-int64s_increase.h b/level_0/f_type_array/tests/unit/c/test-type_array-int64s_increase.h index c88b952b9..ae3ff9588 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-int64s_increase.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-int64s_increase.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-int64s_increase_by.h b/level_0/f_type_array/tests/unit/c/test-type_array-int64s_increase_by.h index 5c69fe0c2..785402eac 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-int64s_increase_by.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-int64s_increase_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-int64s_resize.h b/level_0/f_type_array/tests/unit/c/test-type_array-int64s_resize.h index 8f8c0602c..1e05819b4 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-int64s_resize.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-int64s_resize.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-int64ss_adjust.h b/level_0/f_type_array/tests/unit/c/test-type_array-int64ss_adjust.h index 5c1bc9a33..7344c98db 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-int64ss_adjust.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-int64ss_adjust.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-int64ss_append.h b/level_0/f_type_array/tests/unit/c/test-type_array-int64ss_append.h index 9de84a4b2..f8805388e 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-int64ss_append.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-int64ss_append.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-int64ss_append_all.h b/level_0/f_type_array/tests/unit/c/test-type_array-int64ss_append_all.h index 323d33a99..af12357eb 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-int64ss_append_all.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-int64ss_append_all.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-int64ss_decimate_by.h b/level_0/f_type_array/tests/unit/c/test-type_array-int64ss_decimate_by.h index a9a004427..b78ff3620 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-int64ss_decimate_by.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-int64ss_decimate_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-int64ss_decrease_by.h b/level_0/f_type_array/tests/unit/c/test-type_array-int64ss_decrease_by.h index bb9f2dbde..ad49394d5 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-int64ss_decrease_by.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-int64ss_decrease_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-int64ss_increase.h b/level_0/f_type_array/tests/unit/c/test-type_array-int64ss_increase.h index 488f10fd0..b11a16fe5 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-int64ss_increase.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-int64ss_increase.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-int64ss_increase_by.h b/level_0/f_type_array/tests/unit/c/test-type_array-int64ss_increase_by.h index 679c97cc1..172f3d4df 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-int64ss_increase_by.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-int64ss_increase_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-int64ss_resize.h b/level_0/f_type_array/tests/unit/c/test-type_array-int64ss_resize.h index 5a9dfe49f..ffc21ea3d 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-int64ss_resize.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-int64ss_resize.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-int8s_adjust.h b/level_0/f_type_array/tests/unit/c/test-type_array-int8s_adjust.h index bd7570c5a..ce9389cb5 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-int8s_adjust.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-int8s_adjust.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-int8s_append.h b/level_0/f_type_array/tests/unit/c/test-type_array-int8s_append.h index b4c6dd671..d54964d1d 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-int8s_append.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-int8s_append.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-int8s_append_all.h b/level_0/f_type_array/tests/unit/c/test-type_array-int8s_append_all.h index 929a0e8f0..0d2d894df 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-int8s_append_all.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-int8s_append_all.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-int8s_decimate_by.h b/level_0/f_type_array/tests/unit/c/test-type_array-int8s_decimate_by.h index 567df8694..2432f7528 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-int8s_decimate_by.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-int8s_decimate_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-int8s_decrease_by.h b/level_0/f_type_array/tests/unit/c/test-type_array-int8s_decrease_by.h index 6ca699254..9463ded0a 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-int8s_decrease_by.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-int8s_decrease_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-int8s_increase.h b/level_0/f_type_array/tests/unit/c/test-type_array-int8s_increase.h index ad2829015..451422166 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-int8s_increase.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-int8s_increase.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-int8s_increase_by.h b/level_0/f_type_array/tests/unit/c/test-type_array-int8s_increase_by.h index 59a8b481f..b524456bc 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-int8s_increase_by.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-int8s_increase_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-int8s_resize.h b/level_0/f_type_array/tests/unit/c/test-type_array-int8s_resize.h index 9dced7481..56434762b 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-int8s_resize.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-int8s_resize.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-int8ss_adjust.h b/level_0/f_type_array/tests/unit/c/test-type_array-int8ss_adjust.h index b36d3b5db..3c1def35d 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-int8ss_adjust.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-int8ss_adjust.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-int8ss_append.h b/level_0/f_type_array/tests/unit/c/test-type_array-int8ss_append.h index 4b26a6e5e..2809e9162 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-int8ss_append.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-int8ss_append.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-int8ss_append_all.h b/level_0/f_type_array/tests/unit/c/test-type_array-int8ss_append_all.h index 167f96230..ff1cd1486 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-int8ss_append_all.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-int8ss_append_all.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-int8ss_decimate_by.h b/level_0/f_type_array/tests/unit/c/test-type_array-int8ss_decimate_by.h index 6f98b208c..a90f82741 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-int8ss_decimate_by.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-int8ss_decimate_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-int8ss_decrease_by.h b/level_0/f_type_array/tests/unit/c/test-type_array-int8ss_decrease_by.h index e0cfe290e..26059142a 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-int8ss_decrease_by.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-int8ss_decrease_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-int8ss_increase.h b/level_0/f_type_array/tests/unit/c/test-type_array-int8ss_increase.h index 423c619b7..93122f04f 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-int8ss_increase.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-int8ss_increase.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-int8ss_increase_by.h b/level_0/f_type_array/tests/unit/c/test-type_array-int8ss_increase_by.h index 81c531a14..af7520a32 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-int8ss_increase_by.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-int8ss_increase_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-int8ss_resize.h b/level_0/f_type_array/tests/unit/c/test-type_array-int8ss_resize.h index 2cfd8ec1f..5cca2d632 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-int8ss_resize.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-int8ss_resize.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-states_adjust.h b/level_0/f_type_array/tests/unit/c/test-type_array-states_adjust.h index 7f4fd57d6..0c99b071c 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-states_adjust.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-states_adjust.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-states_append.h b/level_0/f_type_array/tests/unit/c/test-type_array-states_append.h index d9dc3098e..400236657 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-states_append.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-states_append.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-states_append_all.h b/level_0/f_type_array/tests/unit/c/test-type_array-states_append_all.h index 60c81c050..991f0a87a 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-states_append_all.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-states_append_all.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-states_decimate_by.h b/level_0/f_type_array/tests/unit/c/test-type_array-states_decimate_by.h index d7e96eb6e..7fb14ae3f 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-states_decimate_by.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-states_decimate_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-states_decrease_by.h b/level_0/f_type_array/tests/unit/c/test-type_array-states_decrease_by.h index 1a5aa4da9..abaf2a7a2 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-states_decrease_by.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-states_decrease_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-states_increase.h b/level_0/f_type_array/tests/unit/c/test-type_array-states_increase.h index 7ae30dc34..45ac42c68 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-states_increase.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-states_increase.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-states_increase_by.h b/level_0/f_type_array/tests/unit/c/test-type_array-states_increase_by.h index f33b7aed8..7b199868c 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-states_increase_by.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-states_increase_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-states_resize.h b/level_0/f_type_array/tests/unit/c/test-type_array-states_resize.h index 90dbb7ff9..8bcd9d863 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-states_resize.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-states_resize.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-statess_adjust.h b/level_0/f_type_array/tests/unit/c/test-type_array-statess_adjust.h index 88ac7cc23..3b2db6981 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-statess_adjust.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-statess_adjust.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-statess_append.h b/level_0/f_type_array/tests/unit/c/test-type_array-statess_append.h index e2c207244..7cad34a91 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-statess_append.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-statess_append.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-statess_append_all.h b/level_0/f_type_array/tests/unit/c/test-type_array-statess_append_all.h index 8ac093639..20e8dab92 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-statess_append_all.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-statess_append_all.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-statess_decimate_by.h b/level_0/f_type_array/tests/unit/c/test-type_array-statess_decimate_by.h index b2e577d10..a709de768 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-statess_decimate_by.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-statess_decimate_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-statess_decrease_by.h b/level_0/f_type_array/tests/unit/c/test-type_array-statess_decrease_by.h index bff529819..21c4b068a 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-statess_decrease_by.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-statess_decrease_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-statess_increase.h b/level_0/f_type_array/tests/unit/c/test-type_array-statess_increase.h index bcd6c01ac..d56b23924 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-statess_increase.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-statess_increase.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-statess_increase_by.h b/level_0/f_type_array/tests/unit/c/test-type_array-statess_increase_by.h index 9c9007a6b..2546a1b77 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-statess_increase_by.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-statess_increase_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-statess_resize.h b/level_0/f_type_array/tests/unit/c/test-type_array-statess_resize.h index 9b01ab2c6..8d5c52323 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-statess_resize.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-statess_resize.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-statuss_adjust.h b/level_0/f_type_array/tests/unit/c/test-type_array-statuss_adjust.h index 1f071446c..7dcfc020d 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-statuss_adjust.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-statuss_adjust.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-statuss_append.h b/level_0/f_type_array/tests/unit/c/test-type_array-statuss_append.h index fc3cbcd7a..7bb9bb7d6 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-statuss_append.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-statuss_append.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-statuss_append_all.h b/level_0/f_type_array/tests/unit/c/test-type_array-statuss_append_all.h index 5eae9a82e..293b10cc9 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-statuss_append_all.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-statuss_append_all.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-statuss_decimate_by.h b/level_0/f_type_array/tests/unit/c/test-type_array-statuss_decimate_by.h index edfc4ad4a..af763fdd3 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-statuss_decimate_by.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-statuss_decimate_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-statuss_decrease_by.h b/level_0/f_type_array/tests/unit/c/test-type_array-statuss_decrease_by.h index c24318093..8694432b6 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-statuss_decrease_by.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-statuss_decrease_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-statuss_increase.h b/level_0/f_type_array/tests/unit/c/test-type_array-statuss_increase.h index e43297b18..d1057e410 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-statuss_increase.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-statuss_increase.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-statuss_increase_by.h b/level_0/f_type_array/tests/unit/c/test-type_array-statuss_increase_by.h index 4f4bdf570..80f27e6b5 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-statuss_increase_by.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-statuss_increase_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-statuss_resize.h b/level_0/f_type_array/tests/unit/c/test-type_array-statuss_resize.h index 9f57f5b43..e79e71da9 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-statuss_resize.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-statuss_resize.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-statusss_adjust.h b/level_0/f_type_array/tests/unit/c/test-type_array-statusss_adjust.h index da51efbd2..b0d96f610 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-statusss_adjust.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-statusss_adjust.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-statusss_append.h b/level_0/f_type_array/tests/unit/c/test-type_array-statusss_append.h index 7118beb34..7ec5764ac 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-statusss_append.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-statusss_append.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-statusss_append_all.h b/level_0/f_type_array/tests/unit/c/test-type_array-statusss_append_all.h index cd92ea9a8..e4a1fcd77 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-statusss_append_all.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-statusss_append_all.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-statusss_decimate_by.h b/level_0/f_type_array/tests/unit/c/test-type_array-statusss_decimate_by.h index 0f135d8c5..4e1f0e484 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-statusss_decimate_by.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-statusss_decimate_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-statusss_decrease_by.h b/level_0/f_type_array/tests/unit/c/test-type_array-statusss_decrease_by.h index d2123368a..8604cbdf8 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-statusss_decrease_by.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-statusss_decrease_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-statusss_increase.h b/level_0/f_type_array/tests/unit/c/test-type_array-statusss_increase.h index 5bb262d31..e559ab353 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-statusss_increase.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-statusss_increase.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-statusss_increase_by.h b/level_0/f_type_array/tests/unit/c/test-type_array-statusss_increase_by.h index fdcaf69f9..eb3d0766e 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-statusss_increase_by.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-statusss_increase_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-statusss_resize.h b/level_0/f_type_array/tests/unit/c/test-type_array-statusss_resize.h index af443a543..6073a9be6 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-statusss_resize.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-statusss_resize.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-uint128s_adjust.h b/level_0/f_type_array/tests/unit/c/test-type_array-uint128s_adjust.h index c70bd61ac..7971d5b87 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-uint128s_adjust.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-uint128s_adjust.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-uint128s_append.h b/level_0/f_type_array/tests/unit/c/test-type_array-uint128s_append.h index acc98c47a..35114c427 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-uint128s_append.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-uint128s_append.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-uint128s_append_all.h b/level_0/f_type_array/tests/unit/c/test-type_array-uint128s_append_all.h index a42eba580..5cb702bf5 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-uint128s_append_all.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-uint128s_append_all.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-uint128s_decimate_by.h b/level_0/f_type_array/tests/unit/c/test-type_array-uint128s_decimate_by.h index 1d033d576..2ceb38722 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-uint128s_decimate_by.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-uint128s_decimate_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-uint128s_decrease_by.h b/level_0/f_type_array/tests/unit/c/test-type_array-uint128s_decrease_by.h index 8635f4749..a66408f10 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-uint128s_decrease_by.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-uint128s_decrease_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-uint128s_increase.h b/level_0/f_type_array/tests/unit/c/test-type_array-uint128s_increase.h index 4b059aa99..ea29039aa 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-uint128s_increase.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-uint128s_increase.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-uint128s_increase_by.h b/level_0/f_type_array/tests/unit/c/test-type_array-uint128s_increase_by.h index dc11feee3..7d8b01d53 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-uint128s_increase_by.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-uint128s_increase_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-uint128s_resize.h b/level_0/f_type_array/tests/unit/c/test-type_array-uint128s_resize.h index cc3fd33b2..0fb63a511 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-uint128s_resize.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-uint128s_resize.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-uint128ss_adjust.h b/level_0/f_type_array/tests/unit/c/test-type_array-uint128ss_adjust.h index 2c751f658..3f2865b1e 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-uint128ss_adjust.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-uint128ss_adjust.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-uint128ss_append.h b/level_0/f_type_array/tests/unit/c/test-type_array-uint128ss_append.h index 28b201b29..0a2d806bd 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-uint128ss_append.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-uint128ss_append.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-uint128ss_append_all.h b/level_0/f_type_array/tests/unit/c/test-type_array-uint128ss_append_all.h index 5d2ea0919..9fdd35805 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-uint128ss_append_all.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-uint128ss_append_all.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-uint128ss_decimate_by.h b/level_0/f_type_array/tests/unit/c/test-type_array-uint128ss_decimate_by.h index 29e34eba7..bfc51614c 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-uint128ss_decimate_by.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-uint128ss_decimate_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-uint128ss_decrease_by.h b/level_0/f_type_array/tests/unit/c/test-type_array-uint128ss_decrease_by.h index 0cbd33584..fbad03d4c 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-uint128ss_decrease_by.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-uint128ss_decrease_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-uint128ss_increase.h b/level_0/f_type_array/tests/unit/c/test-type_array-uint128ss_increase.h index 646f5abdc..2e2e59915 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-uint128ss_increase.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-uint128ss_increase.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-uint128ss_increase_by.h b/level_0/f_type_array/tests/unit/c/test-type_array-uint128ss_increase_by.h index d19ebaf41..5b6651fa3 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-uint128ss_increase_by.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-uint128ss_increase_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-uint128ss_resize.h b/level_0/f_type_array/tests/unit/c/test-type_array-uint128ss_resize.h index ed92315d4..c37f7c9f7 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-uint128ss_resize.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-uint128ss_resize.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-uint16s_adjust.h b/level_0/f_type_array/tests/unit/c/test-type_array-uint16s_adjust.h index 49b176089..7170bbb42 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-uint16s_adjust.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-uint16s_adjust.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-uint16s_append.h b/level_0/f_type_array/tests/unit/c/test-type_array-uint16s_append.h index ae08cfded..9b877420d 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-uint16s_append.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-uint16s_append.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-uint16s_append_all.h b/level_0/f_type_array/tests/unit/c/test-type_array-uint16s_append_all.h index 92d75bb17..a80554ef7 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-uint16s_append_all.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-uint16s_append_all.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-uint16s_decimate_by.h b/level_0/f_type_array/tests/unit/c/test-type_array-uint16s_decimate_by.h index 1a3a5fe35..ec5e40465 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-uint16s_decimate_by.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-uint16s_decimate_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-uint16s_decrease_by.h b/level_0/f_type_array/tests/unit/c/test-type_array-uint16s_decrease_by.h index 85950e1e7..9c6dc0c11 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-uint16s_decrease_by.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-uint16s_decrease_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-uint16s_increase.h b/level_0/f_type_array/tests/unit/c/test-type_array-uint16s_increase.h index ddff5ef98..abee5b3fa 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-uint16s_increase.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-uint16s_increase.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-uint16s_increase_by.h b/level_0/f_type_array/tests/unit/c/test-type_array-uint16s_increase_by.h index 0f3f386fb..9a532e124 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-uint16s_increase_by.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-uint16s_increase_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-uint16s_resize.h b/level_0/f_type_array/tests/unit/c/test-type_array-uint16s_resize.h index 0c0839d5a..1f99cbdbc 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-uint16s_resize.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-uint16s_resize.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-uint16ss_adjust.h b/level_0/f_type_array/tests/unit/c/test-type_array-uint16ss_adjust.h index c160910b3..edd992937 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-uint16ss_adjust.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-uint16ss_adjust.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-uint16ss_append.h b/level_0/f_type_array/tests/unit/c/test-type_array-uint16ss_append.h index 0bbcc6679..05aeb7c6c 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-uint16ss_append.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-uint16ss_append.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-uint16ss_append_all.h b/level_0/f_type_array/tests/unit/c/test-type_array-uint16ss_append_all.h index 571299834..73e526113 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-uint16ss_append_all.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-uint16ss_append_all.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-uint16ss_decimate_by.h b/level_0/f_type_array/tests/unit/c/test-type_array-uint16ss_decimate_by.h index 8583a575f..91852c8bd 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-uint16ss_decimate_by.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-uint16ss_decimate_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-uint16ss_decrease_by.h b/level_0/f_type_array/tests/unit/c/test-type_array-uint16ss_decrease_by.h index 85d4080f0..f1a9d912b 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-uint16ss_decrease_by.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-uint16ss_decrease_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-uint16ss_increase.h b/level_0/f_type_array/tests/unit/c/test-type_array-uint16ss_increase.h index ee413b1dc..859b13832 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-uint16ss_increase.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-uint16ss_increase.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-uint16ss_increase_by.h b/level_0/f_type_array/tests/unit/c/test-type_array-uint16ss_increase_by.h index e58f07db4..f2295b7fb 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-uint16ss_increase_by.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-uint16ss_increase_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-uint16ss_resize.h b/level_0/f_type_array/tests/unit/c/test-type_array-uint16ss_resize.h index b6c8e0b32..c15254697 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-uint16ss_resize.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-uint16ss_resize.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-uint32s_adjust.h b/level_0/f_type_array/tests/unit/c/test-type_array-uint32s_adjust.h index 568bde831..f547b955c 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-uint32s_adjust.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-uint32s_adjust.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-uint32s_append.h b/level_0/f_type_array/tests/unit/c/test-type_array-uint32s_append.h index 6c7d15b3e..d507f0b0a 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-uint32s_append.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-uint32s_append.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-uint32s_append_all.h b/level_0/f_type_array/tests/unit/c/test-type_array-uint32s_append_all.h index 607ae9985..1f89aa89b 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-uint32s_append_all.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-uint32s_append_all.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-uint32s_decimate_by.h b/level_0/f_type_array/tests/unit/c/test-type_array-uint32s_decimate_by.h index 7d821bc7e..1adc46db9 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-uint32s_decimate_by.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-uint32s_decimate_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-uint32s_decrease_by.h b/level_0/f_type_array/tests/unit/c/test-type_array-uint32s_decrease_by.h index 12f8c1260..fb7c0219b 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-uint32s_decrease_by.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-uint32s_decrease_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-uint32s_increase.h b/level_0/f_type_array/tests/unit/c/test-type_array-uint32s_increase.h index 9bfcf5ed4..9fc1518d4 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-uint32s_increase.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-uint32s_increase.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-uint32s_increase_by.h b/level_0/f_type_array/tests/unit/c/test-type_array-uint32s_increase_by.h index 707da7b13..b8891520d 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-uint32s_increase_by.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-uint32s_increase_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-uint32s_resize.h b/level_0/f_type_array/tests/unit/c/test-type_array-uint32s_resize.h index 6b3ae091b..89368fb01 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-uint32s_resize.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-uint32s_resize.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-uint32ss_adjust.h b/level_0/f_type_array/tests/unit/c/test-type_array-uint32ss_adjust.h index 2661f483b..3d1c1989c 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-uint32ss_adjust.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-uint32ss_adjust.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-uint32ss_append.h b/level_0/f_type_array/tests/unit/c/test-type_array-uint32ss_append.h index dc22f276c..3e50a1061 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-uint32ss_append.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-uint32ss_append.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-uint32ss_append_all.h b/level_0/f_type_array/tests/unit/c/test-type_array-uint32ss_append_all.h index 410bab46d..dece6c9ab 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-uint32ss_append_all.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-uint32ss_append_all.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-uint32ss_decimate_by.h b/level_0/f_type_array/tests/unit/c/test-type_array-uint32ss_decimate_by.h index 51a9afaa1..d9d8563db 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-uint32ss_decimate_by.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-uint32ss_decimate_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-uint32ss_decrease_by.h b/level_0/f_type_array/tests/unit/c/test-type_array-uint32ss_decrease_by.h index 532f0f9dd..3abfcfd27 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-uint32ss_decrease_by.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-uint32ss_decrease_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-uint32ss_increase.h b/level_0/f_type_array/tests/unit/c/test-type_array-uint32ss_increase.h index 75825ca63..571bdf22f 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-uint32ss_increase.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-uint32ss_increase.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-uint32ss_increase_by.h b/level_0/f_type_array/tests/unit/c/test-type_array-uint32ss_increase_by.h index c3accc1e9..a067e2aa3 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-uint32ss_increase_by.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-uint32ss_increase_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-uint32ss_resize.h b/level_0/f_type_array/tests/unit/c/test-type_array-uint32ss_resize.h index d0792d859..738b9fb04 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-uint32ss_resize.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-uint32ss_resize.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-uint64s_adjust.h b/level_0/f_type_array/tests/unit/c/test-type_array-uint64s_adjust.h index 2f64ed47a..678592f78 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-uint64s_adjust.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-uint64s_adjust.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-uint64s_append.h b/level_0/f_type_array/tests/unit/c/test-type_array-uint64s_append.h index 65c34022b..05e79cb71 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-uint64s_append.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-uint64s_append.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-uint64s_append_all.h b/level_0/f_type_array/tests/unit/c/test-type_array-uint64s_append_all.h index 2a04eeeac..9d47c2a3c 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-uint64s_append_all.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-uint64s_append_all.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-uint64s_decimate_by.h b/level_0/f_type_array/tests/unit/c/test-type_array-uint64s_decimate_by.h index 617d74beb..b381715ab 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-uint64s_decimate_by.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-uint64s_decimate_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-uint64s_decrease_by.h b/level_0/f_type_array/tests/unit/c/test-type_array-uint64s_decrease_by.h index 348c86a55..9b8aaa3fd 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-uint64s_decrease_by.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-uint64s_decrease_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-uint64s_increase.h b/level_0/f_type_array/tests/unit/c/test-type_array-uint64s_increase.h index 7498d9d64..4190d1dca 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-uint64s_increase.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-uint64s_increase.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-uint64s_increase_by.h b/level_0/f_type_array/tests/unit/c/test-type_array-uint64s_increase_by.h index f3a53558b..673194def 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-uint64s_increase_by.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-uint64s_increase_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-uint64s_resize.h b/level_0/f_type_array/tests/unit/c/test-type_array-uint64s_resize.h index 82b9421b3..f05a84deb 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-uint64s_resize.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-uint64s_resize.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-uint64ss_adjust.h b/level_0/f_type_array/tests/unit/c/test-type_array-uint64ss_adjust.h index 3393fb375..a5cc3cda5 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-uint64ss_adjust.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-uint64ss_adjust.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-uint64ss_append.h b/level_0/f_type_array/tests/unit/c/test-type_array-uint64ss_append.h index 9b409f127..613587586 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-uint64ss_append.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-uint64ss_append.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-uint64ss_append_all.h b/level_0/f_type_array/tests/unit/c/test-type_array-uint64ss_append_all.h index 125144207..510eb331a 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-uint64ss_append_all.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-uint64ss_append_all.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-uint64ss_decimate_by.h b/level_0/f_type_array/tests/unit/c/test-type_array-uint64ss_decimate_by.h index 46fb4a21d..b4f0b7f8f 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-uint64ss_decimate_by.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-uint64ss_decimate_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-uint64ss_decrease_by.h b/level_0/f_type_array/tests/unit/c/test-type_array-uint64ss_decrease_by.h index 6f50f7da8..1378c1054 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-uint64ss_decrease_by.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-uint64ss_decrease_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-uint64ss_increase.h b/level_0/f_type_array/tests/unit/c/test-type_array-uint64ss_increase.h index 00b7bc944..e59df4fc5 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-uint64ss_increase.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-uint64ss_increase.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-uint64ss_increase_by.h b/level_0/f_type_array/tests/unit/c/test-type_array-uint64ss_increase_by.h index 5f3eea753..2d7741100 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-uint64ss_increase_by.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-uint64ss_increase_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-uint64ss_resize.h b/level_0/f_type_array/tests/unit/c/test-type_array-uint64ss_resize.h index 9d8e28ff8..67a335892 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-uint64ss_resize.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-uint64ss_resize.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-uint8s_adjust.h b/level_0/f_type_array/tests/unit/c/test-type_array-uint8s_adjust.h index 7be067332..74a1f421d 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-uint8s_adjust.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-uint8s_adjust.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-uint8s_append.h b/level_0/f_type_array/tests/unit/c/test-type_array-uint8s_append.h index 9e14ffa10..c0b713c67 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-uint8s_append.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-uint8s_append.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-uint8s_append_all.h b/level_0/f_type_array/tests/unit/c/test-type_array-uint8s_append_all.h index d1446fe3d..620e46144 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-uint8s_append_all.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-uint8s_append_all.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-uint8s_decimate_by.h b/level_0/f_type_array/tests/unit/c/test-type_array-uint8s_decimate_by.h index b2f597273..4989513b8 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-uint8s_decimate_by.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-uint8s_decimate_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-uint8s_decrease_by.h b/level_0/f_type_array/tests/unit/c/test-type_array-uint8s_decrease_by.h index 130aa8b79..029b22e77 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-uint8s_decrease_by.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-uint8s_decrease_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-uint8s_increase.h b/level_0/f_type_array/tests/unit/c/test-type_array-uint8s_increase.h index d119d5c69..c7f3c2501 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-uint8s_increase.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-uint8s_increase.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-uint8s_increase_by.h b/level_0/f_type_array/tests/unit/c/test-type_array-uint8s_increase_by.h index 449b98f83..321e78c8c 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-uint8s_increase_by.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-uint8s_increase_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-uint8s_resize.h b/level_0/f_type_array/tests/unit/c/test-type_array-uint8s_resize.h index d5b3402af..3cd72346c 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-uint8s_resize.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-uint8s_resize.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-uint8ss_adjust.h b/level_0/f_type_array/tests/unit/c/test-type_array-uint8ss_adjust.h index 8901ba85f..ef347992d 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-uint8ss_adjust.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-uint8ss_adjust.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-uint8ss_append.h b/level_0/f_type_array/tests/unit/c/test-type_array-uint8ss_append.h index df98afe37..06910008e 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-uint8ss_append.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-uint8ss_append.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-uint8ss_append_all.h b/level_0/f_type_array/tests/unit/c/test-type_array-uint8ss_append_all.h index d4aca362e..adda02507 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-uint8ss_append_all.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-uint8ss_append_all.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-uint8ss_decimate_by.h b/level_0/f_type_array/tests/unit/c/test-type_array-uint8ss_decimate_by.h index b5a582af7..f35c0a1b5 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-uint8ss_decimate_by.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-uint8ss_decimate_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-uint8ss_decrease_by.h b/level_0/f_type_array/tests/unit/c/test-type_array-uint8ss_decrease_by.h index d5295e42e..066a0d801 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-uint8ss_decrease_by.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-uint8ss_decrease_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-uint8ss_increase.h b/level_0/f_type_array/tests/unit/c/test-type_array-uint8ss_increase.h index 97d32c0d7..943f00786 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-uint8ss_increase.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-uint8ss_increase.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-uint8ss_increase_by.h b/level_0/f_type_array/tests/unit/c/test-type_array-uint8ss_increase_by.h index 83ac67788..fbd20d0e3 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-uint8ss_increase_by.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-uint8ss_increase_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array-uint8ss_resize.h b/level_0/f_type_array/tests/unit/c/test-type_array-uint8ss_resize.h index 3f091f58c..63c7af4da 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array-uint8ss_resize.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array-uint8ss_resize.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the array types in the type project. diff --git a/level_0/f_type_array/tests/unit/c/test-type_array.h b/level_0/f_type_array/tests/unit/c/test-type_array.h index ca3019976..dfc4a9ce6 100644 --- a/level_0/f_type_array/tests/unit/c/test-type_array.h +++ b/level_0/f_type_array/tests/unit/c/test-type_array.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Type - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the type arrays in the project. diff --git a/level_0/f_utf/c/private-utf.h b/level_0/f_utf/c/private-utf.h index f1f3c7c44..21f54bace 100644 --- a/level_0/f_utf/c/private-utf.h +++ b/level_0/f_utf/c/private-utf.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Provides UTF-8 capabilities. diff --git a/level_0/f_utf/c/private-utf_alphabetic.h b/level_0/f_utf/c/private-utf_alphabetic.h index c92c846bc..b92f73850 100644 --- a/level_0/f_utf/c/private-utf_alphabetic.h +++ b/level_0/f_utf/c/private-utf_alphabetic.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Provides UTF-8 capabilities. diff --git a/level_0/f_utf/c/private-utf_combining.h b/level_0/f_utf/c/private-utf_combining.h index 930df68ba..bca53be2e 100644 --- a/level_0/f_utf/c/private-utf_combining.h +++ b/level_0/f_utf/c/private-utf_combining.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Provides UTF-8 capabilities. diff --git a/level_0/f_utf/c/private-utf_control.h b/level_0/f_utf/c/private-utf_control.h index 7b1cfce89..b8ab4c322 100644 --- a/level_0/f_utf/c/private-utf_control.h +++ b/level_0/f_utf/c/private-utf_control.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Provides UTF-8 capabilities. diff --git a/level_0/f_utf/c/private-utf_digit.h b/level_0/f_utf/c/private-utf_digit.h index 0a28836c8..0ebd9c605 100644 --- a/level_0/f_utf/c/private-utf_digit.h +++ b/level_0/f_utf/c/private-utf_digit.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Provides UTF-8 capabilities. diff --git a/level_0/f_utf/c/private-utf_emoji.h b/level_0/f_utf/c/private-utf_emoji.h index 1c81a0da6..49132a2f4 100644 --- a/level_0/f_utf/c/private-utf_emoji.h +++ b/level_0/f_utf/c/private-utf_emoji.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Provides UTF-8 capabilities. diff --git a/level_0/f_utf/c/private-utf_numeric.h b/level_0/f_utf/c/private-utf_numeric.h index dc20bc59f..d71af702c 100644 --- a/level_0/f_utf/c/private-utf_numeric.h +++ b/level_0/f_utf/c/private-utf_numeric.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Provides UTF-8 capabilities. diff --git a/level_0/f_utf/c/private-utf_phonetic.h b/level_0/f_utf/c/private-utf_phonetic.h index 954288a61..d83d9bac4 100644 --- a/level_0/f_utf/c/private-utf_phonetic.h +++ b/level_0/f_utf/c/private-utf_phonetic.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Provides UTF-8 capabilities. diff --git a/level_0/f_utf/c/private-utf_private.h b/level_0/f_utf/c/private-utf_private.h index 7472642a8..73de0af7c 100644 --- a/level_0/f_utf/c/private-utf_private.h +++ b/level_0/f_utf/c/private-utf_private.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Provides UTF-8 capabilities. diff --git a/level_0/f_utf/c/private-utf_punctuation.h b/level_0/f_utf/c/private-utf_punctuation.h index 232347d7b..99adf1732 100644 --- a/level_0/f_utf/c/private-utf_punctuation.h +++ b/level_0/f_utf/c/private-utf_punctuation.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Provides UTF-8 capabilities. diff --git a/level_0/f_utf/c/private-utf_subscript.h b/level_0/f_utf/c/private-utf_subscript.h index ccbee2b92..8b5fcc4d4 100644 --- a/level_0/f_utf/c/private-utf_subscript.h +++ b/level_0/f_utf/c/private-utf_subscript.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Provides UTF-8 capabilities. diff --git a/level_0/f_utf/c/private-utf_superscript.h b/level_0/f_utf/c/private-utf_superscript.h index 23b7cbb95..713c1aae4 100644 --- a/level_0/f_utf/c/private-utf_superscript.h +++ b/level_0/f_utf/c/private-utf_superscript.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Provides UTF-8 capabilities. diff --git a/level_0/f_utf/c/private-utf_symbol.h b/level_0/f_utf/c/private-utf_symbol.h index caf87f31b..37b57377d 100644 --- a/level_0/f_utf/c/private-utf_symbol.h +++ b/level_0/f_utf/c/private-utf_symbol.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Provides UTF-8 capabilities. diff --git a/level_0/f_utf/c/private-utf_valid.h b/level_0/f_utf/c/private-utf_valid.h index 02922fa3c..67bc7b98d 100644 --- a/level_0/f_utf/c/private-utf_valid.h +++ b/level_0/f_utf/c/private-utf_valid.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Provides UTF-8 capabilities. diff --git a/level_0/f_utf/c/private-utf_whitespace.h b/level_0/f_utf/c/private-utf_whitespace.h index 55049ec82..325ae6b38 100644 --- a/level_0/f_utf/c/private-utf_whitespace.h +++ b/level_0/f_utf/c/private-utf_whitespace.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Provides UTF-8 capabilities. diff --git a/level_0/f_utf/c/private-utf_wide.h b/level_0/f_utf/c/private-utf_wide.h index 0d4640265..7ce1a9628 100644 --- a/level_0/f_utf/c/private-utf_wide.h +++ b/level_0/f_utf/c/private-utf_wide.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Provides UTF-8 capabilities. diff --git a/level_0/f_utf/c/private-utf_word.h b/level_0/f_utf/c/private-utf_word.h index ed5b05c7d..085ca8562 100644 --- a/level_0/f_utf/c/private-utf_word.h +++ b/level_0/f_utf/c/private-utf_word.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Provides UTF-8 capabilities. diff --git a/level_0/f_utf/c/private-utf_zero_width.h b/level_0/f_utf/c/private-utf_zero_width.h index cf1eee8e8..1eaf6ae3e 100644 --- a/level_0/f_utf/c/private-utf_zero_width.h +++ b/level_0/f_utf/c/private-utf_zero_width.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Provides UTF-8 capabilities. diff --git a/level_0/f_utf/c/utf.h b/level_0/f_utf/c/utf.h index 9eac51e5a..840e546c6 100644 --- a/level_0/f_utf/c/utf.h +++ b/level_0/f_utf/c/utf.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Provides UTF-8 capabilities. diff --git a/level_0/f_utf/c/utf/common.h b/level_0/f_utf/c/utf/common.h index 672a13218..070ad28db 100644 --- a/level_0/f_utf/c/utf/common.h +++ b/level_0/f_utf/c/utf/common.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Defines common data to be used for/by project utf. diff --git a/level_0/f_utf/c/utf/convert.h b/level_0/f_utf/c/utf/convert.h index ce510526d..57227d865 100644 --- a/level_0/f_utf/c/utf/convert.h +++ b/level_0/f_utf/c/utf/convert.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgplv2.1 * * Defines UTF-8 "convert" functions. diff --git a/level_0/f_utf/c/utf/dynamic.h b/level_0/f_utf/c/utf/dynamic.h index 367d48411..8a64711d9 100644 --- a/level_0/f_utf/c/utf/dynamic.h +++ b/level_0/f_utf/c/utf/dynamic.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Defines dynamic (and static) UTF-8 string data. diff --git a/level_0/f_utf/c/utf/is.h b/level_0/f_utf/c/utf/is.h index 0266509c4..d9b83cdb3 100644 --- a/level_0/f_utf/c/utf/is.h +++ b/level_0/f_utf/c/utf/is.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgplv2.1 * * Defines UTF-8 "is" functions. diff --git a/level_0/f_utf/c/utf/is_character.h b/level_0/f_utf/c/utf/is_character.h index fd3f57186..bbcffd65e 100644 --- a/level_0/f_utf/c/utf/is_character.h +++ b/level_0/f_utf/c/utf/is_character.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgplv2.1 * * Defines UTF-8 "character_is" functions. diff --git a/level_0/f_utf/c/utf/map.h b/level_0/f_utf/c/utf/map.h index 860f0310a..29df11fe0 100644 --- a/level_0/f_utf/c/utf/map.h +++ b/level_0/f_utf/c/utf/map.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Defines map UTF-8 string data. diff --git a/level_0/f_utf/c/utf/map_multi.h b/level_0/f_utf/c/utf/map_multi.h index 86a36c7b1..44af0f8f6 100644 --- a/level_0/f_utf/c/utf/map_multi.h +++ b/level_0/f_utf/c/utf/map_multi.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: String - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Defines map string data. diff --git a/level_0/f_utf/c/utf/private-dynamic.h b/level_0/f_utf/c/utf/private-dynamic.h index 4149a1411..127902b9a 100644 --- a/level_0/f_utf/c/utf/private-dynamic.h +++ b/level_0/f_utf/c/utf/private-dynamic.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: String - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * These are provided for internal reduction in redundant code. diff --git a/level_0/f_utf/c/utf/private-is_unassigned.h b/level_0/f_utf/c/utf/private-is_unassigned.h index 781ab2638..7f8cd1a67 100644 --- a/level_0/f_utf/c/utf/private-is_unassigned.h +++ b/level_0/f_utf/c/utf/private-is_unassigned.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Provides UTF-8 capabilities. diff --git a/level_0/f_utf/c/utf/private-map.h b/level_0/f_utf/c/utf/private-map.h index c37a37aa2..fec38937e 100644 --- a/level_0/f_utf/c/utf/private-map.h +++ b/level_0/f_utf/c/utf/private-map.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: String - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * These are provided for internal reduction in redundant code. diff --git a/level_0/f_utf/c/utf/private-map_multi.h b/level_0/f_utf/c/utf/private-map_multi.h index ae7b3431e..6b045ad0d 100644 --- a/level_0/f_utf/c/utf/private-map_multi.h +++ b/level_0/f_utf/c/utf/private-map_multi.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: String - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * These are provided for internal reduction in redundant code. diff --git a/level_0/f_utf/c/utf/private-string.h b/level_0/f_utf/c/utf/private-string.h index 5d8225cee..28db21155 100644 --- a/level_0/f_utf/c/utf/private-string.h +++ b/level_0/f_utf/c/utf/private-string.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgplv2.1 * * Provides UTF-8 string capabilities. diff --git a/level_0/f_utf/c/utf/private-triple.h b/level_0/f_utf/c/utf/private-triple.h index f777ad56c..b08abd83a 100644 --- a/level_0/f_utf/c/utf/private-triple.h +++ b/level_0/f_utf/c/utf/private-triple.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: String - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * These are provided for internal reduction in redundant code. diff --git a/level_0/f_utf/c/utf/static.h b/level_0/f_utf/c/utf/static.h index d74b7a618..5d4930c5c 100644 --- a/level_0/f_utf/c/utf/static.h +++ b/level_0/f_utf/c/utf/static.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: String - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Defines static string data. diff --git a/level_0/f_utf/c/utf/string.h b/level_0/f_utf/c/utf/string.h index 4ec3b1dce..82fce63e0 100644 --- a/level_0/f_utf/c/utf/string.h +++ b/level_0/f_utf/c/utf/string.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgplv2.1 * * Defines UTF-8 string data. diff --git a/level_0/f_utf/c/utf/triple.h b/level_0/f_utf/c/utf/triple.h index 40a47fd17..cd5ef867a 100644 --- a/level_0/f_utf/c/utf/triple.h +++ b/level_0/f_utf/c/utf/triple.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Defines 3-tuple of UTF-8 string data called a triple (which is an ordered list of 3 strings). diff --git a/level_0/f_utf/tests/unit/c/data-utf.h b/level_0/f_utf/tests/unit/c/data-utf.h index df060d340..1604d0b28 100644 --- a/level_0/f_utf/tests/unit/c/data-utf.h +++ b/level_0/f_utf/tests/unit/c/data-utf.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Data for the string project tests. diff --git a/level_0/f_utf/tests/unit/c/test-utf-append.h b/level_0/f_utf/tests/unit/c/test-utf-append.h index 59ae5ae1e..cf7d8dc21 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-append.h +++ b/level_0/f_utf/tests/unit/c/test-utf-append.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the data types in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-append_assure.h b/level_0/f_utf/tests/unit/c/test-utf-append_assure.h index 5b02b19f3..8819f152d 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-append_assure.h +++ b/level_0/f_utf/tests/unit/c/test-utf-append_assure.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the data types in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-append_assure_nulless.h b/level_0/f_utf/tests/unit/c/test-utf-append_assure_nulless.h index bbde03c30..06d3d8d54 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-append_assure_nulless.h +++ b/level_0/f_utf/tests/unit/c/test-utf-append_assure_nulless.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the data types in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-append_nulless.h b/level_0/f_utf/tests/unit/c/test-utf-append_nulless.h index e4db7fe9b..245fa3546 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-append_nulless.h +++ b/level_0/f_utf/tests/unit/c/test-utf-append_nulless.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the data types in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-character_is_alphabetic.h b/level_0/f_utf/tests/unit/c/test-utf-character_is_alphabetic.h index 1ecd4414e..c32acc8bf 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-character_is_alphabetic.h +++ b/level_0/f_utf/tests/unit/c/test-utf-character_is_alphabetic.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the function in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-character_is_alphabetic_digit.h b/level_0/f_utf/tests/unit/c/test-utf-character_is_alphabetic_digit.h index c077cd0b2..a39e77ae3 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-character_is_alphabetic_digit.h +++ b/level_0/f_utf/tests/unit/c/test-utf-character_is_alphabetic_digit.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the function in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-character_is_alphabetic_numeric.h b/level_0/f_utf/tests/unit/c/test-utf-character_is_alphabetic_numeric.h index a1211c6a6..86f4f5949 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-character_is_alphabetic_numeric.h +++ b/level_0/f_utf/tests/unit/c/test-utf-character_is_alphabetic_numeric.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the function in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-character_is_combining.h b/level_0/f_utf/tests/unit/c/test-utf-character_is_combining.h index 371e14671..f08cbf85e 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-character_is_combining.h +++ b/level_0/f_utf/tests/unit/c/test-utf-character_is_combining.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the function in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-character_is_control.h b/level_0/f_utf/tests/unit/c/test-utf-character_is_control.h index 4d11882df..84b6d90fe 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-character_is_control.h +++ b/level_0/f_utf/tests/unit/c/test-utf-character_is_control.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the function in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-character_is_digit.h b/level_0/f_utf/tests/unit/c/test-utf-character_is_digit.h index 74d739b7d..5727adba1 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-character_is_digit.h +++ b/level_0/f_utf/tests/unit/c/test-utf-character_is_digit.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the function in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-character_is_emoji.h b/level_0/f_utf/tests/unit/c/test-utf-character_is_emoji.h index 8a1e3e3cc..b26681573 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-character_is_emoji.h +++ b/level_0/f_utf/tests/unit/c/test-utf-character_is_emoji.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the function in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-character_is_numeric.h b/level_0/f_utf/tests/unit/c/test-utf-character_is_numeric.h index 25d7edf2e..5913dc2c3 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-character_is_numeric.h +++ b/level_0/f_utf/tests/unit/c/test-utf-character_is_numeric.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the function in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-character_is_phonetic.h b/level_0/f_utf/tests/unit/c/test-utf-character_is_phonetic.h index 7bd083930..1828797e7 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-character_is_phonetic.h +++ b/level_0/f_utf/tests/unit/c/test-utf-character_is_phonetic.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the function in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-character_is_private.h b/level_0/f_utf/tests/unit/c/test-utf-character_is_private.h index da9176465..56a1717ce 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-character_is_private.h +++ b/level_0/f_utf/tests/unit/c/test-utf-character_is_private.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the function in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-character_is_punctuation.h b/level_0/f_utf/tests/unit/c/test-utf-character_is_punctuation.h index 72a6e7069..4bd79e107 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-character_is_punctuation.h +++ b/level_0/f_utf/tests/unit/c/test-utf-character_is_punctuation.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the function in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-character_is_subscript.h b/level_0/f_utf/tests/unit/c/test-utf-character_is_subscript.h index 50119cd19..d686361d0 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-character_is_subscript.h +++ b/level_0/f_utf/tests/unit/c/test-utf-character_is_subscript.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the function in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-character_is_superscript.h b/level_0/f_utf/tests/unit/c/test-utf-character_is_superscript.h index 34e70b440..0c8306f30 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-character_is_superscript.h +++ b/level_0/f_utf/tests/unit/c/test-utf-character_is_superscript.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the function in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-character_is_symbol.h b/level_0/f_utf/tests/unit/c/test-utf-character_is_symbol.h index f6215a05d..b09bd4d71 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-character_is_symbol.h +++ b/level_0/f_utf/tests/unit/c/test-utf-character_is_symbol.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the function in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-character_is_valid.h b/level_0/f_utf/tests/unit/c/test-utf-character_is_valid.h index c36588765..d61282527 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-character_is_valid.h +++ b/level_0/f_utf/tests/unit/c/test-utf-character_is_valid.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the function in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-character_is_whitespace.h b/level_0/f_utf/tests/unit/c/test-utf-character_is_whitespace.h index 2751a3e04..1379fbb4b 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-character_is_whitespace.h +++ b/level_0/f_utf/tests/unit/c/test-utf-character_is_whitespace.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the function in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-character_is_whitespace_modifier.h b/level_0/f_utf/tests/unit/c/test-utf-character_is_whitespace_modifier.h index c611b1d7b..5b64303a7 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-character_is_whitespace_modifier.h +++ b/level_0/f_utf/tests/unit/c/test-utf-character_is_whitespace_modifier.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the function in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-character_is_whitespace_other.h b/level_0/f_utf/tests/unit/c/test-utf-character_is_whitespace_other.h index 66c9de330..9523c5eed 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-character_is_whitespace_other.h +++ b/level_0/f_utf/tests/unit/c/test-utf-character_is_whitespace_other.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the function in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-character_is_whitespace_zero_width.h b/level_0/f_utf/tests/unit/c/test-utf-character_is_whitespace_zero_width.h index 056a7b736..a04b79316 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-character_is_whitespace_zero_width.h +++ b/level_0/f_utf/tests/unit/c/test-utf-character_is_whitespace_zero_width.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the function in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-character_is_wide.h b/level_0/f_utf/tests/unit/c/test-utf-character_is_wide.h index eb675b824..08dd051a8 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-character_is_wide.h +++ b/level_0/f_utf/tests/unit/c/test-utf-character_is_wide.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the function in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-character_is_word.h b/level_0/f_utf/tests/unit/c/test-utf-character_is_word.h index 92dde0fac..0d96299a7 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-character_is_word.h +++ b/level_0/f_utf/tests/unit/c/test-utf-character_is_word.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the function in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-character_is_word_dash.h b/level_0/f_utf/tests/unit/c/test-utf-character_is_word_dash.h index 7b1b15613..845bc7c5f 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-character_is_word_dash.h +++ b/level_0/f_utf/tests/unit/c/test-utf-character_is_word_dash.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the function in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-character_is_word_dash_plus.h b/level_0/f_utf/tests/unit/c/test-utf-character_is_word_dash_plus.h index 19118bb72..73d1c792d 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-character_is_word_dash_plus.h +++ b/level_0/f_utf/tests/unit/c/test-utf-character_is_word_dash_plus.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the function in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-character_is_zero_width.h b/level_0/f_utf/tests/unit/c/test-utf-character_is_zero_width.h index 639dd8735..bf58f3358 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-character_is_zero_width.h +++ b/level_0/f_utf/tests/unit/c/test-utf-character_is_zero_width.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the function in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-dynamic_adjust.h b/level_0/f_utf/tests/unit/c/test-utf-dynamic_adjust.h index f2e13d232..ef2b17611 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-dynamic_adjust.h +++ b/level_0/f_utf/tests/unit/c/test-utf-dynamic_adjust.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the data types in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-dynamic_append.h b/level_0/f_utf/tests/unit/c/test-utf-dynamic_append.h index a8bb5a7bd..ca404afcb 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-dynamic_append.h +++ b/level_0/f_utf/tests/unit/c/test-utf-dynamic_append.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the data types in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-dynamic_append_assure.h b/level_0/f_utf/tests/unit/c/test-utf-dynamic_append_assure.h index 45c98c83a..74da768c4 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-dynamic_append_assure.h +++ b/level_0/f_utf/tests/unit/c/test-utf-dynamic_append_assure.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the data types in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-dynamic_append_assure_nulless.h b/level_0/f_utf/tests/unit/c/test-utf-dynamic_append_assure_nulless.h index 702999546..c2200167a 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-dynamic_append_assure_nulless.h +++ b/level_0/f_utf/tests/unit/c/test-utf-dynamic_append_assure_nulless.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the data types in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-dynamic_append_nulless.h b/level_0/f_utf/tests/unit/c/test-utf-dynamic_append_nulless.h index 1041ae7ac..dc8e99fe3 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-dynamic_append_nulless.h +++ b/level_0/f_utf/tests/unit/c/test-utf-dynamic_append_nulless.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the data types in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-dynamic_decimate_by.h b/level_0/f_utf/tests/unit/c/test-utf-dynamic_decimate_by.h index a5b1cdaa5..b2419ca3c 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-dynamic_decimate_by.h +++ b/level_0/f_utf/tests/unit/c/test-utf-dynamic_decimate_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the data types in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-dynamic_decrease_by.h b/level_0/f_utf/tests/unit/c/test-utf-dynamic_decrease_by.h index 5750510f4..ba292033a 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-dynamic_decrease_by.h +++ b/level_0/f_utf/tests/unit/c/test-utf-dynamic_decrease_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the data types in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-dynamic_increase.h b/level_0/f_utf/tests/unit/c/test-utf-dynamic_increase.h index 805777bee..7cb7dbc42 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-dynamic_increase.h +++ b/level_0/f_utf/tests/unit/c/test-utf-dynamic_increase.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the data types in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-dynamic_increase_by.h b/level_0/f_utf/tests/unit/c/test-utf-dynamic_increase_by.h index 41d8b32aa..3a2169112 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-dynamic_increase_by.h +++ b/level_0/f_utf/tests/unit/c/test-utf-dynamic_increase_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the data types in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-dynamic_mash.h b/level_0/f_utf/tests/unit/c/test-utf-dynamic_mash.h index a705140c4..01b35b197 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-dynamic_mash.h +++ b/level_0/f_utf/tests/unit/c/test-utf-dynamic_mash.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the data types in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-dynamic_mash_nulless.h b/level_0/f_utf/tests/unit/c/test-utf-dynamic_mash_nulless.h index defaa5a75..19583116f 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-dynamic_mash_nulless.h +++ b/level_0/f_utf/tests/unit/c/test-utf-dynamic_mash_nulless.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the data types in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-dynamic_mish.h b/level_0/f_utf/tests/unit/c/test-utf-dynamic_mish.h index 9e7682eaa..cb5605df7 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-dynamic_mish.h +++ b/level_0/f_utf/tests/unit/c/test-utf-dynamic_mish.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the data types in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-dynamic_mish_nulless.h b/level_0/f_utf/tests/unit/c/test-utf-dynamic_mish_nulless.h index dc53ea471..9ea2f2da2 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-dynamic_mish_nulless.h +++ b/level_0/f_utf/tests/unit/c/test-utf-dynamic_mish_nulless.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the data types in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-dynamic_partial_append.h b/level_0/f_utf/tests/unit/c/test-utf-dynamic_partial_append.h index 4c79ed01a..e3f669a9b 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-dynamic_partial_append.h +++ b/level_0/f_utf/tests/unit/c/test-utf-dynamic_partial_append.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the data types in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-dynamic_partial_append_assure.h b/level_0/f_utf/tests/unit/c/test-utf-dynamic_partial_append_assure.h index 9d2ac4932..8121a94c6 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-dynamic_partial_append_assure.h +++ b/level_0/f_utf/tests/unit/c/test-utf-dynamic_partial_append_assure.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the data types in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-dynamic_partial_append_assure_nulless.h b/level_0/f_utf/tests/unit/c/test-utf-dynamic_partial_append_assure_nulless.h index 8d5b1db62..2125c7a63 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-dynamic_partial_append_assure_nulless.h +++ b/level_0/f_utf/tests/unit/c/test-utf-dynamic_partial_append_assure_nulless.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the data types in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-dynamic_partial_append_nulless.h b/level_0/f_utf/tests/unit/c/test-utf-dynamic_partial_append_nulless.h index 5d021eef0..ac2178d50 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-dynamic_partial_append_nulless.h +++ b/level_0/f_utf/tests/unit/c/test-utf-dynamic_partial_append_nulless.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the data types in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-dynamic_partial_mash.h b/level_0/f_utf/tests/unit/c/test-utf-dynamic_partial_mash.h index 5fbbcc59a..1e8575179 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-dynamic_partial_mash.h +++ b/level_0/f_utf/tests/unit/c/test-utf-dynamic_partial_mash.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the data types in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-dynamic_partial_mash_nulless.h b/level_0/f_utf/tests/unit/c/test-utf-dynamic_partial_mash_nulless.h index a72e5a78b..c10ae6387 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-dynamic_partial_mash_nulless.h +++ b/level_0/f_utf/tests/unit/c/test-utf-dynamic_partial_mash_nulless.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the data types in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-dynamic_partial_mish.h b/level_0/f_utf/tests/unit/c/test-utf-dynamic_partial_mish.h index bcf745e10..cedf94507 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-dynamic_partial_mish.h +++ b/level_0/f_utf/tests/unit/c/test-utf-dynamic_partial_mish.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the data types in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-dynamic_partial_mish_nulless.h b/level_0/f_utf/tests/unit/c/test-utf-dynamic_partial_mish_nulless.h index 2dd4b65ef..73155de58 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-dynamic_partial_mish_nulless.h +++ b/level_0/f_utf/tests/unit/c/test-utf-dynamic_partial_mish_nulless.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the data types in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-dynamic_partial_prepend.h b/level_0/f_utf/tests/unit/c/test-utf-dynamic_partial_prepend.h index 9dec9ee50..b2ced10d8 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-dynamic_partial_prepend.h +++ b/level_0/f_utf/tests/unit/c/test-utf-dynamic_partial_prepend.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the data types in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-dynamic_partial_prepend_assure.h b/level_0/f_utf/tests/unit/c/test-utf-dynamic_partial_prepend_assure.h index fac62cc3a..d7fe96dab 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-dynamic_partial_prepend_assure.h +++ b/level_0/f_utf/tests/unit/c/test-utf-dynamic_partial_prepend_assure.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the data types in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-dynamic_partial_prepend_assure_nulless.h b/level_0/f_utf/tests/unit/c/test-utf-dynamic_partial_prepend_assure_nulless.h index 08631b555..2ebd4e03b 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-dynamic_partial_prepend_assure_nulless.h +++ b/level_0/f_utf/tests/unit/c/test-utf-dynamic_partial_prepend_assure_nulless.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the data types in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-dynamic_partial_prepend_nulless.h b/level_0/f_utf/tests/unit/c/test-utf-dynamic_partial_prepend_nulless.h index e1a4558dd..f9cc6c992 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-dynamic_partial_prepend_nulless.h +++ b/level_0/f_utf/tests/unit/c/test-utf-dynamic_partial_prepend_nulless.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the data types in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-dynamic_prepend.h b/level_0/f_utf/tests/unit/c/test-utf-dynamic_prepend.h index 67b552299..d2a1825a6 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-dynamic_prepend.h +++ b/level_0/f_utf/tests/unit/c/test-utf-dynamic_prepend.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the data types in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-dynamic_prepend_assure.h b/level_0/f_utf/tests/unit/c/test-utf-dynamic_prepend_assure.h index 627fc43e3..d8e0b5bc1 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-dynamic_prepend_assure.h +++ b/level_0/f_utf/tests/unit/c/test-utf-dynamic_prepend_assure.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the data types in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-dynamic_prepend_assure_nulless.h b/level_0/f_utf/tests/unit/c/test-utf-dynamic_prepend_assure_nulless.h index 79add4b41..9f0c4925e 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-dynamic_prepend_assure_nulless.h +++ b/level_0/f_utf/tests/unit/c/test-utf-dynamic_prepend_assure_nulless.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the data types in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-dynamic_prepend_nulless.h b/level_0/f_utf/tests/unit/c/test-utf-dynamic_prepend_nulless.h index 47cdc6b30..daff33796 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-dynamic_prepend_nulless.h +++ b/level_0/f_utf/tests/unit/c/test-utf-dynamic_prepend_nulless.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the data types in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-dynamic_resize.h b/level_0/f_utf/tests/unit/c/test-utf-dynamic_resize.h index 5c8b7eb8a..a86b96089 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-dynamic_resize.h +++ b/level_0/f_utf/tests/unit/c/test-utf-dynamic_resize.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the data types in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-dynamic_seek_line.h b/level_0/f_utf/tests/unit/c/test-utf-dynamic_seek_line.h index 8c5ca5745..91fca5cb3 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-dynamic_seek_line.h +++ b/level_0/f_utf/tests/unit/c/test-utf-dynamic_seek_line.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the data types in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-dynamic_seek_line_to.h b/level_0/f_utf/tests/unit/c/test-utf-dynamic_seek_line_to.h index 3df2576aa..1dda5e474 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-dynamic_seek_line_to.h +++ b/level_0/f_utf/tests/unit/c/test-utf-dynamic_seek_line_to.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the data types in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-dynamic_seek_to.h b/level_0/f_utf/tests/unit/c/test-utf-dynamic_seek_to.h index 189c566f9..fb2c02438 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-dynamic_seek_to.h +++ b/level_0/f_utf/tests/unit/c/test-utf-dynamic_seek_to.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the data types in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-dynamic_terminate.h b/level_0/f_utf/tests/unit/c/test-utf-dynamic_terminate.h index f23db0256..8421fb346 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-dynamic_terminate.h +++ b/level_0/f_utf/tests/unit/c/test-utf-dynamic_terminate.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the data types in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-dynamic_terminate_after.h b/level_0/f_utf/tests/unit/c/test-utf-dynamic_terminate_after.h index 60bdded73..050e1cc42 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-dynamic_terminate_after.h +++ b/level_0/f_utf/tests/unit/c/test-utf-dynamic_terminate_after.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the data types in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-dynamics_adjust.h b/level_0/f_utf/tests/unit/c/test-utf-dynamics_adjust.h index 67b65e238..23fadce41 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-dynamics_adjust.h +++ b/level_0/f_utf/tests/unit/c/test-utf-dynamics_adjust.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the data types in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-dynamics_append.h b/level_0/f_utf/tests/unit/c/test-utf-dynamics_append.h index 2c4c85286..0cd557f75 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-dynamics_append.h +++ b/level_0/f_utf/tests/unit/c/test-utf-dynamics_append.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the data types in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-dynamics_append_all.h b/level_0/f_utf/tests/unit/c/test-utf-dynamics_append_all.h index 287eadd5b..21ef67dd4 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-dynamics_append_all.h +++ b/level_0/f_utf/tests/unit/c/test-utf-dynamics_append_all.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the data types in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-dynamics_decimate_by.h b/level_0/f_utf/tests/unit/c/test-utf-dynamics_decimate_by.h index d5dd02459..0d597de7f 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-dynamics_decimate_by.h +++ b/level_0/f_utf/tests/unit/c/test-utf-dynamics_decimate_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the data types in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-dynamics_decrease_by.h b/level_0/f_utf/tests/unit/c/test-utf-dynamics_decrease_by.h index a9fdba26b..007b92732 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-dynamics_decrease_by.h +++ b/level_0/f_utf/tests/unit/c/test-utf-dynamics_decrease_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the data types in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-dynamics_increase.h b/level_0/f_utf/tests/unit/c/test-utf-dynamics_increase.h index 66e217052..86db0d0c7 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-dynamics_increase.h +++ b/level_0/f_utf/tests/unit/c/test-utf-dynamics_increase.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the data types in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-dynamics_increase_by.h b/level_0/f_utf/tests/unit/c/test-utf-dynamics_increase_by.h index 8a7a3b9d1..02d0295f6 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-dynamics_increase_by.h +++ b/level_0/f_utf/tests/unit/c/test-utf-dynamics_increase_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the data types in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-dynamics_resize.h b/level_0/f_utf/tests/unit/c/test-utf-dynamics_resize.h index 932ae4048..eaf88c567 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-dynamics_resize.h +++ b/level_0/f_utf/tests/unit/c/test-utf-dynamics_resize.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the data types in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-dynamicss_adjust.h b/level_0/f_utf/tests/unit/c/test-utf-dynamicss_adjust.h index cea017a27..9bd1b8a64 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-dynamicss_adjust.h +++ b/level_0/f_utf/tests/unit/c/test-utf-dynamicss_adjust.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the data types in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-dynamicss_append.h b/level_0/f_utf/tests/unit/c/test-utf-dynamicss_append.h index 43afdfe37..43169fe85 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-dynamicss_append.h +++ b/level_0/f_utf/tests/unit/c/test-utf-dynamicss_append.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the data types in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-dynamicss_append_all.h b/level_0/f_utf/tests/unit/c/test-utf-dynamicss_append_all.h index a175b6cb5..ab686a656 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-dynamicss_append_all.h +++ b/level_0/f_utf/tests/unit/c/test-utf-dynamicss_append_all.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the data types in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-dynamicss_decimate_by.h b/level_0/f_utf/tests/unit/c/test-utf-dynamicss_decimate_by.h index 544746001..412c16f83 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-dynamicss_decimate_by.h +++ b/level_0/f_utf/tests/unit/c/test-utf-dynamicss_decimate_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the data types in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-dynamicss_decrease_by.h b/level_0/f_utf/tests/unit/c/test-utf-dynamicss_decrease_by.h index d9325ff3e..367f3739b 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-dynamicss_decrease_by.h +++ b/level_0/f_utf/tests/unit/c/test-utf-dynamicss_decrease_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the data types in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-dynamicss_increase.h b/level_0/f_utf/tests/unit/c/test-utf-dynamicss_increase.h index 1528fcc6c..feb8feea8 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-dynamicss_increase.h +++ b/level_0/f_utf/tests/unit/c/test-utf-dynamicss_increase.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the data types in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-dynamicss_increase_by.h b/level_0/f_utf/tests/unit/c/test-utf-dynamicss_increase_by.h index 34b003660..f472d3df6 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-dynamicss_increase_by.h +++ b/level_0/f_utf/tests/unit/c/test-utf-dynamicss_increase_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the data types in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-dynamicss_resize.h b/level_0/f_utf/tests/unit/c/test-utf-dynamicss_resize.h index 8c125466d..6032e7b72 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-dynamicss_resize.h +++ b/level_0/f_utf/tests/unit/c/test-utf-dynamicss_resize.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the data types in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-is_alphabetic.h b/level_0/f_utf/tests/unit/c/test-utf-is_alphabetic.h index a2de162c9..3aa0281cd 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-is_alphabetic.h +++ b/level_0/f_utf/tests/unit/c/test-utf-is_alphabetic.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the function in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-is_alphabetic_digit.h b/level_0/f_utf/tests/unit/c/test-utf-is_alphabetic_digit.h index c32448d0b..73add4630 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-is_alphabetic_digit.h +++ b/level_0/f_utf/tests/unit/c/test-utf-is_alphabetic_digit.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the function in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-is_alphabetic_numeric.h b/level_0/f_utf/tests/unit/c/test-utf-is_alphabetic_numeric.h index 4b45f9dc9..7421b18fa 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-is_alphabetic_numeric.h +++ b/level_0/f_utf/tests/unit/c/test-utf-is_alphabetic_numeric.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the function in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-is_combining.h b/level_0/f_utf/tests/unit/c/test-utf-is_combining.h index 2be083087..ab38967a3 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-is_combining.h +++ b/level_0/f_utf/tests/unit/c/test-utf-is_combining.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the function in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-is_control.h b/level_0/f_utf/tests/unit/c/test-utf-is_control.h index 074784c93..e913fe900 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-is_control.h +++ b/level_0/f_utf/tests/unit/c/test-utf-is_control.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the function in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-is_digit.h b/level_0/f_utf/tests/unit/c/test-utf-is_digit.h index bf0ed2676..b1393418e 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-is_digit.h +++ b/level_0/f_utf/tests/unit/c/test-utf-is_digit.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the function in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-is_emoji.h b/level_0/f_utf/tests/unit/c/test-utf-is_emoji.h index fb32df2dd..a61ceb6f9 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-is_emoji.h +++ b/level_0/f_utf/tests/unit/c/test-utf-is_emoji.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the function in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-is_numeric.h b/level_0/f_utf/tests/unit/c/test-utf-is_numeric.h index 57e91a6ad..89fb2134e 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-is_numeric.h +++ b/level_0/f_utf/tests/unit/c/test-utf-is_numeric.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the function in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-is_phonetic.h b/level_0/f_utf/tests/unit/c/test-utf-is_phonetic.h index 27ede546e..552020b73 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-is_phonetic.h +++ b/level_0/f_utf/tests/unit/c/test-utf-is_phonetic.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the function in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-is_private.h b/level_0/f_utf/tests/unit/c/test-utf-is_private.h index 74ca6e160..29f425538 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-is_private.h +++ b/level_0/f_utf/tests/unit/c/test-utf-is_private.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the function in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-is_punctuation.h b/level_0/f_utf/tests/unit/c/test-utf-is_punctuation.h index 3d67391d8..118eb7edd 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-is_punctuation.h +++ b/level_0/f_utf/tests/unit/c/test-utf-is_punctuation.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the function in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-is_subscript.h b/level_0/f_utf/tests/unit/c/test-utf-is_subscript.h index bd961dd25..9edc38fa3 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-is_subscript.h +++ b/level_0/f_utf/tests/unit/c/test-utf-is_subscript.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the function in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-is_superscript.h b/level_0/f_utf/tests/unit/c/test-utf-is_superscript.h index a245733fd..487dc6a02 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-is_superscript.h +++ b/level_0/f_utf/tests/unit/c/test-utf-is_superscript.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the function in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-is_symbol.h b/level_0/f_utf/tests/unit/c/test-utf-is_symbol.h index be8323155..77e8e807c 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-is_symbol.h +++ b/level_0/f_utf/tests/unit/c/test-utf-is_symbol.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the function in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-is_valid.h b/level_0/f_utf/tests/unit/c/test-utf-is_valid.h index 7ba1c79a7..610b0239a 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-is_valid.h +++ b/level_0/f_utf/tests/unit/c/test-utf-is_valid.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the function in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-is_whitespace.h b/level_0/f_utf/tests/unit/c/test-utf-is_whitespace.h index f09b4ffab..deb295ec7 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-is_whitespace.h +++ b/level_0/f_utf/tests/unit/c/test-utf-is_whitespace.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the function in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-is_whitespace_modifier.h b/level_0/f_utf/tests/unit/c/test-utf-is_whitespace_modifier.h index 8dded971c..643dded62 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-is_whitespace_modifier.h +++ b/level_0/f_utf/tests/unit/c/test-utf-is_whitespace_modifier.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the function in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-is_whitespace_other.h b/level_0/f_utf/tests/unit/c/test-utf-is_whitespace_other.h index 263255233..19e2a3e67 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-is_whitespace_other.h +++ b/level_0/f_utf/tests/unit/c/test-utf-is_whitespace_other.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the function in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-is_whitespace_zero_width.h b/level_0/f_utf/tests/unit/c/test-utf-is_whitespace_zero_width.h index 0538b12d2..1a7c560ae 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-is_whitespace_zero_width.h +++ b/level_0/f_utf/tests/unit/c/test-utf-is_whitespace_zero_width.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the function in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-is_wide.h b/level_0/f_utf/tests/unit/c/test-utf-is_wide.h index 40f7225a0..11828a864 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-is_wide.h +++ b/level_0/f_utf/tests/unit/c/test-utf-is_wide.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the function in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-is_word.h b/level_0/f_utf/tests/unit/c/test-utf-is_word.h index 772c84762..0dc208576 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-is_word.h +++ b/level_0/f_utf/tests/unit/c/test-utf-is_word.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the function in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-is_word_dash.h b/level_0/f_utf/tests/unit/c/test-utf-is_word_dash.h index 57e7e4bd5..952410f89 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-is_word_dash.h +++ b/level_0/f_utf/tests/unit/c/test-utf-is_word_dash.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the function in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-is_word_dash_plus.h b/level_0/f_utf/tests/unit/c/test-utf-is_word_dash_plus.h index 0a96a298e..d4a9568de 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-is_word_dash_plus.h +++ b/level_0/f_utf/tests/unit/c/test-utf-is_word_dash_plus.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the function in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-is_zero_width.h b/level_0/f_utf/tests/unit/c/test-utf-is_zero_width.h index ca5985b33..90db65065 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-is_zero_width.h +++ b/level_0/f_utf/tests/unit/c/test-utf-is_zero_width.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the function in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-map_multis_adjust.h b/level_0/f_utf/tests/unit/c/test-utf-map_multis_adjust.h index 17f836643..f33867efd 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-map_multis_adjust.h +++ b/level_0/f_utf/tests/unit/c/test-utf-map_multis_adjust.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the data types in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-map_multis_append.h b/level_0/f_utf/tests/unit/c/test-utf-map_multis_append.h index 8a035d30e..500ac5a43 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-map_multis_append.h +++ b/level_0/f_utf/tests/unit/c/test-utf-map_multis_append.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the data types in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-map_multis_append_all.h b/level_0/f_utf/tests/unit/c/test-utf-map_multis_append_all.h index 2bd11c978..2a49f1a51 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-map_multis_append_all.h +++ b/level_0/f_utf/tests/unit/c/test-utf-map_multis_append_all.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the data types in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-map_multis_decimate_by.h b/level_0/f_utf/tests/unit/c/test-utf-map_multis_decimate_by.h index 63d6248a8..ec895638a 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-map_multis_decimate_by.h +++ b/level_0/f_utf/tests/unit/c/test-utf-map_multis_decimate_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the data types in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-map_multis_decrease_by.h b/level_0/f_utf/tests/unit/c/test-utf-map_multis_decrease_by.h index a66e78bd1..8a1c80d80 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-map_multis_decrease_by.h +++ b/level_0/f_utf/tests/unit/c/test-utf-map_multis_decrease_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the data types in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-map_multis_increase.h b/level_0/f_utf/tests/unit/c/test-utf-map_multis_increase.h index b86a88963..37c87d094 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-map_multis_increase.h +++ b/level_0/f_utf/tests/unit/c/test-utf-map_multis_increase.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the data types in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-map_multis_increase_by.h b/level_0/f_utf/tests/unit/c/test-utf-map_multis_increase_by.h index 5181c985a..4f50ba273 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-map_multis_increase_by.h +++ b/level_0/f_utf/tests/unit/c/test-utf-map_multis_increase_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the data types in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-map_multis_resize.h b/level_0/f_utf/tests/unit/c/test-utf-map_multis_resize.h index c47d0d090..6f7be0dbe 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-map_multis_resize.h +++ b/level_0/f_utf/tests/unit/c/test-utf-map_multis_resize.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the data types in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-map_multiss_adjust.h b/level_0/f_utf/tests/unit/c/test-utf-map_multiss_adjust.h index 4f8c301e1..76637a467 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-map_multiss_adjust.h +++ b/level_0/f_utf/tests/unit/c/test-utf-map_multiss_adjust.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the data types in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-map_multiss_append.h b/level_0/f_utf/tests/unit/c/test-utf-map_multiss_append.h index ad56f797a..2dfd21f5c 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-map_multiss_append.h +++ b/level_0/f_utf/tests/unit/c/test-utf-map_multiss_append.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the data types in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-map_multiss_append_all.h b/level_0/f_utf/tests/unit/c/test-utf-map_multiss_append_all.h index 55499afdb..5f8288647 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-map_multiss_append_all.h +++ b/level_0/f_utf/tests/unit/c/test-utf-map_multiss_append_all.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the data types in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-map_multiss_decimate_by.h b/level_0/f_utf/tests/unit/c/test-utf-map_multiss_decimate_by.h index 7e45ce1c4..7ae5757de 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-map_multiss_decimate_by.h +++ b/level_0/f_utf/tests/unit/c/test-utf-map_multiss_decimate_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the data types in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-map_multiss_decrease_by.h b/level_0/f_utf/tests/unit/c/test-utf-map_multiss_decrease_by.h index b16c22c25..ccb0fec7d 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-map_multiss_decrease_by.h +++ b/level_0/f_utf/tests/unit/c/test-utf-map_multiss_decrease_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the data types in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-map_multiss_increase.h b/level_0/f_utf/tests/unit/c/test-utf-map_multiss_increase.h index 16c43ae57..aa8b0b2e7 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-map_multiss_increase.h +++ b/level_0/f_utf/tests/unit/c/test-utf-map_multiss_increase.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the data types in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-map_multiss_increase_by.h b/level_0/f_utf/tests/unit/c/test-utf-map_multiss_increase_by.h index 699b00c5c..515b503f7 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-map_multiss_increase_by.h +++ b/level_0/f_utf/tests/unit/c/test-utf-map_multiss_increase_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the data types in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-map_multiss_resize.h b/level_0/f_utf/tests/unit/c/test-utf-map_multiss_resize.h index 71f0ee68b..1df14efdf 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-map_multiss_resize.h +++ b/level_0/f_utf/tests/unit/c/test-utf-map_multiss_resize.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the data types in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-maps_adjust.h b/level_0/f_utf/tests/unit/c/test-utf-maps_adjust.h index 3134bc455..fdaf3ad31 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-maps_adjust.h +++ b/level_0/f_utf/tests/unit/c/test-utf-maps_adjust.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the data types in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-maps_append.h b/level_0/f_utf/tests/unit/c/test-utf-maps_append.h index 43574bfad..a5e1adf91 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-maps_append.h +++ b/level_0/f_utf/tests/unit/c/test-utf-maps_append.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the data types in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-maps_append_all.h b/level_0/f_utf/tests/unit/c/test-utf-maps_append_all.h index 626039084..804784d9e 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-maps_append_all.h +++ b/level_0/f_utf/tests/unit/c/test-utf-maps_append_all.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the data types in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-maps_decimate_by.h b/level_0/f_utf/tests/unit/c/test-utf-maps_decimate_by.h index 4074a84ce..5c2aadae3 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-maps_decimate_by.h +++ b/level_0/f_utf/tests/unit/c/test-utf-maps_decimate_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the data types in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-maps_decrease_by.h b/level_0/f_utf/tests/unit/c/test-utf-maps_decrease_by.h index 3b50c7583..da6fe7f61 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-maps_decrease_by.h +++ b/level_0/f_utf/tests/unit/c/test-utf-maps_decrease_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the data types in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-maps_increase.h b/level_0/f_utf/tests/unit/c/test-utf-maps_increase.h index 413efe311..6aeac9613 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-maps_increase.h +++ b/level_0/f_utf/tests/unit/c/test-utf-maps_increase.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the data types in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-maps_increase_by.h b/level_0/f_utf/tests/unit/c/test-utf-maps_increase_by.h index 419319790..8a35105f3 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-maps_increase_by.h +++ b/level_0/f_utf/tests/unit/c/test-utf-maps_increase_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the data types in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-maps_resize.h b/level_0/f_utf/tests/unit/c/test-utf-maps_resize.h index 98ffcc65d..bff0f8b34 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-maps_resize.h +++ b/level_0/f_utf/tests/unit/c/test-utf-maps_resize.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the data types in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-mapss_adjust.h b/level_0/f_utf/tests/unit/c/test-utf-mapss_adjust.h index 2a4101322..7e12c8ea8 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-mapss_adjust.h +++ b/level_0/f_utf/tests/unit/c/test-utf-mapss_adjust.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the data types in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-mapss_append.h b/level_0/f_utf/tests/unit/c/test-utf-mapss_append.h index 9b88cbbb2..bf38a88b9 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-mapss_append.h +++ b/level_0/f_utf/tests/unit/c/test-utf-mapss_append.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the data types in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-mapss_append_all.h b/level_0/f_utf/tests/unit/c/test-utf-mapss_append_all.h index e585888f6..f02aa1c63 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-mapss_append_all.h +++ b/level_0/f_utf/tests/unit/c/test-utf-mapss_append_all.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the data types in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-mapss_decimate_by.h b/level_0/f_utf/tests/unit/c/test-utf-mapss_decimate_by.h index ed765d790..307faeb2f 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-mapss_decimate_by.h +++ b/level_0/f_utf/tests/unit/c/test-utf-mapss_decimate_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the data types in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-mapss_decrease_by.h b/level_0/f_utf/tests/unit/c/test-utf-mapss_decrease_by.h index 5e59ac3a0..4247774fd 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-mapss_decrease_by.h +++ b/level_0/f_utf/tests/unit/c/test-utf-mapss_decrease_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the data types in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-mapss_increase.h b/level_0/f_utf/tests/unit/c/test-utf-mapss_increase.h index c965881bd..fb5e8fb0b 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-mapss_increase.h +++ b/level_0/f_utf/tests/unit/c/test-utf-mapss_increase.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the data types in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-mapss_increase_by.h b/level_0/f_utf/tests/unit/c/test-utf-mapss_increase_by.h index ab8b367ff..34a7a1a28 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-mapss_increase_by.h +++ b/level_0/f_utf/tests/unit/c/test-utf-mapss_increase_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the data types in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-mapss_resize.h b/level_0/f_utf/tests/unit/c/test-utf-mapss_resize.h index 5406dc884..2bf34f373 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-mapss_resize.h +++ b/level_0/f_utf/tests/unit/c/test-utf-mapss_resize.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the data types in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-mash.h b/level_0/f_utf/tests/unit/c/test-utf-mash.h index 24bc9a90d..a0765d020 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-mash.h +++ b/level_0/f_utf/tests/unit/c/test-utf-mash.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the data types in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-mash_nulless.h b/level_0/f_utf/tests/unit/c/test-utf-mash_nulless.h index f63bfd208..ec2205109 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-mash_nulless.h +++ b/level_0/f_utf/tests/unit/c/test-utf-mash_nulless.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the data types in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-mish.h b/level_0/f_utf/tests/unit/c/test-utf-mish.h index fa468fabd..4df2112b0 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-mish.h +++ b/level_0/f_utf/tests/unit/c/test-utf-mish.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the data types in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-mish_nulless.h b/level_0/f_utf/tests/unit/c/test-utf-mish_nulless.h index 8c440e0a4..7c8e8a5db 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-mish_nulless.h +++ b/level_0/f_utf/tests/unit/c/test-utf-mish_nulless.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the data types in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-prepend.h b/level_0/f_utf/tests/unit/c/test-utf-prepend.h index f13ad2600..b8d20424b 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-prepend.h +++ b/level_0/f_utf/tests/unit/c/test-utf-prepend.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the data types in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-prepend_assure.h b/level_0/f_utf/tests/unit/c/test-utf-prepend_assure.h index 9a544350d..12c2c6c37 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-prepend_assure.h +++ b/level_0/f_utf/tests/unit/c/test-utf-prepend_assure.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the data types in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-prepend_assure_nulless.h b/level_0/f_utf/tests/unit/c/test-utf-prepend_assure_nulless.h index 3e25a6c7e..cec79f4c5 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-prepend_assure_nulless.h +++ b/level_0/f_utf/tests/unit/c/test-utf-prepend_assure_nulless.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the data types in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-prepend_nulless.h b/level_0/f_utf/tests/unit/c/test-utf-prepend_nulless.h index 05c7d10f0..9349d32f2 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-prepend_nulless.h +++ b/level_0/f_utf/tests/unit/c/test-utf-prepend_nulless.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the data types in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-seek_line.h b/level_0/f_utf/tests/unit/c/test-utf-seek_line.h index 879fae2fc..ba274b1da 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-seek_line.h +++ b/level_0/f_utf/tests/unit/c/test-utf-seek_line.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the data types in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-seek_line_to.h b/level_0/f_utf/tests/unit/c/test-utf-seek_line_to.h index 03b16f5a5..734df8da8 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-seek_line_to.h +++ b/level_0/f_utf/tests/unit/c/test-utf-seek_line_to.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the data types in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-seek_to.h b/level_0/f_utf/tests/unit/c/test-utf-seek_to.h index 0a2302f3e..cedfa7bac 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-seek_to.h +++ b/level_0/f_utf/tests/unit/c/test-utf-seek_to.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the data types in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-triples_adjust.h b/level_0/f_utf/tests/unit/c/test-utf-triples_adjust.h index 492ff0a5a..a3245d102 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-triples_adjust.h +++ b/level_0/f_utf/tests/unit/c/test-utf-triples_adjust.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the data types in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-triples_append.h b/level_0/f_utf/tests/unit/c/test-utf-triples_append.h index bbdc849a7..4180bdd05 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-triples_append.h +++ b/level_0/f_utf/tests/unit/c/test-utf-triples_append.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the data types in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-triples_append_all.h b/level_0/f_utf/tests/unit/c/test-utf-triples_append_all.h index 2828d3a60..11ef1e46d 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-triples_append_all.h +++ b/level_0/f_utf/tests/unit/c/test-utf-triples_append_all.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the data types in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-triples_decimate_by.h b/level_0/f_utf/tests/unit/c/test-utf-triples_decimate_by.h index 7d404b5b5..27cc2225f 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-triples_decimate_by.h +++ b/level_0/f_utf/tests/unit/c/test-utf-triples_decimate_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the data types in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-triples_decrease_by.h b/level_0/f_utf/tests/unit/c/test-utf-triples_decrease_by.h index c6165f61d..df42dfb7f 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-triples_decrease_by.h +++ b/level_0/f_utf/tests/unit/c/test-utf-triples_decrease_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the data types in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-triples_increase.h b/level_0/f_utf/tests/unit/c/test-utf-triples_increase.h index 5b2215aab..937d48f03 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-triples_increase.h +++ b/level_0/f_utf/tests/unit/c/test-utf-triples_increase.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the data types in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-triples_increase_by.h b/level_0/f_utf/tests/unit/c/test-utf-triples_increase_by.h index 9ae1a8133..a9f241b7f 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-triples_increase_by.h +++ b/level_0/f_utf/tests/unit/c/test-utf-triples_increase_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the data types in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-triples_resize.h b/level_0/f_utf/tests/unit/c/test-utf-triples_resize.h index 8c15f70bb..632af7ca9 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-triples_resize.h +++ b/level_0/f_utf/tests/unit/c/test-utf-triples_resize.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the data types in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-tripless_adjust.h b/level_0/f_utf/tests/unit/c/test-utf-tripless_adjust.h index 9fc2be3b5..d9ed50078 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-tripless_adjust.h +++ b/level_0/f_utf/tests/unit/c/test-utf-tripless_adjust.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the data types in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-tripless_append.h b/level_0/f_utf/tests/unit/c/test-utf-tripless_append.h index 7ea116873..7360040dc 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-tripless_append.h +++ b/level_0/f_utf/tests/unit/c/test-utf-tripless_append.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the data types in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-tripless_append_all.h b/level_0/f_utf/tests/unit/c/test-utf-tripless_append_all.h index 815764b7d..f63192cbd 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-tripless_append_all.h +++ b/level_0/f_utf/tests/unit/c/test-utf-tripless_append_all.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the data types in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-tripless_decimate_by.h b/level_0/f_utf/tests/unit/c/test-utf-tripless_decimate_by.h index de2142b26..4bd26db21 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-tripless_decimate_by.h +++ b/level_0/f_utf/tests/unit/c/test-utf-tripless_decimate_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the data types in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-tripless_decrease_by.h b/level_0/f_utf/tests/unit/c/test-utf-tripless_decrease_by.h index 0fd6328cc..2fae35a5a 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-tripless_decrease_by.h +++ b/level_0/f_utf/tests/unit/c/test-utf-tripless_decrease_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the data types in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-tripless_increase.h b/level_0/f_utf/tests/unit/c/test-utf-tripless_increase.h index e3ee53cc6..5ef208d64 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-tripless_increase.h +++ b/level_0/f_utf/tests/unit/c/test-utf-tripless_increase.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the data types in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-tripless_increase_by.h b/level_0/f_utf/tests/unit/c/test-utf-tripless_increase_by.h index 9f772e171..946aaf9ad 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-tripless_increase_by.h +++ b/level_0/f_utf/tests/unit/c/test-utf-tripless_increase_by.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the data types in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf-tripless_resize.h b/level_0/f_utf/tests/unit/c/test-utf-tripless_resize.h index 663344d7c..11f726bd9 100644 --- a/level_0/f_utf/tests/unit/c/test-utf-tripless_resize.h +++ b/level_0/f_utf/tests/unit/c/test-utf-tripless_resize.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the data types in the utf project. diff --git a/level_0/f_utf/tests/unit/c/test-utf.h b/level_0/f_utf/tests/unit/c/test-utf.h index 21c20903e..717b92be5 100644 --- a/level_0/f_utf/tests/unit/c/test-utf.h +++ b/level_0/f_utf/tests/unit/c/test-utf.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: UTF - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the utf project. diff --git a/level_1/fl_control_group/c/control_group.h b/level_1/fl_control_group/c/control_group.h index 8569ed214..9e6409e24 100644 --- a/level_1/fl_control_group/c/control_group.h +++ b/level_1/fl_control_group/c/control_group.h @@ -2,7 +2,7 @@ * FLL - Level 1 * * Project: Control Group - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Provides control group (cgroup) related functionality. diff --git a/level_1/fl_conversion/c/conversion.h b/level_1/fl_conversion/c/conversion.h index ce84c3f80..c5ca37284 100644 --- a/level_1/fl_conversion/c/conversion.h +++ b/level_1/fl_conversion/c/conversion.h @@ -2,7 +2,7 @@ * FLL - Level 0 * * Project: Conversion - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Provide means to convert one data type to another, such as a string to an integer. diff --git a/level_1/fl_conversion/c/conversion/common.h b/level_1/fl_conversion/c/conversion/common.h index 1f661f1f6..b19d6da40 100644 --- a/level_1/fl_conversion/c/conversion/common.h +++ b/level_1/fl_conversion/c/conversion/common.h @@ -2,7 +2,7 @@ * FLL - Level 1 * * Project: Conversion - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Defines common data to be used for/by project conversion. diff --git a/level_1/fl_conversion/c/private-conversion.h b/level_1/fl_conversion/c/private-conversion.h index d29eeb793..856c8f3ec 100644 --- a/level_1/fl_conversion/c/private-conversion.h +++ b/level_1/fl_conversion/c/private-conversion.h @@ -2,7 +2,7 @@ * FLL - Level 1 * * Project: Conversion - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * These are provided for internal reduction in redundant code. diff --git a/level_1/fl_directory/c/directory.h b/level_1/fl_directory/c/directory.h index 4c4b98bd8..3d846fa4d 100644 --- a/level_1/fl_directory/c/directory.h +++ b/level_1/fl_directory/c/directory.h @@ -2,7 +2,7 @@ * FLL - Level 1 * * Project: Directory - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Provides operations for directory handling. diff --git a/level_1/fl_directory/c/directory/common.h b/level_1/fl_directory/c/directory/common.h index 40795894f..5b0dac646 100644 --- a/level_1/fl_directory/c/directory/common.h +++ b/level_1/fl_directory/c/directory/common.h @@ -2,7 +2,7 @@ * FLL - Level 1 * * Project: Directory - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Defines common data to be used for/by project directory. diff --git a/level_1/fl_directory/c/private-directory.h b/level_1/fl_directory/c/private-directory.h index 3c62e148c..c93e9db97 100644 --- a/level_1/fl_directory/c/private-directory.h +++ b/level_1/fl_directory/c/private-directory.h @@ -2,7 +2,7 @@ * FLL - Level 1 * * Project: Directory - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Provides operations for directory handling. diff --git a/level_1/fl_environment/c/environment.h b/level_1/fl_environment/c/environment.h index 532b18b71..95325dcfe 100644 --- a/level_1/fl_environment/c/environment.h +++ b/level_1/fl_environment/c/environment.h @@ -2,7 +2,7 @@ * FLL - Level 1 * * Project: Environment - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Provides environment processing functionality, such as environment variable handling. diff --git a/level_1/fl_execute/c/execute.h b/level_1/fl_execute/c/execute.h index 44464047b..54b69a459 100644 --- a/level_1/fl_execute/c/execute.h +++ b/level_1/fl_execute/c/execute.h @@ -2,7 +2,7 @@ * FLL - Level 1 * * Project: Execute - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Provides execute processing functionality. diff --git a/level_1/fl_execute/c/execute/common.h b/level_1/fl_execute/c/execute/common.h index 609141230..7e40dc5cd 100644 --- a/level_1/fl_execute/c/execute/common.h +++ b/level_1/fl_execute/c/execute/common.h @@ -2,7 +2,7 @@ * FLL - Level 1 * * Project: Execute - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Defines common data to be used for/by project execute. diff --git a/level_1/fl_fss/c/fss.h b/level_1/fl_fss/c/fss.h index 95b6f437f..974dba477 100644 --- a/level_1/fl_fss/c/fss.h +++ b/level_1/fl_fss/c/fss.h @@ -2,7 +2,7 @@ * FLL - Level 1 * * Project: FSS - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later */ #ifndef _FL_fss_h diff --git a/level_1/fl_fss/c/fss/basic.h b/level_1/fl_fss/c/fss/basic.h index b729a784a..7105da976 100644 --- a/level_1/fl_fss/c/fss/basic.h +++ b/level_1/fl_fss/c/fss/basic.h @@ -2,7 +2,7 @@ * FLL - Level 1 * * Project: FSS - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * This is the fss-0000 implementation. diff --git a/level_1/fl_fss/c/fss/basic_list.h b/level_1/fl_fss/c/fss/basic_list.h index e6288f646..c5994f2ce 100644 --- a/level_1/fl_fss/c/fss/basic_list.h +++ b/level_1/fl_fss/c/fss/basic_list.h @@ -2,7 +2,7 @@ * FLL - Level 1 * * Project: FSS - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * This is the fss-0002 implementation. diff --git a/level_1/fl_fss/c/fss/embedded_list.h b/level_1/fl_fss/c/fss/embedded_list.h index 27d6cfd11..183349c4f 100644 --- a/level_1/fl_fss/c/fss/embedded_list.h +++ b/level_1/fl_fss/c/fss/embedded_list.h @@ -2,7 +2,7 @@ * FLL - Level 1 * * Project: FSS - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * This is the fss-0008 implementation. diff --git a/level_1/fl_fss/c/fss/extended.h b/level_1/fl_fss/c/fss/extended.h index 88b8651ac..b5ce70bb2 100644 --- a/level_1/fl_fss/c/fss/extended.h +++ b/level_1/fl_fss/c/fss/extended.h @@ -2,7 +2,7 @@ * FLL - Level 1 * * Project: FSS - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * This is the fss-0001 implementation. diff --git a/level_1/fl_fss/c/fss/extended_list.h b/level_1/fl_fss/c/fss/extended_list.h index 11ef37426..fa92e3e38 100644 --- a/level_1/fl_fss/c/fss/extended_list.h +++ b/level_1/fl_fss/c/fss/extended_list.h @@ -2,7 +2,7 @@ * FLL - Level 1 * * Project: FSS - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * This is the fss-0003 implementation. diff --git a/level_1/fl_fss/c/fss/macro.h b/level_1/fl_fss/c/fss/macro.h index 72ef571df..40a275c20 100644 --- a/level_1/fl_fss/c/fss/macro.h +++ b/level_1/fl_fss/c/fss/macro.h @@ -2,7 +2,7 @@ * FLL - Level 1 * * Project: FSS - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Provides generic functionality shared between and used by different fss processing functions. diff --git a/level_1/fl_fss/c/private-fss.h b/level_1/fl_fss/c/private-fss.h index b9e7a592c..203c053f9 100644 --- a/level_1/fl_fss/c/private-fss.h +++ b/level_1/fl_fss/c/private-fss.h @@ -2,7 +2,7 @@ * FLL - Level 1 * * Project: FSS - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * These are provided for internal reduction in redundant code. diff --git a/level_1/fl_iki/c/iki.h b/level_1/fl_iki/c/iki.h index c3ed06311..cfae53bb6 100644 --- a/level_1/fl_iki/c/iki.h +++ b/level_1/fl_iki/c/iki.h @@ -2,7 +2,7 @@ * FLL - Level 1 * * Project: IKI - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Provides a Wiki-Like syntax meant to be much simpler. diff --git a/level_1/fl_print/c/print.h b/level_1/fl_print/c/print.h index a09b58891..5f9faf898 100644 --- a/level_1/fl_print/c/print.h +++ b/level_1/fl_print/c/print.h @@ -2,7 +2,7 @@ * FLL - Level 1 * * Project: Print - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Provides some standard printing functions not available in a libc. diff --git a/level_1/fl_print/c/print/common.h b/level_1/fl_print/c/print/common.h index 15cecbadd..f10eab28c 100644 --- a/level_1/fl_print/c/print/common.h +++ b/level_1/fl_print/c/print/common.h @@ -2,7 +2,7 @@ * FLL - Level 1 * * Project: Print - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Defines common data to be used for/by project print. diff --git a/level_1/fl_print/c/private-print.h b/level_1/fl_print/c/private-print.h index 142c58c64..c419ae06a 100644 --- a/level_1/fl_print/c/private-print.h +++ b/level_1/fl_print/c/private-print.h @@ -2,7 +2,7 @@ * FLL - Level 1 * * Project: Print - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * These are provided for internal reduction in redundant code. diff --git a/level_1/fl_signal/c/signal.h b/level_1/fl_signal/c/signal.h index a906eb64c..6ffbee5b0 100644 --- a/level_1/fl_signal/c/signal.h +++ b/level_1/fl_signal/c/signal.h @@ -2,7 +2,7 @@ * FLL - Level 1 * * Project: Signal - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Provides common signal functions. diff --git a/level_1/fl_signal/c/signal/common.h b/level_1/fl_signal/c/signal/common.h index 9880e3cec..12fa63ba7 100644 --- a/level_1/fl_signal/c/signal/common.h +++ b/level_1/fl_signal/c/signal/common.h @@ -2,7 +2,7 @@ * FLL - Level 1 * * Project: Signal - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Defines common data to be used for/by project execute. diff --git a/level_1/fl_string/c/private-string.h b/level_1/fl_string/c/private-string.h index c31f77fb0..e5ab2e0de 100644 --- a/level_1/fl_string/c/private-string.h +++ b/level_1/fl_string/c/private-string.h @@ -2,7 +2,7 @@ * FLL - Level 1 * * Project: String - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * These are provided for internal reduction in redundant code. diff --git a/level_1/fl_string/c/string.h b/level_1/fl_string/c/string.h index 5d41ad1e3..79732cffe 100644 --- a/level_1/fl_string/c/string.h +++ b/level_1/fl_string/c/string.h @@ -2,7 +2,7 @@ * FLL - Level 1 * * Project: String - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Provides basic string manipulation and processing capabilities. diff --git a/level_1/fl_utf/c/private-utf.h b/level_1/fl_utf/c/private-utf.h index ea7fbe7a2..93d7a871b 100644 --- a/level_1/fl_utf/c/private-utf.h +++ b/level_1/fl_utf/c/private-utf.h @@ -2,7 +2,7 @@ * FLL - Level 1 * * Project: Utf - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * These are provided for internal reduction in redundant code. diff --git a/level_1/fl_utf/c/utf.h b/level_1/fl_utf/c/utf.h index 6b1d69e0c..816b03fb1 100644 --- a/level_1/fl_utf/c/utf.h +++ b/level_1/fl_utf/c/utf.h @@ -2,7 +2,7 @@ * FLL - Level 1 * * Project: Utf - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Provides UTF-8 character manipulation and processing capabilities. diff --git a/level_1/fl_utf_file/c/private-utf_file.h b/level_1/fl_utf_file/c/private-utf_file.h index 8eab86e57..e99fd5287 100644 --- a/level_1/fl_utf_file/c/private-utf_file.h +++ b/level_1/fl_utf_file/c/private-utf_file.h @@ -2,7 +2,7 @@ * FLL - Level 1 * * Project: Utf File - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * UTF-8 File Operations. diff --git a/level_1/fl_utf_file/c/utf_file.h b/level_1/fl_utf_file/c/utf_file.h index 7ab342abf..c2b3d84e2 100644 --- a/level_1/fl_utf_file/c/utf_file.h +++ b/level_1/fl_utf_file/c/utf_file.h @@ -2,7 +2,7 @@ * FLL - Level 1 * * Project: Utf File - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * UTF-8 File I/O Operations. diff --git a/level_2/fll_control_group/c/control_group.h b/level_2/fll_control_group/c/control_group.h index b72f1e6ed..0e4ea10e7 100644 --- a/level_2/fll_control_group/c/control_group.h +++ b/level_2/fll_control_group/c/control_group.h @@ -2,7 +2,7 @@ * FLL - Level 2 * * Project: Control Group - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Provides control group (cgroup) related functionality. diff --git a/level_2/fll_error/c/error.h b/level_2/fll_error/c/error.h index 7fd2b7270..46021fc6c 100644 --- a/level_2/fll_error/c/error.h +++ b/level_2/fll_error/c/error.h @@ -2,7 +2,7 @@ * FLL - Level 2 * * Project: Error - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Provide functions commonly used by FLL based programs. diff --git a/level_2/fll_error/c/error/common.h b/level_2/fll_error/c/error/common.h index 5913dd7b1..c9eb26c25 100644 --- a/level_2/fll_error/c/error/common.h +++ b/level_2/fll_error/c/error/common.h @@ -2,7 +2,7 @@ * FLL - Level 2 * * Project: Error - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Defines common data to be used for/by project error. diff --git a/level_2/fll_error/c/private-error.h b/level_2/fll_error/c/private-error.h index 05991551b..143e02006 100644 --- a/level_2/fll_error/c/private-error.h +++ b/level_2/fll_error/c/private-error.h @@ -2,7 +2,7 @@ * FLL - Level 2 * * Project: Error - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * These are provided for internal reduction in redundant code. diff --git a/level_2/fll_execute/c/execute.h b/level_2/fll_execute/c/execute.h index 0fb052f4c..3c31f9c7a 100644 --- a/level_2/fll_execute/c/execute.h +++ b/level_2/fll_execute/c/execute.h @@ -2,7 +2,7 @@ * FLL - Level 2 * * Project: Execute - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Provides program execution operations similar to system(). diff --git a/level_2/fll_execute/c/private-execute.h b/level_2/fll_execute/c/private-execute.h index 0f5a8a6a9..5f8215065 100644 --- a/level_2/fll_execute/c/private-execute.h +++ b/level_2/fll_execute/c/private-execute.h @@ -2,7 +2,7 @@ * FLL - Level 2 * * Project: Execute - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * These are provided for internal reduction in redundant code. diff --git a/level_2/fll_file/c/file.h b/level_2/fll_file/c/file.h index b23060811..da7f72379 100644 --- a/level_2/fll_file/c/file.h +++ b/level_2/fll_file/c/file.h @@ -2,7 +2,7 @@ * FLL - Level 2 * * Project: File - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Provides file-related functionality. diff --git a/level_2/fll_file/c/private-file.h b/level_2/fll_file/c/private-file.h index 10938af43..901a34cd4 100644 --- a/level_2/fll_file/c/private-file.h +++ b/level_2/fll_file/c/private-file.h @@ -2,7 +2,7 @@ * FLL - Level 2 * * Project: File - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Provides structures and data types for a file I/O. diff --git a/level_2/fll_fss/c/fss.h b/level_2/fll_fss/c/fss.h index 66cd9b6ac..dcf90718a 100644 --- a/level_2/fll_fss/c/fss.h +++ b/level_2/fll_fss/c/fss.h @@ -2,7 +2,7 @@ * FLL - Level 2 * * Project: FSS - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Provide common FSS functions. diff --git a/level_2/fll_fss/c/fss/basic.h b/level_2/fll_fss/c/fss/basic.h index 67ab64947..95e2e2df6 100644 --- a/level_2/fll_fss/c/fss/basic.h +++ b/level_2/fll_fss/c/fss/basic.h @@ -2,7 +2,7 @@ * FLL - Level 2 * * Project: FSS - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * This is the fss-0000 implementation. diff --git a/level_2/fll_fss/c/fss/basic_list.h b/level_2/fll_fss/c/fss/basic_list.h index e17143dbe..cc19b096d 100644 --- a/level_2/fll_fss/c/fss/basic_list.h +++ b/level_2/fll_fss/c/fss/basic_list.h @@ -2,7 +2,7 @@ * FLL - Level 2 * * Project: FSS - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * This is the fss-0002 implementation. diff --git a/level_2/fll_fss/c/fss/embedded_list.h b/level_2/fll_fss/c/fss/embedded_list.h index faf221e42..eeebd5067 100644 --- a/level_2/fll_fss/c/fss/embedded_list.h +++ b/level_2/fll_fss/c/fss/embedded_list.h @@ -2,7 +2,7 @@ * FLL - Level 2 * * Project: FSS - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * This is the fss-0008 implementation. diff --git a/level_2/fll_fss/c/fss/extended.h b/level_2/fll_fss/c/fss/extended.h index f91da6bb6..879b57e70 100644 --- a/level_2/fll_fss/c/fss/extended.h +++ b/level_2/fll_fss/c/fss/extended.h @@ -2,7 +2,7 @@ * FLL - Level 2 * * Project: FSS - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * This is the fss-0001 implementation. diff --git a/level_2/fll_fss/c/fss/extended_list.h b/level_2/fll_fss/c/fss/extended_list.h index b18bb9428..0974b9010 100644 --- a/level_2/fll_fss/c/fss/extended_list.h +++ b/level_2/fll_fss/c/fss/extended_list.h @@ -2,7 +2,7 @@ * FLL - Level 2 * * Project: FSS - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * This is the fss-0003 implementation. diff --git a/level_2/fll_fss/c/fss/payload.h b/level_2/fll_fss/c/fss/payload.h index bdaf15a69..62d0bed46 100644 --- a/level_2/fll_fss/c/fss/payload.h +++ b/level_2/fll_fss/c/fss/payload.h @@ -2,7 +2,7 @@ * FLL - Level 2 * * Project: FSS - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * This is the fss-000e implementation. diff --git a/level_2/fll_fss_status_string/c/fss_status_string.h b/level_2/fll_fss_status_string/c/fss_status_string.h index 4778aac91..661a8c15a 100644 --- a/level_2/fll_fss_status_string/c/fss_status_string.h +++ b/level_2/fll_fss_status_string/c/fss_status_string.h @@ -2,7 +2,7 @@ * FLL - Level 2 * * Project: FSS - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Provides FSS status code functions, such as those that translate status codes into strings. diff --git a/level_2/fll_iki/c/iki.h b/level_2/fll_iki/c/iki.h index 2d77ce0fe..ac8277aca 100644 --- a/level_2/fll_iki/c/iki.h +++ b/level_2/fll_iki/c/iki.h @@ -2,7 +2,7 @@ * FLL - Level 2 * * Project: IKI - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Provides a Wiki-Like syntax meant to be much simpler. diff --git a/level_2/fll_iki/c/private-iki.h b/level_2/fll_iki/c/private-iki.h index 208cf3a8e..becca45a2 100644 --- a/level_2/fll_iki/c/private-iki.h +++ b/level_2/fll_iki/c/private-iki.h @@ -2,7 +2,7 @@ * FLL - Level 2 * * Project: IKI - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * These are provided for internal reduction in redundant code. diff --git a/level_2/fll_path/c/path.h b/level_2/fll_path/c/path.h index 3e7f4aa8f..49da446cd 100644 --- a/level_2/fll_path/c/path.h +++ b/level_2/fll_path/c/path.h @@ -2,7 +2,7 @@ * FLL - Level 2 * * Project: Path - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Provides path-related functionality. diff --git a/level_2/fll_print/c/print.h b/level_2/fll_print/c/print.h index 78199e19c..d827380d8 100644 --- a/level_2/fll_print/c/print.h +++ b/level_2/fll_print/c/print.h @@ -2,7 +2,7 @@ * FLL - Level 2 * * Project: Print - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Provides print-related functionality. diff --git a/level_2/fll_program/c/program.h b/level_2/fll_program/c/program.h index bdea76a7b..5bc7a15f3 100644 --- a/level_2/fll_program/c/program.h +++ b/level_2/fll_program/c/program.h @@ -2,7 +2,7 @@ * FLL - Level 2 * * Project: Program - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Provide functions commonly used by FLL based programs. diff --git a/level_2/fll_program/c/program/common.h b/level_2/fll_program/c/program/common.h index e239c8ce5..b8109e84b 100644 --- a/level_2/fll_program/c/program/common.h +++ b/level_2/fll_program/c/program/common.h @@ -2,7 +2,7 @@ * FLL - Level 2 * * Project: Program - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Defines common data to be used for/by project program. diff --git a/level_2/fll_status_string/c/status_string.h b/level_2/fll_status_string/c/status_string.h index acf210fec..13293d11f 100644 --- a/level_2/fll_status_string/c/status_string.h +++ b/level_2/fll_status_string/c/status_string.h @@ -2,7 +2,7 @@ * FLL - Level 2 * * Project: Status - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Provides status code functions, such as those that translate status codes into strings. diff --git a/level_2/fll_status_string/tests/unit/c/test-status_string-from.h b/level_2/fll_status_string/tests/unit/c/test-status_string-from.h index 6ab66e24b..f071e85e3 100644 --- a/level_2/fll_status_string/tests/unit/c/test-status_string-from.h +++ b/level_2/fll_status_string/tests/unit/c/test-status_string-from.h @@ -2,7 +2,7 @@ * FLL - Level 2 * * Project: Status - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the status_string project. diff --git a/level_2/fll_status_string/tests/unit/c/test-status_string.h b/level_2/fll_status_string/tests/unit/c/test-status_string.h index 5a6d342f7..a46716d38 100644 --- a/level_2/fll_status_string/tests/unit/c/test-status_string.h +++ b/level_2/fll_status_string/tests/unit/c/test-status_string.h @@ -2,7 +2,7 @@ * FLL - Level 2 * * Project: Status - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Test the status_string project. diff --git a/level_3/byte_dump/c/byte_dump.h b/level_3/byte_dump/c/byte_dump.h index afd206703..64403f96f 100644 --- a/level_3/byte_dump/c/byte_dump.h +++ b/level_3/byte_dump/c/byte_dump.h @@ -2,7 +2,7 @@ * FLL - Level 3 * * Project: Byte Dump - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * This is intendend to support Unicode 14.0. diff --git a/level_3/byte_dump/c/common.h b/level_3/byte_dump/c/common.h index 2e6e9758d..ba8abf70e 100644 --- a/level_3/byte_dump/c/common.h +++ b/level_3/byte_dump/c/common.h @@ -2,7 +2,7 @@ * FLL - Level 3 * * Project: Byte Dump - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Provides the common data structures. @@ -21,11 +21,11 @@ extern "C" { */ #ifndef _di_byte_dump_program_version_ #define BYTE_DUMP_program_version_major_s F_string_ascii_0_s - #define BYTE_DUMP_program_version_minor_s F_string_ascii_6_s + #define BYTE_DUMP_program_version_minor_s F_string_ascii_7_s #define BYTE_DUMP_program_version_micro_s F_string_ascii_0_s #define BYTE_DUMP_program_version_major_s_length F_string_ascii_0_s_length - #define BYTE_DUMP_program_version_minor_s_length F_string_ascii_6_s_length + #define BYTE_DUMP_program_version_minor_s_length F_string_ascii_7_s_length #define BYTE_DUMP_program_version_micro_s_length F_string_ascii_0_s_length #if !(defined(BYTE_DUMP_program_version_nano_prefix_s) && defined(BYTE_DUMP_program_version_nano_prefix_s_length)) diff --git a/level_3/byte_dump/c/private-byte_dump.h b/level_3/byte_dump/c/private-byte_dump.h index 7edba8fa8..2b9ffa6d9 100644 --- a/level_3/byte_dump/c/private-byte_dump.h +++ b/level_3/byte_dump/c/private-byte_dump.h @@ -2,7 +2,7 @@ * FLL - Level 3 * * Project: Byte Dump - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later */ #ifndef _PRIVATE_byte_dump_h diff --git a/level_3/byte_dump/c/private-common.h b/level_3/byte_dump/c/private-common.h index be38a9b2b..de72becb9 100644 --- a/level_3/byte_dump/c/private-common.h +++ b/level_3/byte_dump/c/private-common.h @@ -2,7 +2,7 @@ * FLL - Level 3 * * Project: Byte Dump - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later */ #ifndef _PRIVATE_common_h diff --git a/level_3/control/c/common.h b/level_3/control/c/common.h index f50c8dd8e..ce5386d10 100644 --- a/level_3/control/c/common.h +++ b/level_3/control/c/common.h @@ -2,7 +2,7 @@ * FLL - Level 3 * * Project: Control - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Provides the common data structures. @@ -21,11 +21,11 @@ extern "C" { */ #ifndef _di_control_program_version_ #define CONTROL_program_version_major_s F_string_ascii_0_s - #define CONTROL_program_version_minor_s F_string_ascii_6_s + #define CONTROL_program_version_minor_s F_string_ascii_7_s #define CONTROL_program_version_micro_s F_string_ascii_0_s #define CONTROL_program_version_major_s_length F_string_ascii_0_s_length - #define CONTROL_program_version_minor_s_length F_string_ascii_6_s_length + #define CONTROL_program_version_minor_s_length F_string_ascii_7_s_length #define CONTROL_program_version_micro_s_length F_string_ascii_0_s_length #if !(defined(CONTROL_program_version_nano_prefix_s) && defined(CONTROL_program_version_nano_prefix_s_length)) diff --git a/level_3/control/c/control.h b/level_3/control/c/control.h index c218b00d1..697122cf2 100644 --- a/level_3/control/c/control.h +++ b/level_3/control/c/control.h @@ -2,7 +2,7 @@ * FLL - Level 3 * * Project: Control - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * This is the Control program. diff --git a/level_3/control/c/private-common.h b/level_3/control/c/private-common.h index d6f831076..7f9fb9999 100644 --- a/level_3/control/c/private-common.h +++ b/level_3/control/c/private-common.h @@ -2,7 +2,7 @@ * FLL - Level 3 * * Project: Control - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later */ #ifndef _PRIVATE_common_h diff --git a/level_3/control/c/private-control.h b/level_3/control/c/private-control.h index 3a0857001..2b42a534b 100644 --- a/level_3/control/c/private-control.h +++ b/level_3/control/c/private-control.h @@ -2,7 +2,7 @@ * FLL - Level 3 * * Project: Control - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later */ #ifndef _PRIVATE_control_h diff --git a/level_3/control/c/private-print.h b/level_3/control/c/private-print.h index 828f105f1..3241e2e46 100644 --- a/level_3/control/c/private-print.h +++ b/level_3/control/c/private-print.h @@ -2,7 +2,7 @@ * FLL - Level 3 * * Project: Control - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later */ #ifndef _PRIVATE_control_print_h diff --git a/level_3/controller/c/common.h b/level_3/controller/c/common.h index 2ea2b85cb..d4d64e610 100644 --- a/level_3/controller/c/common.h +++ b/level_3/controller/c/common.h @@ -2,7 +2,7 @@ * FLL - Level 3 * * Project: Controller - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Provides the common data structures. @@ -21,11 +21,11 @@ extern "C" { */ #ifndef _di_controller_program_version_ #define CONTROLLER_program_version_major_s F_string_ascii_0_s - #define CONTROLLER_program_version_minor_s F_string_ascii_6_s + #define CONTROLLER_program_version_minor_s F_string_ascii_7_s #define CONTROLLER_program_version_micro_s F_string_ascii_0_s #define CONTROLLER_program_version_major_s_length F_string_ascii_0_s_length - #define CONTROLLER_program_version_minor_s_length F_string_ascii_6_s_length + #define CONTROLLER_program_version_minor_s_length F_string_ascii_7_s_length #define CONTROLLER_program_version_micro_s_length F_string_ascii_0_s_length #if !(defined(CONTROLLER_program_version_nano_prefix_s) && defined(CONTROLLER_program_version_nano_prefix_s_length)) diff --git a/level_3/controller/c/common/private-cache.h b/level_3/controller/c/common/private-cache.h index 3c4020b53..c6065e5ec 100644 --- a/level_3/controller/c/common/private-cache.h +++ b/level_3/controller/c/common/private-cache.h @@ -2,7 +2,7 @@ * FLL - Level 3 * * Project: Controller - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later */ #ifndef _PRIVATE_common_cache_h diff --git a/level_3/controller/c/common/private-common.h b/level_3/controller/c/common/private-common.h index 8b68e0488..225fbb9e5 100644 --- a/level_3/controller/c/common/private-common.h +++ b/level_3/controller/c/common/private-common.h @@ -2,7 +2,7 @@ * FLL - Level 3 * * Project: Controller - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later */ #ifndef _PRIVATE_common_h diff --git a/level_3/controller/c/common/private-control.h b/level_3/controller/c/common/private-control.h index 5b5c75b62..367ad3ceb 100644 --- a/level_3/controller/c/common/private-control.h +++ b/level_3/controller/c/common/private-control.h @@ -2,7 +2,7 @@ * FLL - Level 3 * * Project: Controller - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later */ #ifndef _PRIVATE_common_control_h diff --git a/level_3/controller/c/common/private-entry.h b/level_3/controller/c/common/private-entry.h index ddbecc6a9..3c973b7c1 100644 --- a/level_3/controller/c/common/private-entry.h +++ b/level_3/controller/c/common/private-entry.h @@ -2,7 +2,7 @@ * FLL - Level 3 * * Project: Controller - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later */ #ifndef _PRIVATE_common_entry_h diff --git a/level_3/controller/c/common/private-execute_set.h b/level_3/controller/c/common/private-execute_set.h index 11005adb9..cd892a39d 100644 --- a/level_3/controller/c/common/private-execute_set.h +++ b/level_3/controller/c/common/private-execute_set.h @@ -2,7 +2,7 @@ * FLL - Level 3 * * Project: Controller - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later */ #ifndef _PRIVATE_common_execute_set_h diff --git a/level_3/controller/c/common/private-lock.h b/level_3/controller/c/common/private-lock.h index 59e2d88cd..ef1e73bb1 100644 --- a/level_3/controller/c/common/private-lock.h +++ b/level_3/controller/c/common/private-lock.h @@ -2,7 +2,7 @@ * FLL - Level 3 * * Project: Controller - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later */ #ifndef _PRIVATE_common_lock_h diff --git a/level_3/controller/c/common/private-process.h b/level_3/controller/c/common/private-process.h index 7ccdf642a..126196c95 100644 --- a/level_3/controller/c/common/private-process.h +++ b/level_3/controller/c/common/private-process.h @@ -2,7 +2,7 @@ * FLL - Level 3 * * Project: Controller - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later */ #ifndef _PRIVATE_common_process_h diff --git a/level_3/controller/c/common/private-rule.h b/level_3/controller/c/common/private-rule.h index 7492262c4..596982bbd 100644 --- a/level_3/controller/c/common/private-rule.h +++ b/level_3/controller/c/common/private-rule.h @@ -2,7 +2,7 @@ * FLL - Level 3 * * Project: Controller - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later */ #ifndef _PRIVATE_common_rule_h diff --git a/level_3/controller/c/common/private-setting.h b/level_3/controller/c/common/private-setting.h index fdf3f5619..cf373f3df 100644 --- a/level_3/controller/c/common/private-setting.h +++ b/level_3/controller/c/common/private-setting.h @@ -2,7 +2,7 @@ * FLL - Level 3 * * Project: Controller - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later */ #ifndef _PRIVATE_common_setting_h diff --git a/level_3/controller/c/common/private-state.h b/level_3/controller/c/common/private-state.h index 60b94b2cf..eb913c080 100644 --- a/level_3/controller/c/common/private-state.h +++ b/level_3/controller/c/common/private-state.h @@ -2,7 +2,7 @@ * FLL - Level 3 * * Project: Controller - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later */ #ifndef _PRIVATE_common_state_h diff --git a/level_3/controller/c/common/private-thread.h b/level_3/controller/c/common/private-thread.h index 6cb0fe287..8e2141636 100644 --- a/level_3/controller/c/common/private-thread.h +++ b/level_3/controller/c/common/private-thread.h @@ -2,7 +2,7 @@ * FLL - Level 3 * * Project: Controller - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later */ #ifndef _PRIVATE_common_thread_h diff --git a/level_3/controller/c/control/private-control.h b/level_3/controller/c/control/private-control.h index 2c414c638..07fd50028 100644 --- a/level_3/controller/c/control/private-control.h +++ b/level_3/controller/c/control/private-control.h @@ -2,7 +2,7 @@ * FLL - Level 3 * * Project: Controller - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later */ #ifndef _PRIVATE_control_h diff --git a/level_3/controller/c/control/private-control_print.h b/level_3/controller/c/control/private-control_print.h index 4b8b0ca35..72b20c8bc 100644 --- a/level_3/controller/c/control/private-control_print.h +++ b/level_3/controller/c/control/private-control_print.h @@ -2,7 +2,7 @@ * FLL - Level 3 * * Project: Controller - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later */ #ifndef _PRIVATE_control_print_h diff --git a/level_3/controller/c/controller.h b/level_3/controller/c/controller.h index d4bc62a23..a0c020563 100644 --- a/level_3/controller/c/controller.h +++ b/level_3/controller/c/controller.h @@ -2,7 +2,7 @@ * FLL - Level 3 * * Project: Controller - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * This is the Controller program. diff --git a/level_3/controller/c/controller/private-controller.h b/level_3/controller/c/controller/private-controller.h index 755af261c..830cb0e8c 100644 --- a/level_3/controller/c/controller/private-controller.h +++ b/level_3/controller/c/controller/private-controller.h @@ -2,7 +2,7 @@ * FLL - Level 3 * * Project: Controller - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later */ #ifndef _PRIVATE_controller_h diff --git a/level_3/controller/c/controller/private-controller_print.h b/level_3/controller/c/controller/private-controller_print.h index 915133abc..451ac21e4 100644 --- a/level_3/controller/c/controller/private-controller_print.h +++ b/level_3/controller/c/controller/private-controller_print.h @@ -2,7 +2,7 @@ * FLL - Level 3 * * Project: Controller - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later */ #ifndef _PRIVATE_controller_print_h diff --git a/level_3/controller/c/entry/private-entry.h b/level_3/controller/c/entry/private-entry.h index 73576cadb..d9e2c5985 100644 --- a/level_3/controller/c/entry/private-entry.h +++ b/level_3/controller/c/entry/private-entry.h @@ -2,7 +2,7 @@ * FLL - Level 3 * * Project: Controller - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later */ #ifndef _PRIVATE_entry_h diff --git a/level_3/controller/c/entry/private-entry_print.h b/level_3/controller/c/entry/private-entry_print.h index f723a9c21..0679d0477 100644 --- a/level_3/controller/c/entry/private-entry_print.h +++ b/level_3/controller/c/entry/private-entry_print.h @@ -2,7 +2,7 @@ * FLL - Level 3 * * Project: Controller - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later */ #ifndef _PRIVATE_entry_print_h diff --git a/level_3/controller/c/lock/private-lock.h b/level_3/controller/c/lock/private-lock.h index 99abbc51d..6730c4334 100644 --- a/level_3/controller/c/lock/private-lock.h +++ b/level_3/controller/c/lock/private-lock.h @@ -2,7 +2,7 @@ * FLL - Level 3 * * Project: Controller - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later */ #ifndef _PRIVATE_lock_h diff --git a/level_3/controller/c/lock/private-lock_print.h b/level_3/controller/c/lock/private-lock_print.h index 62f135c77..e21d9b1ea 100644 --- a/level_3/controller/c/lock/private-lock_print.h +++ b/level_3/controller/c/lock/private-lock_print.h @@ -2,7 +2,7 @@ * FLL - Level 3 * * Project: Controller - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later */ #ifndef _PRIVATE_lock_print_h diff --git a/level_3/controller/c/main-common.h b/level_3/controller/c/main-common.h index 741a7b126..2fdc80a5d 100644 --- a/level_3/controller/c/main-common.h +++ b/level_3/controller/c/main-common.h @@ -2,7 +2,7 @@ * FLL - Level 3 * * Project: Controller - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Provides the common data structures to be compiled into the main program rather than the library. diff --git a/level_3/controller/c/process/private-process.h b/level_3/controller/c/process/private-process.h index 90b210f70..3a305add2 100644 --- a/level_3/controller/c/process/private-process.h +++ b/level_3/controller/c/process/private-process.h @@ -2,7 +2,7 @@ * FLL - Level 3 * * Project: Controller - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later */ #ifndef _PRIVATE_process_h diff --git a/level_3/controller/c/rule/private-rule.h b/level_3/controller/c/rule/private-rule.h index 6af566597..6f3deb79e 100644 --- a/level_3/controller/c/rule/private-rule.h +++ b/level_3/controller/c/rule/private-rule.h @@ -2,7 +2,7 @@ * FLL - Level 3 * * Project: Controller - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later */ #ifndef _PRIVATE_rule_h diff --git a/level_3/controller/c/rule/private-rule_print.h b/level_3/controller/c/rule/private-rule_print.h index 70848aa7b..9c9efd339 100644 --- a/level_3/controller/c/rule/private-rule_print.h +++ b/level_3/controller/c/rule/private-rule_print.h @@ -2,7 +2,7 @@ * FLL - Level 3 * * Project: Controller - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later */ #ifndef _PRIVATE_rule_print_h diff --git a/level_3/controller/c/thread/private-thread.h b/level_3/controller/c/thread/private-thread.h index 8137bce48..dbf6ed2db 100644 --- a/level_3/controller/c/thread/private-thread.h +++ b/level_3/controller/c/thread/private-thread.h @@ -2,7 +2,7 @@ * FLL - Level 3 * * Project: Controller - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later */ #ifndef _PRIVATE_thread_h diff --git a/level_3/controller/c/thread/private-thread_control.h b/level_3/controller/c/thread/private-thread_control.h index 3dba94bb2..41f11af1a 100644 --- a/level_3/controller/c/thread/private-thread_control.h +++ b/level_3/controller/c/thread/private-thread_control.h @@ -2,7 +2,7 @@ * FLL - Level 3 * * Project: Controller - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later */ #ifndef _PRIVATE_thread_control_h diff --git a/level_3/controller/c/thread/private-thread_entry.h b/level_3/controller/c/thread/private-thread_entry.h index aee74ca6e..d7c7746e9 100644 --- a/level_3/controller/c/thread/private-thread_entry.h +++ b/level_3/controller/c/thread/private-thread_entry.h @@ -2,7 +2,7 @@ * FLL - Level 3 * * Project: Controller - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later */ #ifndef _PRIVATE_thread_entry_h diff --git a/level_3/controller/c/thread/private-thread_process.h b/level_3/controller/c/thread/private-thread_process.h index a636cba1c..0030bbe52 100644 --- a/level_3/controller/c/thread/private-thread_process.h +++ b/level_3/controller/c/thread/private-thread_process.h @@ -2,7 +2,7 @@ * FLL - Level 3 * * Project: Controller - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later */ #ifndef _PRIVATE_thread_process_h diff --git a/level_3/controller/c/thread/private-thread_rule.h b/level_3/controller/c/thread/private-thread_rule.h index 97f03b69d..82b9ce9ed 100644 --- a/level_3/controller/c/thread/private-thread_rule.h +++ b/level_3/controller/c/thread/private-thread_rule.h @@ -2,7 +2,7 @@ * FLL - Level 3 * * Project: Controller - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later */ #ifndef _PRIVATE_thread_rule_h diff --git a/level_3/controller/c/thread/private-thread_signal.h b/level_3/controller/c/thread/private-thread_signal.h index b1472a610..95f8ee3a2 100644 --- a/level_3/controller/c/thread/private-thread_signal.h +++ b/level_3/controller/c/thread/private-thread_signal.h @@ -2,7 +2,7 @@ * FLL - Level 3 * * Project: Controller - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later */ #ifndef _PRIVATE_thread_signal_h diff --git a/level_3/fake/c/common.h b/level_3/fake/c/common.h index 9d5c97132..67cb92966 100644 --- a/level_3/fake/c/common.h +++ b/level_3/fake/c/common.h @@ -2,7 +2,7 @@ * FLL - Level 3 * * Project: Featureless Make - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Provides the common data structures. @@ -21,11 +21,11 @@ extern "C" { */ #ifndef _di_fake_program_version_ #define FAKE_program_version_major_s F_string_ascii_0_s - #define FAKE_program_version_minor_s F_string_ascii_6_s + #define FAKE_program_version_minor_s F_string_ascii_7_s #define FAKE_program_version_micro_s F_string_ascii_0_s #define FAKE_program_version_major_s_length F_string_ascii_0_s_length - #define FAKE_program_version_minor_s_length F_string_ascii_6_s_length + #define FAKE_program_version_minor_s_length F_string_ascii_7_s_length #define FAKE_program_version_micro_s_length F_string_ascii_0_s_length #ifndef FAKE_program_version_nano_prefix_s diff --git a/level_3/fake/c/fake.h b/level_3/fake/c/fake.h index d1be40a10..63e22860d 100644 --- a/level_3/fake/c/fake.h +++ b/level_3/fake/c/fake.h @@ -2,7 +2,7 @@ * FLL - Level 3 * * Project: Featureless Make - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * The Feautureless Make System (aka fake) used as a package build tool. diff --git a/level_3/fake/c/private-build-library.h b/level_3/fake/c/private-build-library.h index 41b80c394..e223822a0 100644 --- a/level_3/fake/c/private-build-library.h +++ b/level_3/fake/c/private-build-library.h @@ -2,7 +2,7 @@ * FLL - Level 3 * * Project: Featureless Make - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later */ #ifndef _PRIVATE_build_library_h diff --git a/level_3/fake/c/private-build-load.h b/level_3/fake/c/private-build-load.h index 1461a3509..6ae7732fd 100644 --- a/level_3/fake/c/private-build-load.h +++ b/level_3/fake/c/private-build-load.h @@ -2,7 +2,7 @@ * FLL - Level 3 * * Project: Featureless Make - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later */ #ifndef _PRIVATE_build_load_h diff --git a/level_3/fake/c/private-build-object.h b/level_3/fake/c/private-build-object.h index 11a0ff02f..c8da478f7 100644 --- a/level_3/fake/c/private-build-object.h +++ b/level_3/fake/c/private-build-object.h @@ -2,7 +2,7 @@ * FLL - Level 3 * * Project: Featureless Make - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later */ #ifndef _PRIVATE_build_object_h diff --git a/level_3/fake/c/private-build-objects.h b/level_3/fake/c/private-build-objects.h index 68632b424..b3ee84884 100644 --- a/level_3/fake/c/private-build-objects.h +++ b/level_3/fake/c/private-build-objects.h @@ -2,7 +2,7 @@ * FLL - Level 3 * * Project: Featureless Make - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later */ #ifndef _PRIVATE_build_objects_h diff --git a/level_3/fake/c/private-build-program.h b/level_3/fake/c/private-build-program.h index 8c07e758a..aafbd4add 100644 --- a/level_3/fake/c/private-build-program.h +++ b/level_3/fake/c/private-build-program.h @@ -2,7 +2,7 @@ * FLL - Level 3 * * Project: Featureless Make - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later */ #ifndef _PRIVATE_build_program_h diff --git a/level_3/fake/c/private-build-skeleton.h b/level_3/fake/c/private-build-skeleton.h index c17c68306..783bf0c90 100644 --- a/level_3/fake/c/private-build-skeleton.h +++ b/level_3/fake/c/private-build-skeleton.h @@ -2,7 +2,7 @@ * FLL - Level 3 * * Project: Featureless Make - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later */ #ifndef _PRIVATE_build_skeleton_h diff --git a/level_3/fake/c/private-build.h b/level_3/fake/c/private-build.h index 298f19ae8..990337da1 100644 --- a/level_3/fake/c/private-build.h +++ b/level_3/fake/c/private-build.h @@ -2,7 +2,7 @@ * FLL - Level 3 * * Project: Featureless Make - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later */ #ifndef _PRIVATE_build_h diff --git a/level_3/fake/c/private-clean.h b/level_3/fake/c/private-clean.h index 833d7e4b1..b2572ca4e 100644 --- a/level_3/fake/c/private-clean.h +++ b/level_3/fake/c/private-clean.h @@ -2,7 +2,7 @@ * FLL - Level 3 * * Project: Featureless Make - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later */ #ifndef _PRIVATE_clean_h diff --git a/level_3/fake/c/private-common.h b/level_3/fake/c/private-common.h index 4d372d19d..e2d1d52bd 100644 --- a/level_3/fake/c/private-common.h +++ b/level_3/fake/c/private-common.h @@ -2,7 +2,7 @@ * FLL - Level 3 * * Project: Featureless Make - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later */ #ifndef _PRIVATE_common_h diff --git a/level_3/fake/c/private-fake-path_generate.h b/level_3/fake/c/private-fake-path_generate.h index 3c32b9032..366efe66e 100644 --- a/level_3/fake/c/private-fake-path_generate.h +++ b/level_3/fake/c/private-fake-path_generate.h @@ -2,7 +2,7 @@ * FLL - Level 3 * * Project: Featureless Make - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later */ #ifndef _PRIVATE_fake_path_generate_h diff --git a/level_3/fake/c/private-fake.h b/level_3/fake/c/private-fake.h index 7a954fbb9..700481997 100644 --- a/level_3/fake/c/private-fake.h +++ b/level_3/fake/c/private-fake.h @@ -2,7 +2,7 @@ * FLL - Level 3 * * Project: Featureless Make - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later */ #ifndef _PRIVATE_fake_h diff --git a/level_3/fake/c/private-make-load_fakefile.h b/level_3/fake/c/private-make-load_fakefile.h index 262239332..20722e2da 100644 --- a/level_3/fake/c/private-make-load_fakefile.h +++ b/level_3/fake/c/private-make-load_fakefile.h @@ -2,7 +2,7 @@ * FLL - Level 3 * * Project: Featureless Make - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later */ #ifndef _PRIVATE_make_load_fakefile_h diff --git a/level_3/fake/c/private-make-load_parameters.h b/level_3/fake/c/private-make-load_parameters.h index 269aea416..5d4cae9eb 100644 --- a/level_3/fake/c/private-make-load_parameters.h +++ b/level_3/fake/c/private-make-load_parameters.h @@ -2,7 +2,7 @@ * FLL - Level 3 * * Project: Featureless Make - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later */ #ifndef _PRIVATE_make_load_parameters_h diff --git a/level_3/fake/c/private-make-operate.h b/level_3/fake/c/private-make-operate.h index 178551426..755b416a6 100644 --- a/level_3/fake/c/private-make-operate.h +++ b/level_3/fake/c/private-make-operate.h @@ -2,7 +2,7 @@ * FLL - Level 3 * * Project: Featureless Make - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later */ #ifndef _PRIVATE_make_operate_h diff --git a/level_3/fake/c/private-make-operate_block.h b/level_3/fake/c/private-make-operate_block.h index e910bd788..4f87d8600 100644 --- a/level_3/fake/c/private-make-operate_block.h +++ b/level_3/fake/c/private-make-operate_block.h @@ -2,7 +2,7 @@ * FLL - Level 3 * * Project: Featureless Make - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later */ #ifndef _PRIVATE_make_operate_block_h diff --git a/level_3/fake/c/private-make-operate_process.h b/level_3/fake/c/private-make-operate_process.h index aa04bc4e7..de7751705 100644 --- a/level_3/fake/c/private-make-operate_process.h +++ b/level_3/fake/c/private-make-operate_process.h @@ -2,7 +2,7 @@ * FLL - Level 3 * * Project: Featureless Make - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later */ #ifndef _PRIVATE_make_operate_process_h diff --git a/level_3/fake/c/private-make-operate_process_type.h b/level_3/fake/c/private-make-operate_process_type.h index 5b7278740..4e860ce02 100644 --- a/level_3/fake/c/private-make-operate_process_type.h +++ b/level_3/fake/c/private-make-operate_process_type.h @@ -2,7 +2,7 @@ * FLL - Level 3 * * Project: Featureless Make - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later */ #ifndef _PRIVATE_make_operate_type_h diff --git a/level_3/fake/c/private-make-operate_validate.h b/level_3/fake/c/private-make-operate_validate.h index baaff65bb..10637a4cc 100644 --- a/level_3/fake/c/private-make-operate_validate.h +++ b/level_3/fake/c/private-make-operate_validate.h @@ -2,7 +2,7 @@ * FLL - Level 3 * * Project: Featureless Make - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later */ #ifndef _PRIVATE_make_operate_validate_h diff --git a/level_3/fake/c/private-make-operate_validate_type.h b/level_3/fake/c/private-make-operate_validate_type.h index 693f07459..d3b386a3c 100644 --- a/level_3/fake/c/private-make-operate_validate_type.h +++ b/level_3/fake/c/private-make-operate_validate_type.h @@ -2,7 +2,7 @@ * FLL - Level 3 * * Project: Featureless Make - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later */ #ifndef _PRIVATE_make_operate_validate_type_h diff --git a/level_3/fake/c/private-make.h b/level_3/fake/c/private-make.h index 9ac9dc186..e11e7e422 100644 --- a/level_3/fake/c/private-make.h +++ b/level_3/fake/c/private-make.h @@ -2,7 +2,7 @@ * FLL - Level 3 * * Project: Featureless Make - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later */ #ifndef _PRIVATE_make_h diff --git a/level_3/fake/c/private-print.h b/level_3/fake/c/private-print.h index 3f84b44ec..43381f7fa 100644 --- a/level_3/fake/c/private-print.h +++ b/level_3/fake/c/private-print.h @@ -2,7 +2,7 @@ * FLL - Level 3 * * Project: Featureless Make - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later */ #ifndef _PRIVATE_fake_print_h diff --git a/level_3/fake/c/private-skeleton.h b/level_3/fake/c/private-skeleton.h index 66df77986..0f4d0a619 100644 --- a/level_3/fake/c/private-skeleton.h +++ b/level_3/fake/c/private-skeleton.h @@ -2,7 +2,7 @@ * FLL - Level 3 * * Project: Featureless Make - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later */ #ifndef _PRIVATE_skeleton_h diff --git a/level_3/firewall/c/common.h b/level_3/firewall/c/common.h index fc892244a..77fb5c902 100644 --- a/level_3/firewall/c/common.h +++ b/level_3/firewall/c/common.h @@ -2,7 +2,7 @@ * FLL - Level 3 * * Project: Firewall - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Provides the common data structures. @@ -21,11 +21,11 @@ extern "C" { */ #ifndef _di_firewall_program_version_ #define FIREWALL_program_version_major_s F_string_ascii_0_s - #define FIREWALL_program_version_minor_s F_string_ascii_6_s + #define FIREWALL_program_version_minor_s F_string_ascii_7_s #define FIREWALL_program_version_micro_s F_string_ascii_0_s #define FIREWALL_program_version_major_s_length F_string_ascii_0_s_length - #define FIREWALL_program_version_minor_s_length F_string_ascii_6_s_length + #define FIREWALL_program_version_minor_s_length F_string_ascii_7_s_length #define FIREWALL_program_version_micro_s_length F_string_ascii_0_s_length #if !(defined(FIREWALL_program_version_nano_prefix_s) && defined(FIREWALL_program_version_nano_prefix_s_length)) diff --git a/level_3/firewall/c/firewall.h b/level_3/firewall/c/firewall.h index 13347f68c..23e80007c 100644 --- a/level_3/firewall/c/firewall.h +++ b/level_3/firewall/c/firewall.h @@ -2,7 +2,7 @@ * FLL - Level 3 * * Project: Firewall - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * This is the Kevux Operating System Firewall program. diff --git a/level_3/firewall/c/private-common.h b/level_3/firewall/c/private-common.h index d2f25f201..461cb908d 100644 --- a/level_3/firewall/c/private-common.h +++ b/level_3/firewall/c/private-common.h @@ -2,7 +2,7 @@ * FLL - Level 3 * * Project: Firewall - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later */ #ifndef _PRIVATE_common_h diff --git a/level_3/firewall/c/private-firewall.h b/level_3/firewall/c/private-firewall.h index 76fb5b227..c7b5ec947 100644 --- a/level_3/firewall/c/private-firewall.h +++ b/level_3/firewall/c/private-firewall.h @@ -2,7 +2,7 @@ * FLL - Level 3 * * Project: Firewall - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later */ #ifndef _PRIVATE_firewall_h diff --git a/level_3/fss_basic_list_read/c/common.h b/level_3/fss_basic_list_read/c/common.h index 316be0108..e7a5851a3 100644 --- a/level_3/fss_basic_list_read/c/common.h +++ b/level_3/fss_basic_list_read/c/common.h @@ -2,7 +2,7 @@ * FLL - Level 3 * * Project: FSS Basic List Read - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Provides the common data structures. @@ -21,11 +21,11 @@ extern "C" { */ #ifndef _di_fss_basic_list_read_program_version_ #define FSS_BASIC_LIST_READ_program_version_major_s F_string_ascii_0_s - #define FSS_BASIC_LIST_READ_program_version_minor_s F_string_ascii_6_s + #define FSS_BASIC_LIST_READ_program_version_minor_s F_string_ascii_7_s #define FSS_BASIC_LIST_READ_program_version_micro_s F_string_ascii_0_s #define FSS_BASIC_LIST_READ_program_version_major_s_length F_string_ascii_0_s_length - #define FSS_BASIC_LIST_READ_program_version_minor_s_length F_string_ascii_6_s_length + #define FSS_BASIC_LIST_READ_program_version_minor_s_length F_string_ascii_7_s_length #define FSS_BASIC_LIST_READ_program_version_micro_s_length F_string_ascii_0_s_length #if !(defined(FSS_BASIC_LIST_READ_program_version_nano_prefix_s) && defined(FSS_BASIC_LIST_READ_program_version_nano_prefix_s_length)) diff --git a/level_3/fss_basic_list_read/c/fss_basic_list_read.h b/level_3/fss_basic_list_read/c/fss_basic_list_read.h index 001777a84..a92e7b883 100644 --- a/level_3/fss_basic_list_read/c/fss_basic_list_read.h +++ b/level_3/fss_basic_list_read/c/fss_basic_list_read.h @@ -2,7 +2,7 @@ * FLL - Level 3 * * Project: FSS - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * This is the FSS Basic List Read program diff --git a/level_3/fss_basic_list_read/c/private-common.h b/level_3/fss_basic_list_read/c/private-common.h index cfe5c0709..75cd604c0 100644 --- a/level_3/fss_basic_list_read/c/private-common.h +++ b/level_3/fss_basic_list_read/c/private-common.h @@ -2,7 +2,7 @@ * FLL - Level 3 * * Project: FSS Basic List Read - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later */ #ifndef _PRIVATE_common_h diff --git a/level_3/fss_basic_list_read/c/private-print.h b/level_3/fss_basic_list_read/c/private-print.h index daf61c054..880ae1276 100644 --- a/level_3/fss_basic_list_read/c/private-print.h +++ b/level_3/fss_basic_list_read/c/private-print.h @@ -2,7 +2,7 @@ * FLL - Level 3 * * Project: FSS - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later */ #ifndef _PRIVATE_print_h diff --git a/level_3/fss_basic_list_read/c/private-read.h b/level_3/fss_basic_list_read/c/private-read.h index 4910adb5f..03ce268ec 100644 --- a/level_3/fss_basic_list_read/c/private-read.h +++ b/level_3/fss_basic_list_read/c/private-read.h @@ -2,7 +2,7 @@ * FLL - Level 3 * * Project: FSS - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later */ #ifndef _PRIVATE_read_h diff --git a/level_3/fss_basic_list_write/c/common.h b/level_3/fss_basic_list_write/c/common.h index 3c7cd06f3..ac1a6b2df 100644 --- a/level_3/fss_basic_list_write/c/common.h +++ b/level_3/fss_basic_list_write/c/common.h @@ -2,7 +2,7 @@ * FLL - Level 3 * * Project: FSS Basic List Write - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Provides the common data structures. @@ -21,11 +21,11 @@ extern "C" { */ #ifndef _di_fss_basic_list_write_program_version_ #define FSS_BASIC_LIST_WRITE_program_version_major_s F_string_ascii_0_s - #define FSS_BASIC_LIST_WRITE_program_version_minor_s F_string_ascii_6_s + #define FSS_BASIC_LIST_WRITE_program_version_minor_s F_string_ascii_7_s #define FSS_BASIC_LIST_WRITE_program_version_micro_s F_string_ascii_0_s #define FSS_BASIC_LIST_WRITE_program_version_major_s_length F_string_ascii_0_s_length - #define FSS_BASIC_LIST_WRITE_program_version_minor_s_length F_string_ascii_6_s_length + #define FSS_BASIC_LIST_WRITE_program_version_minor_s_length F_string_ascii_7_s_length #define FSS_BASIC_LIST_WRITE_program_version_micro_s_length F_string_ascii_0_s_length #if !(defined(FSS_BASIC_LIST_WRITE_program_version_nano_prefix_s) && defined(FSS_BASIC_LIST_WRITE_program_version_nano_prefix_s_length)) diff --git a/level_3/fss_basic_list_write/c/fss_basic_list_write.h b/level_3/fss_basic_list_write/c/fss_basic_list_write.h index 320dbc30c..68a293b31 100644 --- a/level_3/fss_basic_list_write/c/fss_basic_list_write.h +++ b/level_3/fss_basic_list_write/c/fss_basic_list_write.h @@ -2,7 +2,7 @@ * FLL - Level 3 * * Project: FSS - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * This program provides fss basic list write functionality. diff --git a/level_3/fss_basic_list_write/c/private-common.h b/level_3/fss_basic_list_write/c/private-common.h index 3595c23d4..b4be76a92 100644 --- a/level_3/fss_basic_list_write/c/private-common.h +++ b/level_3/fss_basic_list_write/c/private-common.h @@ -2,7 +2,7 @@ * FLL - Level 3 * * Project: FSS Basic List Write - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later */ #ifndef _PRIVATE_common_h diff --git a/level_3/fss_basic_list_write/c/private-write.h b/level_3/fss_basic_list_write/c/private-write.h index 65b44b5d9..367b28f15 100644 --- a/level_3/fss_basic_list_write/c/private-write.h +++ b/level_3/fss_basic_list_write/c/private-write.h @@ -2,7 +2,7 @@ * FLL - Level 3 * * Project: FSS - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later */ #ifndef _PRIVATE_write_h diff --git a/level_3/fss_basic_read/c/common.h b/level_3/fss_basic_read/c/common.h index 330559e95..5a1735efd 100644 --- a/level_3/fss_basic_read/c/common.h +++ b/level_3/fss_basic_read/c/common.h @@ -2,7 +2,7 @@ * FLL - Level 3 * * Project: FSS Basic Read - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Provides the common data structures. @@ -21,11 +21,11 @@ extern "C" { */ #ifndef _di_fss_basic_read_program_version_ #define FSS_BASIC_READ_program_version_major_s F_string_ascii_0_s - #define FSS_BASIC_READ_program_version_minor_s F_string_ascii_6_s + #define FSS_BASIC_READ_program_version_minor_s F_string_ascii_7_s #define FSS_BASIC_READ_program_version_micro_s F_string_ascii_0_s #define FSS_BASIC_READ_program_version_major_s_length F_string_ascii_0_s_length - #define FSS_BASIC_READ_program_version_minor_s_length F_string_ascii_6_s_length + #define FSS_BASIC_READ_program_version_minor_s_length F_string_ascii_7_s_length #define FSS_BASIC_READ_program_version_micro_s_length F_string_ascii_0_s_length #if !(defined(FSS_BASIC_READ_program_version_nano_prefix_s) && defined(FSS_BASIC_READ_program_version_nano_prefix_s_length)) diff --git a/level_3/fss_basic_read/c/fss_basic_read.h b/level_3/fss_basic_read/c/fss_basic_read.h index 7031f31dc..7a3b50cc1 100644 --- a/level_3/fss_basic_read/c/fss_basic_read.h +++ b/level_3/fss_basic_read/c/fss_basic_read.h @@ -2,7 +2,7 @@ * FLL - Level 3 * * Project: FSS - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * This is the FSS Basic Read program diff --git a/level_3/fss_basic_read/c/private-common.h b/level_3/fss_basic_read/c/private-common.h index 225f6ef42..e942aca65 100644 --- a/level_3/fss_basic_read/c/private-common.h +++ b/level_3/fss_basic_read/c/private-common.h @@ -2,7 +2,7 @@ * FLL - Level 3 * * Project: FSS Basic Read - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later */ #ifndef _PRIVATE_common_h diff --git a/level_3/fss_basic_read/c/private-print.h b/level_3/fss_basic_read/c/private-print.h index 6b714fe5b..5719790d8 100644 --- a/level_3/fss_basic_read/c/private-print.h +++ b/level_3/fss_basic_read/c/private-print.h @@ -2,7 +2,7 @@ * FLL - Level 3 * * Project: FSS - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later */ #ifndef _PRIVATE_print_h diff --git a/level_3/fss_basic_read/c/private-read.h b/level_3/fss_basic_read/c/private-read.h index 3bfa6135a..0599b5a8a 100644 --- a/level_3/fss_basic_read/c/private-read.h +++ b/level_3/fss_basic_read/c/private-read.h @@ -2,7 +2,7 @@ * FLL - Level 3 * * Project: FSS - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later */ #ifndef _PRIVATE_read_h diff --git a/level_3/fss_basic_write/c/common.h b/level_3/fss_basic_write/c/common.h index 09280e9d1..095e36679 100644 --- a/level_3/fss_basic_write/c/common.h +++ b/level_3/fss_basic_write/c/common.h @@ -2,7 +2,7 @@ * FLL - Level 3 * * Project: FSS Basic Write - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Provides the common data structures. @@ -21,11 +21,11 @@ extern "C" { */ #ifndef _di_fss_basic_write_program_version_ #define FSS_BASIC_WRITE_program_version_major_s F_string_ascii_0_s - #define FSS_BASIC_WRITE_program_version_minor_s F_string_ascii_6_s + #define FSS_BASIC_WRITE_program_version_minor_s F_string_ascii_7_s #define FSS_BASIC_WRITE_program_version_micro_s F_string_ascii_0_s #define FSS_BASIC_WRITE_program_version_major_s_length F_string_ascii_0_s_length - #define FSS_BASIC_WRITE_program_version_minor_s_length F_string_ascii_6_s_length + #define FSS_BASIC_WRITE_program_version_minor_s_length F_string_ascii_7_s_length #define FSS_BASIC_WRITE_program_version_micro_s_length F_string_ascii_0_s_length #if !(defined(FSS_BASIC_WRITE_program_version_nano_prefix_s) && defined(FSS_BASIC_WRITE_program_version_nano_prefix_s_length)) diff --git a/level_3/fss_basic_write/c/fss_basic_write.h b/level_3/fss_basic_write/c/fss_basic_write.h index 594f265a7..41ff14b5a 100644 --- a/level_3/fss_basic_write/c/fss_basic_write.h +++ b/level_3/fss_basic_write/c/fss_basic_write.h @@ -2,7 +2,7 @@ * FLL - Level 3 * * Project: FSS - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * This program provides fss basic write functionality. diff --git a/level_3/fss_basic_write/c/private-common.h b/level_3/fss_basic_write/c/private-common.h index 7c308cf90..972ecdc7c 100644 --- a/level_3/fss_basic_write/c/private-common.h +++ b/level_3/fss_basic_write/c/private-common.h @@ -2,7 +2,7 @@ * FLL - Level 3 * * Project: FSS Basic Write - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later */ #ifndef _PRIVATE_common_h diff --git a/level_3/fss_basic_write/c/private-write.h b/level_3/fss_basic_write/c/private-write.h index a5af1eb27..f163667f6 100644 --- a/level_3/fss_basic_write/c/private-write.h +++ b/level_3/fss_basic_write/c/private-write.h @@ -2,7 +2,7 @@ * FLL - Level 3 * * Project: FSS - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later */ #ifndef _PRIVATE_write_h diff --git a/level_3/fss_embedded_list_read/c/common.h b/level_3/fss_embedded_list_read/c/common.h index a6ce821a1..0b6b9d96b 100644 --- a/level_3/fss_embedded_list_read/c/common.h +++ b/level_3/fss_embedded_list_read/c/common.h @@ -2,7 +2,7 @@ * FLL - Level 3 * * Project: FSS Embedded List Read - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Provides the common data structures. @@ -21,11 +21,11 @@ extern "C" { */ #ifndef _di_fss_embedded_list_read_program_version_ #define FSS_EMBEDDED_LIST_READ_program_version_major_s F_string_ascii_0_s - #define FSS_EMBEDDED_LIST_READ_program_version_minor_s F_string_ascii_6_s + #define FSS_EMBEDDED_LIST_READ_program_version_minor_s F_string_ascii_7_s #define FSS_EMBEDDED_LIST_READ_program_version_micro_s F_string_ascii_0_s #define FSS_EMBEDDED_LIST_READ_program_version_major_s_length F_string_ascii_0_s_length - #define FSS_EMBEDDED_LIST_READ_program_version_minor_s_length F_string_ascii_6_s_length + #define FSS_EMBEDDED_LIST_READ_program_version_minor_s_length F_string_ascii_7_s_length #define FSS_EMBEDDED_LIST_READ_program_version_micro_s_length F_string_ascii_0_s_length #if !(defined(FSS_EMBEDDED_LIST_READ_program_version_nano_prefix_s) && defined(FSS_EMBEDDED_LIST_READ_program_version_nano_prefix_s_length)) diff --git a/level_3/fss_embedded_list_read/c/fss_embedded_list_read.h b/level_3/fss_embedded_list_read/c/fss_embedded_list_read.h index 74bfd90d1..240f75933 100644 --- a/level_3/fss_embedded_list_read/c/fss_embedded_list_read.h +++ b/level_3/fss_embedded_list_read/c/fss_embedded_list_read.h @@ -2,7 +2,7 @@ * FLL - Level 3 * * Project: FSS - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * This is the FSS Basic List Read program diff --git a/level_3/fss_embedded_list_read/c/private-common.h b/level_3/fss_embedded_list_read/c/private-common.h index 6d5345285..2d4b07a2a 100644 --- a/level_3/fss_embedded_list_read/c/private-common.h +++ b/level_3/fss_embedded_list_read/c/private-common.h @@ -2,7 +2,7 @@ * FLL - Level 3 * * Project: FSS Embedded List Read - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later */ #ifndef _PRIVATE_common_h diff --git a/level_3/fss_embedded_list_read/c/private-print.h b/level_3/fss_embedded_list_read/c/private-print.h index cc4d286fe..6f6128794 100644 --- a/level_3/fss_embedded_list_read/c/private-print.h +++ b/level_3/fss_embedded_list_read/c/private-print.h @@ -2,7 +2,7 @@ * FLL - Level 3 * * Project: FSS - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later */ #ifndef _PRIVATE_print_h diff --git a/level_3/fss_embedded_list_read/c/private-read.h b/level_3/fss_embedded_list_read/c/private-read.h index 4d65607b6..15ff4ea62 100644 --- a/level_3/fss_embedded_list_read/c/private-read.h +++ b/level_3/fss_embedded_list_read/c/private-read.h @@ -2,7 +2,7 @@ * FLL - Level 3 * * Project: FSS - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later */ #ifndef _PRIVATE_read_h diff --git a/level_3/fss_embedded_list_write/c/common.h b/level_3/fss_embedded_list_write/c/common.h index d7442c6b8..0bdc22ebe 100644 --- a/level_3/fss_embedded_list_write/c/common.h +++ b/level_3/fss_embedded_list_write/c/common.h @@ -2,7 +2,7 @@ * FLL - Level 3 * * Project: FSS Embedded List Write - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Provides the common data structures. @@ -21,11 +21,11 @@ extern "C" { */ #ifndef _di_fss_embedded_list_write_program_version_ #define FSS_EMBEDDED_LIST_WRITE_program_version_major_s F_string_ascii_0_s - #define FSS_EMBEDDED_LIST_WRITE_program_version_minor_s F_string_ascii_6_s + #define FSS_EMBEDDED_LIST_WRITE_program_version_minor_s F_string_ascii_7_s #define FSS_EMBEDDED_LIST_WRITE_program_version_micro_s F_string_ascii_0_s #define FSS_EMBEDDED_LIST_WRITE_program_version_major_s_length F_string_ascii_0_s_length - #define FSS_EMBEDDED_LIST_WRITE_program_version_minor_s_length F_string_ascii_6_s_length + #define FSS_EMBEDDED_LIST_WRITE_program_version_minor_s_length F_string_ascii_7_s_length #define FSS_EMBEDDED_LIST_WRITE_program_version_micro_s_length F_string_ascii_0_s_length #if !(defined(FSS_EMBEDDED_LIST_WRITE_program_version_nano_prefix_s) && defined(FSS_EMBEDDED_LIST_WRITE_program_version_nano_prefix_s_length)) diff --git a/level_3/fss_embedded_list_write/c/fss_embedded_list_write.h b/level_3/fss_embedded_list_write/c/fss_embedded_list_write.h index 69a9565b3..9cc40c75e 100644 --- a/level_3/fss_embedded_list_write/c/fss_embedded_list_write.h +++ b/level_3/fss_embedded_list_write/c/fss_embedded_list_write.h @@ -2,7 +2,7 @@ * FLL - Level 3 * * Project: FSS - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * This program provides FSS-0008 Embedded List write functionality. diff --git a/level_3/fss_embedded_list_write/c/private-common.h b/level_3/fss_embedded_list_write/c/private-common.h index 6e40083b0..569d3ecba 100644 --- a/level_3/fss_embedded_list_write/c/private-common.h +++ b/level_3/fss_embedded_list_write/c/private-common.h @@ -2,7 +2,7 @@ * FLL - Level 3 * * Project: FSS Embedded List Write - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later */ #ifndef _PRIVATE_common_h diff --git a/level_3/fss_embedded_list_write/c/private-write.h b/level_3/fss_embedded_list_write/c/private-write.h index 482734514..3cabbba7c 100644 --- a/level_3/fss_embedded_list_write/c/private-write.h +++ b/level_3/fss_embedded_list_write/c/private-write.h @@ -2,7 +2,7 @@ * FLL - Level 3 * * Project: FSS - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later */ #ifndef _PRIVATE_write_h diff --git a/level_3/fss_extended_list_read/c/common.h b/level_3/fss_extended_list_read/c/common.h index a38497f59..5a0f78bd2 100644 --- a/level_3/fss_extended_list_read/c/common.h +++ b/level_3/fss_extended_list_read/c/common.h @@ -2,7 +2,7 @@ * FLL - Level 3 * * Project: FSS Extended List Read - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Provides the common data structures. @@ -21,11 +21,11 @@ extern "C" { */ #ifndef _di_fss_extended_list_read_program_version_ #define FSS_EXTENDED_LIST_READ_program_version_major_s F_string_ascii_0_s - #define FSS_EXTENDED_LIST_READ_program_version_minor_s F_string_ascii_6_s + #define FSS_EXTENDED_LIST_READ_program_version_minor_s F_string_ascii_7_s #define FSS_EXTENDED_LIST_READ_program_version_micro_s F_string_ascii_0_s #define FSS_EXTENDED_LIST_READ_program_version_major_s_length F_string_ascii_0_s_length - #define FSS_EXTENDED_LIST_READ_program_version_minor_s_length F_string_ascii_6_s_length + #define FSS_EXTENDED_LIST_READ_program_version_minor_s_length F_string_ascii_7_s_length #define FSS_EXTENDED_LIST_READ_program_version_micro_s_length F_string_ascii_0_s_length #if !(defined(FSS_EXTENDED_LIST_READ_program_version_nano_prefix_s) && defined(FSS_EXTENDED_LIST_READ_program_version_nano_prefix_s_length)) diff --git a/level_3/fss_extended_list_read/c/fss_extended_list_read.h b/level_3/fss_extended_list_read/c/fss_extended_list_read.h index 1a8a67d2f..8b30ff138 100644 --- a/level_3/fss_extended_list_read/c/fss_extended_list_read.h +++ b/level_3/fss_extended_list_read/c/fss_extended_list_read.h @@ -2,7 +2,7 @@ * FLL - Level 3 * * Project: FSS - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * This is the FSS Extended List Read program diff --git a/level_3/fss_extended_list_read/c/private-common.h b/level_3/fss_extended_list_read/c/private-common.h index 205e1cfea..0dc07c416 100644 --- a/level_3/fss_extended_list_read/c/private-common.h +++ b/level_3/fss_extended_list_read/c/private-common.h @@ -2,7 +2,7 @@ * FLL - Level 3 * * Project: Extended List Read - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later */ #ifndef _PRIVATE_common_h diff --git a/level_3/fss_extended_list_read/c/private-print.h b/level_3/fss_extended_list_read/c/private-print.h index 28190f4e8..3411d4de2 100644 --- a/level_3/fss_extended_list_read/c/private-print.h +++ b/level_3/fss_extended_list_read/c/private-print.h @@ -2,7 +2,7 @@ * FLL - Level 3 * * Project: FSS - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later */ #ifndef _PRIVATE_print_h diff --git a/level_3/fss_extended_list_read/c/private-read.h b/level_3/fss_extended_list_read/c/private-read.h index ac3a36e15..e169488cf 100644 --- a/level_3/fss_extended_list_read/c/private-read.h +++ b/level_3/fss_extended_list_read/c/private-read.h @@ -2,7 +2,7 @@ * FLL - Level 3 * * Project: FSS - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later */ #ifndef _PRIVATE_read_h diff --git a/level_3/fss_extended_list_write/c/common.h b/level_3/fss_extended_list_write/c/common.h index 52a3dc8bd..c44b2430a 100644 --- a/level_3/fss_extended_list_write/c/common.h +++ b/level_3/fss_extended_list_write/c/common.h @@ -2,7 +2,7 @@ * FLL - Level 3 * * Project: FSS Extended List Write - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Provides the common data structures. @@ -21,11 +21,11 @@ extern "C" { */ #ifndef _di_fss_extended_list_write_program_version_ #define FSS_EXTENDED_LIST_WRITE_program_version_major_s F_string_ascii_0_s - #define FSS_EXTENDED_LIST_WRITE_program_version_minor_s F_string_ascii_6_s + #define FSS_EXTENDED_LIST_WRITE_program_version_minor_s F_string_ascii_7_s #define FSS_EXTENDED_LIST_WRITE_program_version_micro_s F_string_ascii_0_s #define FSS_EXTENDED_LIST_WRITE_program_version_major_s_length F_string_ascii_0_s_length - #define FSS_EXTENDED_LIST_WRITE_program_version_minor_s_length F_string_ascii_6_s_length + #define FSS_EXTENDED_LIST_WRITE_program_version_minor_s_length F_string_ascii_7_s_length #define FSS_EXTENDED_LIST_WRITE_program_version_micro_s_length F_string_ascii_0_s_length #if !(defined(FSS_EXTENDED_LIST_WRITE_program_version_nano_prefix_s) && defined(FSS_EXTENDED_LIST_WRITE_program_version_nano_prefix_s_length)) diff --git a/level_3/fss_extended_list_write/c/fss_extended_list_write.h b/level_3/fss_extended_list_write/c/fss_extended_list_write.h index 6a96c0bad..6baf360d8 100644 --- a/level_3/fss_extended_list_write/c/fss_extended_list_write.h +++ b/level_3/fss_extended_list_write/c/fss_extended_list_write.h @@ -2,7 +2,7 @@ * FLL - Level 3 * * Project: FSS - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * This program provides FSS-0003 Extended List write functionality. diff --git a/level_3/fss_extended_list_write/c/private-common.h b/level_3/fss_extended_list_write/c/private-common.h index 2c327dad0..891a2ab43 100644 --- a/level_3/fss_extended_list_write/c/private-common.h +++ b/level_3/fss_extended_list_write/c/private-common.h @@ -2,7 +2,7 @@ * FLL - Level 3 * * Project: FSS Extended List Write - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later */ #ifndef _PRIVATE_common_h diff --git a/level_3/fss_extended_list_write/c/private-write.h b/level_3/fss_extended_list_write/c/private-write.h index e911d4ff5..4ed9e8d03 100644 --- a/level_3/fss_extended_list_write/c/private-write.h +++ b/level_3/fss_extended_list_write/c/private-write.h @@ -2,7 +2,7 @@ * FLL - Level 3 * * Project: FSS - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later */ #ifndef _PRIVATE_write_h diff --git a/level_3/fss_extended_read/c/common.h b/level_3/fss_extended_read/c/common.h index c5d226355..0a2aef11b 100644 --- a/level_3/fss_extended_read/c/common.h +++ b/level_3/fss_extended_read/c/common.h @@ -2,7 +2,7 @@ * FLL - Level 3 * * Project: FSS Extended Read - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Provides the common data structures. @@ -21,11 +21,11 @@ extern "C" { */ #ifndef _di_fss_extended_read_program_version_ #define FSS_EXTENDED_READ_program_version_major_s F_string_ascii_0_s - #define FSS_EXTENDED_READ_program_version_minor_s F_string_ascii_6_s + #define FSS_EXTENDED_READ_program_version_minor_s F_string_ascii_7_s #define FSS_EXTENDED_READ_program_version_micro_s F_string_ascii_0_s #define FSS_EXTENDED_READ_program_version_major_s_length F_string_ascii_0_s_length - #define FSS_EXTENDED_READ_program_version_minor_s_length F_string_ascii_6_s_length + #define FSS_EXTENDED_READ_program_version_minor_s_length F_string_ascii_7_s_length #define FSS_EXTENDED_READ_program_version_micro_s_length F_string_ascii_0_s_length #if !(defined(FSS_EXTENDED_READ_program_version_nano_prefix_s) && defined(FSS_EXTENDED_READ_program_version_nano_prefix_s_length)) diff --git a/level_3/fss_extended_read/c/fss_extended_read.h b/level_3/fss_extended_read/c/fss_extended_read.h index 740ffc2d0..1a7c65705 100644 --- a/level_3/fss_extended_read/c/fss_extended_read.h +++ b/level_3/fss_extended_read/c/fss_extended_read.h @@ -2,7 +2,7 @@ * FLL - Level 3 * * Project: FSS - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * This is the FSS Basic Read program diff --git a/level_3/fss_extended_read/c/private-common.h b/level_3/fss_extended_read/c/private-common.h index bb70958a3..cbbe68501 100644 --- a/level_3/fss_extended_read/c/private-common.h +++ b/level_3/fss_extended_read/c/private-common.h @@ -2,7 +2,7 @@ * FLL - Level 3 * * Project: Extended Read - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later */ #ifndef _PRIVATE_common_h diff --git a/level_3/fss_extended_read/c/private-print.h b/level_3/fss_extended_read/c/private-print.h index 3476a842e..f24d2f5c4 100644 --- a/level_3/fss_extended_read/c/private-print.h +++ b/level_3/fss_extended_read/c/private-print.h @@ -2,7 +2,7 @@ * FLL - Level 3 * * Project: FSS - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later */ #ifndef _PRIVATE_print_h diff --git a/level_3/fss_extended_read/c/private-read.h b/level_3/fss_extended_read/c/private-read.h index 257f800c1..f248bf1b8 100644 --- a/level_3/fss_extended_read/c/private-read.h +++ b/level_3/fss_extended_read/c/private-read.h @@ -2,7 +2,7 @@ * FLL - Level 3 * * Project: FSS - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later */ #ifndef _PRIVATE_read_h diff --git a/level_3/fss_extended_write/c/common.h b/level_3/fss_extended_write/c/common.h index a6286f7d0..4e3b7b9b8 100644 --- a/level_3/fss_extended_write/c/common.h +++ b/level_3/fss_extended_write/c/common.h @@ -2,7 +2,7 @@ * FLL - Level 3 * * Project: FSS Extended Write - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Provides the common data structures. @@ -21,11 +21,11 @@ extern "C" { */ #ifndef _di_fss_extended_write_program_version_ #define FSS_EXTENDED_WRITE_program_version_major_s F_string_ascii_0_s - #define FSS_EXTENDED_WRITE_program_version_minor_s F_string_ascii_6_s + #define FSS_EXTENDED_WRITE_program_version_minor_s F_string_ascii_7_s #define FSS_EXTENDED_WRITE_program_version_micro_s F_string_ascii_0_s #define FSS_EXTENDED_WRITE_program_version_major_s_length F_string_ascii_0_s_length - #define FSS_EXTENDED_WRITE_program_version_minor_s_length F_string_ascii_6_s_length + #define FSS_EXTENDED_WRITE_program_version_minor_s_length F_string_ascii_7_s_length #define FSS_EXTENDED_WRITE_program_version_micro_s_length F_string_ascii_0_s_length #if !(defined(FSS_EXTENDED_WRITE_program_version_nano_prefix_s) && defined(FSS_EXTENDED_WRITE_program_version_nano_prefix_s_length)) diff --git a/level_3/fss_extended_write/c/fss_extended_write.h b/level_3/fss_extended_write/c/fss_extended_write.h index 952cf1c14..be78bb58e 100644 --- a/level_3/fss_extended_write/c/fss_extended_write.h +++ b/level_3/fss_extended_write/c/fss_extended_write.h @@ -2,7 +2,7 @@ * FLL - Level 3 * * Project: FSS - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * This program provides fss basic write functionality. diff --git a/level_3/fss_extended_write/c/private-common.h b/level_3/fss_extended_write/c/private-common.h index 0855d34a2..a1f81794d 100644 --- a/level_3/fss_extended_write/c/private-common.h +++ b/level_3/fss_extended_write/c/private-common.h @@ -2,7 +2,7 @@ * FLL - Level 3 * * Project: FSS Extended Write - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later */ #ifndef _PRIVATE_common_h diff --git a/level_3/fss_extended_write/c/private-write.h b/level_3/fss_extended_write/c/private-write.h index 71c1ff9b5..8b949d976 100644 --- a/level_3/fss_extended_write/c/private-write.h +++ b/level_3/fss_extended_write/c/private-write.h @@ -2,7 +2,7 @@ * FLL - Level 3 * * Project: FSS - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later */ #ifndef _PRIVATE_write_h diff --git a/level_3/fss_identify/c/common.h b/level_3/fss_identify/c/common.h index eb737f7f8..0fac600bb 100644 --- a/level_3/fss_identify/c/common.h +++ b/level_3/fss_identify/c/common.h @@ -2,7 +2,7 @@ * FLL - Level 3 * * Project: FSS Identify - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Provides the common data structures. @@ -21,11 +21,11 @@ extern "C" { */ #ifndef _di_fss_identify_program_version_ #define FSS_IDENTIFY_program_version_major_s F_string_ascii_0_s - #define FSS_IDENTIFY_program_version_minor_s F_string_ascii_6_s + #define FSS_IDENTIFY_program_version_minor_s F_string_ascii_7_s #define FSS_IDENTIFY_program_version_micro_s F_string_ascii_0_s #define FSS_IDENTIFY_program_version_major_s_length F_string_ascii_0_s_length - #define FSS_IDENTIFY_program_version_minor_s_length F_string_ascii_6_s_length + #define FSS_IDENTIFY_program_version_minor_s_length F_string_ascii_7_s_length #define FSS_IDENTIFY_program_version_micro_s_length F_string_ascii_0_s_length #if !(defined(FSS_IDENTIFY_program_version_nano_prefix_s) && defined(FSS_IDENTIFY_program_version_nano_prefix_s_length)) diff --git a/level_3/fss_identify/c/fss_identify.h b/level_3/fss_identify/c/fss_identify.h index 09f026b04..22e608fca 100644 --- a/level_3/fss_identify/c/fss_identify.h +++ b/level_3/fss_identify/c/fss_identify.h @@ -2,7 +2,7 @@ * FLL - Level 3 * * Project: FSS Identify - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * This is the program is intended to be used to identify an FSS file or FSS data. diff --git a/level_3/fss_identify/c/private-common.h b/level_3/fss_identify/c/private-common.h index 9de26076f..e584f3676 100644 --- a/level_3/fss_identify/c/private-common.h +++ b/level_3/fss_identify/c/private-common.h @@ -2,7 +2,7 @@ * FLL - Level 3 * * Project: FSS Identify - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later */ #ifndef _PRIVATE_common_h diff --git a/level_3/fss_identify/c/private-identify.h b/level_3/fss_identify/c/private-identify.h index 747c58bb7..1f50f7320 100644 --- a/level_3/fss_identify/c/private-identify.h +++ b/level_3/fss_identify/c/private-identify.h @@ -2,7 +2,7 @@ * FLL - Level 3 * * Project: FSS Identify - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later */ #ifndef _PRIVATE_identify_h diff --git a/level_3/fss_identify/c/private-print.h b/level_3/fss_identify/c/private-print.h index 4f880561a..e0a828afc 100644 --- a/level_3/fss_identify/c/private-print.h +++ b/level_3/fss_identify/c/private-print.h @@ -2,7 +2,7 @@ * FLL - Level 3 * * Project: FSS Identify - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later */ #ifndef _PRIVATE_print_h diff --git a/level_3/fss_payload_read/c/common.h b/level_3/fss_payload_read/c/common.h index 4fd281130..6224e2659 100644 --- a/level_3/fss_payload_read/c/common.h +++ b/level_3/fss_payload_read/c/common.h @@ -2,7 +2,7 @@ * FLL - Level 3 * * Project: FSS Payload Read - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Provides the common data structures. @@ -21,11 +21,11 @@ extern "C" { */ #ifndef _di_fss_payload_read_program_version_ #define FSS_PAYLOAD_READ_program_version_major_s F_string_ascii_0_s - #define FSS_PAYLOAD_READ_program_version_minor_s F_string_ascii_6_s + #define FSS_PAYLOAD_READ_program_version_minor_s F_string_ascii_7_s #define FSS_PAYLOAD_READ_program_version_micro_s F_string_ascii_0_s #define FSS_PAYLOAD_READ_program_version_major_s_length F_string_ascii_0_s_length - #define FSS_PAYLOAD_READ_program_version_minor_s_length F_string_ascii_6_s_length + #define FSS_PAYLOAD_READ_program_version_minor_s_length F_string_ascii_7_s_length #define FSS_PAYLOAD_READ_program_version_micro_s_length F_string_ascii_0_s_length #if !(defined(FSS_PAYLOAD_READ_program_version_nano_prefix_s) && defined(FSS_PAYLOAD_READ_program_version_nano_prefix_s_length)) diff --git a/level_3/fss_payload_read/c/fss_payload_read.h b/level_3/fss_payload_read/c/fss_payload_read.h index a67879754..c317d33b6 100644 --- a/level_3/fss_payload_read/c/fss_payload_read.h +++ b/level_3/fss_payload_read/c/fss_payload_read.h @@ -2,7 +2,7 @@ * FLL - Level 3 * * Project: FSS - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * This is the FSS Basic List Read program diff --git a/level_3/fss_payload_read/c/private-common.h b/level_3/fss_payload_read/c/private-common.h index 27df608f8..c19e859d7 100644 --- a/level_3/fss_payload_read/c/private-common.h +++ b/level_3/fss_payload_read/c/private-common.h @@ -2,7 +2,7 @@ * FLL - Level 3 * * Project: FSS Basic List Read - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later */ #ifndef _PRIVATE_common_h diff --git a/level_3/fss_payload_read/c/private-print.h b/level_3/fss_payload_read/c/private-print.h index 9db25839a..efc222d26 100644 --- a/level_3/fss_payload_read/c/private-print.h +++ b/level_3/fss_payload_read/c/private-print.h @@ -2,7 +2,7 @@ * FLL - Level 3 * * Project: FSS - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later */ #ifndef _PRIVATE_print_h diff --git a/level_3/fss_payload_read/c/private-read.h b/level_3/fss_payload_read/c/private-read.h index 710d94d06..b68261796 100644 --- a/level_3/fss_payload_read/c/private-read.h +++ b/level_3/fss_payload_read/c/private-read.h @@ -2,7 +2,7 @@ * FLL - Level 3 * * Project: FSS - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later */ #ifndef _PRIVATE_read_h diff --git a/level_3/fss_payload_write/c/common.h b/level_3/fss_payload_write/c/common.h index 63cced558..f54758592 100644 --- a/level_3/fss_payload_write/c/common.h +++ b/level_3/fss_payload_write/c/common.h @@ -2,7 +2,7 @@ * FLL - Level 3 * * Project: FSS Payload Write - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Provides the common data structures. @@ -21,11 +21,11 @@ extern "C" { */ #ifndef _di_fss_payload_write_program_version_ #define FSS_PAYLOAD_WRITE_program_version_major_s F_string_ascii_0_s - #define FSS_PAYLOAD_WRITE_program_version_minor_s F_string_ascii_6_s + #define FSS_PAYLOAD_WRITE_program_version_minor_s F_string_ascii_7_s #define FSS_PAYLOAD_WRITE_program_version_micro_s F_string_ascii_0_s #define FSS_PAYLOAD_WRITE_program_version_major_s_length F_string_ascii_0_s_length - #define FSS_PAYLOAD_WRITE_program_version_minor_s_length F_string_ascii_6_s_length + #define FSS_PAYLOAD_WRITE_program_version_minor_s_length F_string_ascii_7_s_length #define FSS_PAYLOAD_WRITE_program_version_micro_s_length F_string_ascii_0_s_length #if !(defined(FSS_PAYLOAD_WRITE_program_version_nano_prefix_s) && defined(FSS_PAYLOAD_WRITE_program_version_nano_prefix_s_length)) diff --git a/level_3/fss_payload_write/c/fss_payload_write.h b/level_3/fss_payload_write/c/fss_payload_write.h index 3e7c15eaa..b7fecdd0e 100644 --- a/level_3/fss_payload_write/c/fss_payload_write.h +++ b/level_3/fss_payload_write/c/fss_payload_write.h @@ -2,7 +2,7 @@ * FLL - Level 3 * * Project: FSS - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * This program provides fss basic list write functionality. diff --git a/level_3/fss_payload_write/c/private-common.h b/level_3/fss_payload_write/c/private-common.h index b8a35e5c6..51b200164 100644 --- a/level_3/fss_payload_write/c/private-common.h +++ b/level_3/fss_payload_write/c/private-common.h @@ -2,7 +2,7 @@ * FLL - Level 3 * * Project: FSS Basic List Write - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later */ #ifndef _PRIVATE_common_h diff --git a/level_3/fss_payload_write/c/private-write.h b/level_3/fss_payload_write/c/private-write.h index acd99cb24..25b5899f4 100644 --- a/level_3/fss_payload_write/c/private-write.h +++ b/level_3/fss_payload_write/c/private-write.h @@ -2,7 +2,7 @@ * FLL - Level 3 * * Project: FSS - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later */ #ifndef _PRIVATE_write_h diff --git a/level_3/fss_status_code/c/common.h b/level_3/fss_status_code/c/common.h index 871cb97de..dd90b5bc7 100644 --- a/level_3/fss_status_code/c/common.h +++ b/level_3/fss_status_code/c/common.h @@ -2,7 +2,7 @@ * FLL - Level 3 * * Project: FSS Status code - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Provides the common data structures. @@ -21,11 +21,11 @@ extern "C" { */ #ifndef _di_fss_status_code_program_version_ #define FSS_STATUS_CODE_program_version_major_s F_string_ascii_0_s - #define FSS_STATUS_CODE_program_version_minor_s F_string_ascii_6_s + #define FSS_STATUS_CODE_program_version_minor_s F_string_ascii_7_s #define FSS_STATUS_CODE_program_version_micro_s F_string_ascii_0_s #define FSS_STATUS_CODE_program_version_major_s_length F_string_ascii_0_s_length - #define FSS_STATUS_CODE_program_version_minor_s_length F_string_ascii_6_s_length + #define FSS_STATUS_CODE_program_version_minor_s_length F_string_ascii_7_s_length #define FSS_STATUS_CODE_program_version_micro_s_length F_string_ascii_0_s_length #if !(defined(FSS_STATUS_CODE_program_version_nano_prefix_s) && defined(FSS_STATUS_CODE_program_version_nano_prefix_s_length)) diff --git a/level_3/fss_status_code/c/fss_status_code.h b/level_3/fss_status_code/c/fss_status_code.h index 30c7adfd0..dc6f69eaf 100644 --- a/level_3/fss_status_code/c/fss_status_code.h +++ b/level_3/fss_status_code/c/fss_status_code.h @@ -2,7 +2,7 @@ * FLL - Level 3 * * Project: FSS - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * This program provides status code to/from string translation. diff --git a/level_3/fss_status_code/c/private-common.h b/level_3/fss_status_code/c/private-common.h index ca610ce4d..7e8029c47 100644 --- a/level_3/fss_status_code/c/private-common.h +++ b/level_3/fss_status_code/c/private-common.h @@ -2,7 +2,7 @@ * FLL - Level 3 * * Project: FSS Status Code - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later */ #ifndef _PRIVATE_common_h diff --git a/level_3/fss_status_code/c/private-fss_status_code.h b/level_3/fss_status_code/c/private-fss_status_code.h index d01b0726c..182c93d3c 100644 --- a/level_3/fss_status_code/c/private-fss_status_code.h +++ b/level_3/fss_status_code/c/private-fss_status_code.h @@ -2,7 +2,7 @@ * FLL - Level 3 * * Project: FSS - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later */ #ifndef _PRIVATE_fss_status_code_h diff --git a/level_3/iki_read/c/common.h b/level_3/iki_read/c/common.h index 5d3526c83..b5b5a4c2f 100644 --- a/level_3/iki_read/c/common.h +++ b/level_3/iki_read/c/common.h @@ -2,7 +2,7 @@ * FLL - Level 3 * * Project: IKI Read - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Provides the common data structures. @@ -21,11 +21,11 @@ extern "C" { */ #ifndef _di_iki_read_program_version_ #define IKI_READ_program_version_major_s F_string_ascii_0_s - #define IKI_READ_program_version_minor_s F_string_ascii_6_s + #define IKI_READ_program_version_minor_s F_string_ascii_7_s #define IKI_READ_program_version_micro_s F_string_ascii_0_s #define IKI_READ_program_version_major_s_length F_string_ascii_0_s_length - #define IKI_READ_program_version_minor_s_length F_string_ascii_6_s_length + #define IKI_READ_program_version_minor_s_length F_string_ascii_7_s_length #define IKI_READ_program_version_micro_s_length F_string_ascii_0_s_length #if !(defined(IKI_READ_program_version_nano_prefix_s) && defined(IKI_READ_program_version_nano_prefix_s_length)) diff --git a/level_3/iki_read/c/iki_read.h b/level_3/iki_read/c/iki_read.h index 122c658bc..af94894a3 100644 --- a/level_3/iki_read/c/iki_read.h +++ b/level_3/iki_read/c/iki_read.h @@ -2,7 +2,7 @@ * FLL - Level 3 * * Project: IKI - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * This is the IKI Read program. diff --git a/level_3/iki_read/c/private-common.h b/level_3/iki_read/c/private-common.h index 13bad9f16..471afccb4 100644 --- a/level_3/iki_read/c/private-common.h +++ b/level_3/iki_read/c/private-common.h @@ -2,7 +2,7 @@ * FLL - Level 3 * * Project: IKI Read - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later */ #ifndef _PRIVATE_common_h diff --git a/level_3/iki_read/c/private-print.h b/level_3/iki_read/c/private-print.h index 087339bfd..4c8ec6aae 100644 --- a/level_3/iki_read/c/private-print.h +++ b/level_3/iki_read/c/private-print.h @@ -2,7 +2,7 @@ * FLL - Level 3 * * Project: IKI - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later */ #ifndef _PRIVATE_print_h diff --git a/level_3/iki_read/c/private-read.h b/level_3/iki_read/c/private-read.h index 9172aae6a..84a2dd07b 100644 --- a/level_3/iki_read/c/private-read.h +++ b/level_3/iki_read/c/private-read.h @@ -2,7 +2,7 @@ * FLL - Level 3 * * Project: IKI - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later */ #ifndef _PRIVATE_read_h diff --git a/level_3/iki_write/c/common.h b/level_3/iki_write/c/common.h index a8af9c52b..8ee5b1041 100644 --- a/level_3/iki_write/c/common.h +++ b/level_3/iki_write/c/common.h @@ -2,7 +2,7 @@ * FLL - Level 3 * * Project: IKI Write - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Provides the common data structures. @@ -21,11 +21,11 @@ extern "C" { */ #ifndef _di_iki_write_program_version_ #define IKI_WRITE_program_version_major_s F_string_ascii_0_s - #define IKI_WRITE_program_version_minor_s F_string_ascii_6_s + #define IKI_WRITE_program_version_minor_s F_string_ascii_7_s #define IKI_WRITE_program_version_micro_s F_string_ascii_0_s #define IKI_WRITE_program_version_major_s_length F_string_ascii_0_s_length - #define IKI_WRITE_program_version_minor_s_length F_string_ascii_6_s_length + #define IKI_WRITE_program_version_minor_s_length F_string_ascii_7_s_length #define IKI_WRITE_program_version_micro_s_length F_string_ascii_0_s_length #if !(defined(IKI_WRITE_program_version_nano_prefix_s) && defined(IKI_WRITE_program_version_nano_prefix_s_length)) diff --git a/level_3/iki_write/c/iki_write.h b/level_3/iki_write/c/iki_write.h index 1b849e837..d254f9231 100644 --- a/level_3/iki_write/c/iki_write.h +++ b/level_3/iki_write/c/iki_write.h @@ -2,7 +2,7 @@ * FLL - Level 3 * * Project: IKI - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * This is the IKI Write program. diff --git a/level_3/iki_write/c/private-common.h b/level_3/iki_write/c/private-common.h index 41a8c7aeb..5ec92d616 100644 --- a/level_3/iki_write/c/private-common.h +++ b/level_3/iki_write/c/private-common.h @@ -2,7 +2,7 @@ * FLL - Level 3 * * Project: IKI Write - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later */ #ifndef _PRIVATE_common_h diff --git a/level_3/iki_write/c/private-write.h b/level_3/iki_write/c/private-write.h index 1298598f7..a778a1885 100644 --- a/level_3/iki_write/c/private-write.h +++ b/level_3/iki_write/c/private-write.h @@ -2,7 +2,7 @@ * FLL - Level 3 * * Project: IKI - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later */ #ifndef _PRIVATE_write_h diff --git a/level_3/status_code/c/common.h b/level_3/status_code/c/common.h index 5d1970efe..09ab645ae 100644 --- a/level_3/status_code/c/common.h +++ b/level_3/status_code/c/common.h @@ -2,7 +2,7 @@ * FLL - Level 3 * * Project: Status Code - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Provides the common data structures. @@ -21,11 +21,11 @@ extern "C" { */ #ifndef _di_status_code_program_version_ #define STATUS_CODE_program_version_major_s F_string_ascii_0_s - #define STATUS_CODE_program_version_minor_s F_string_ascii_6_s + #define STATUS_CODE_program_version_minor_s F_string_ascii_7_s #define STATUS_CODE_program_version_micro_s F_string_ascii_0_s #define STATUS_CODE_program_version_major_s_length F_string_ascii_0_s_length - #define STATUS_CODE_program_version_minor_s_length F_string_ascii_6_s_length + #define STATUS_CODE_program_version_minor_s_length F_string_ascii_7_s_length #define STATUS_CODE_program_version_micro_s_length F_string_ascii_0_s_length #if !(defined(STATUS_CODE_program_version_nano_prefix_s) && defined(STATUS_CODE_program_version_nano_prefix_s_length)) diff --git a/level_3/status_code/c/private-common.h b/level_3/status_code/c/private-common.h index 0251b61ce..6a1589dff 100644 --- a/level_3/status_code/c/private-common.h +++ b/level_3/status_code/c/private-common.h @@ -2,7 +2,7 @@ * FLL - Level 3 * * Project: Status Code - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later */ #ifndef _PRIVATE_common_h diff --git a/level_3/status_code/c/private-status_code.h b/level_3/status_code/c/private-status_code.h index 536bd7660..acfa72cc7 100644 --- a/level_3/status_code/c/private-status_code.h +++ b/level_3/status_code/c/private-status_code.h @@ -2,7 +2,7 @@ * FLL - Level 3 * * Project: Status Code - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later */ #ifndef _PRIVATE_status_code_h diff --git a/level_3/status_code/c/status_code.h b/level_3/status_code/c/status_code.h index 96a518018..59683f0e2 100644 --- a/level_3/status_code/c/status_code.h +++ b/level_3/status_code/c/status_code.h @@ -2,7 +2,7 @@ * FLL - Level 3 * * Project: Status Code - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * This program provides status code to/from string translation. diff --git a/level_3/utf8/c/common.h b/level_3/utf8/c/common.h index 224c4ca40..55412813c 100644 --- a/level_3/utf8/c/common.h +++ b/level_3/utf8/c/common.h @@ -2,7 +2,7 @@ * FLL - Level 3 * * Project: UTF-8 - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * Provides the common data structures. @@ -21,11 +21,11 @@ extern "C" { */ #ifndef _di_utf8_program_version_ #define UTF8_program_version_major_s F_string_ascii_0_s - #define UTF8_program_version_minor_s F_string_ascii_6_s + #define UTF8_program_version_minor_s F_string_ascii_7_s #define UTF8_program_version_micro_s F_string_ascii_0_s #define UTF8_program_version_major_s_length F_string_ascii_0_s_length - #define UTF8_program_version_minor_s_length F_string_ascii_6_s_length + #define UTF8_program_version_minor_s_length F_string_ascii_7_s_length #define UTF8_program_version_micro_s_length F_string_ascii_0_s_length #if !(defined(UTF8_program_version_nano_prefix_s) && defined(UTF8_program_version_nano_prefix_s_length)) diff --git a/level_3/utf8/c/private-common.h b/level_3/utf8/c/private-common.h index 129c54b02..ebf495f8b 100644 --- a/level_3/utf8/c/private-common.h +++ b/level_3/utf8/c/private-common.h @@ -2,7 +2,7 @@ * FLL - Level 3 * * Project: UTF-8 - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later */ #ifndef _PRIVATE_common_h diff --git a/level_3/utf8/c/private-print.h b/level_3/utf8/c/private-print.h index cb0247bef..e16320d59 100644 --- a/level_3/utf8/c/private-print.h +++ b/level_3/utf8/c/private-print.h @@ -2,7 +2,7 @@ * FLL - Level 3 * * Project: UTF-8 - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later */ #ifndef _PRIVATE_utf8_print_h diff --git a/level_3/utf8/c/private-utf8.h b/level_3/utf8/c/private-utf8.h index 9b9ab077b..1673b2733 100644 --- a/level_3/utf8/c/private-utf8.h +++ b/level_3/utf8/c/private-utf8.h @@ -2,7 +2,7 @@ * FLL - Level 3 * * Project: UTF-8 - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later */ #ifndef _PRIVATE_utf8_h diff --git a/level_3/utf8/c/private-utf8_bytesequence.h b/level_3/utf8/c/private-utf8_bytesequence.h index 74bd49ab9..15eee7e42 100644 --- a/level_3/utf8/c/private-utf8_bytesequence.h +++ b/level_3/utf8/c/private-utf8_bytesequence.h @@ -2,7 +2,7 @@ * FLL - Level 3 * * Project: UTF-8 - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later */ #ifndef _PRIVATE_utf8_bytesequence_h diff --git a/level_3/utf8/c/private-utf8_codepoint.h b/level_3/utf8/c/private-utf8_codepoint.h index 73acb18b5..17c122d65 100644 --- a/level_3/utf8/c/private-utf8_codepoint.h +++ b/level_3/utf8/c/private-utf8_codepoint.h @@ -2,7 +2,7 @@ * FLL - Level 3 * * Project: UTF-8 - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later */ #ifndef _PRIVATE_utf8_codepoint_h diff --git a/level_3/utf8/c/utf8.h b/level_3/utf8/c/utf8.h index 18fefeba9..fa1357256 100644 --- a/level_3/utf8/c/utf8.h +++ b/level_3/utf8/c/utf8.h @@ -2,7 +2,7 @@ * FLL - Level 3 * * Project: UTF-8 - * API Version: 0.6 + * API Version: 0.7 * Licenses: lgpl-2.1-or-later * * This is intendend to support Unicode 14.0.