From: Kevin Day Date: Tue, 2 Aug 2022 02:57:06 +0000 (-0500) Subject: Update: Next minor version (0.7.0). 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 7f71e81..c79c165 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 83e8227..de2157f 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 3eb8df9..b229441 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 ae21959..2ed83e0 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 1e28fb1..d1b2a94 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 4ae5a7e..8006e49 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 acd2886..714794b 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 e7a47b0..2a17528 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 b608f39..a739038 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 8e980a7..00bd9ab 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 2263424..30adce1 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 e31aaee..81ccc16 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 24a6b5b..ace2245 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 a1966d1..acd600d 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 054a93e..c4093a3 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 f2f33b6..73f6cc7 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 abe57f8..d73880b 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 c16b842..12d8538 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 0b2eae8..ac704a8 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 2efaa1d..2b36b26 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 cb13b0e..97dd191 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 ea2c843..295d077 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 a812eb4..410685c 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 675491f..cc67a2f 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 ad69ed1..46da86c 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 d912156..1f8b2c8 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 2911830..ee84c56 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 82c3372..32d0652 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 cdcc8aa..1e47441 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 12bf4ef..0d37eb9 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 5366bc6..733cb90 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 b4f6ff9..ba058a0 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 5fb9030..47434d0 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 d6bf8d0..10e2183 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 421c795..071b5ed 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 d9974b9..b1ec215 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 427cef4..7cd96af 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 9f566c3..2cd0f2a 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 d0d2288..7c897d5 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 f1e9864..945e78b 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 f1f7f66..94ee5d2 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 6bd0bef..c9983bb 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 defcfad..df5d487 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 4e84379..8f90694 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 4a5b7a4..2314812 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 3d5c229..8225ebf 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 a4c9dea..a88ba23 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 d99923f..78c5af4 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 9c9c81a..8043a64 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 de23317..d7fa093 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 e5adc95..08d03a0 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 f08b42a..a02bba2 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 108901a..e645d50 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 122e44b..31360e2 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 f400208..e016a6c 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 a1946cb..656e750 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 dc02d04..8585686 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 780c7e5..7026b56 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 4c8b7f1..f4e5606 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 82d0849..a7dc11f 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 46dee85..8f8d046 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 365e2af..c692635 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 554f311..8292d01 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 d3103cb..4fd289a 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 a18da8c..b036075 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 fab373b..4bd2b52 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 f84e9e8..f23b70a 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 d6e31b1..e64fce6 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 886a0d9..857453e 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 17c4e49..4a25de5 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 6184284..047cc44 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 1659cda..bd31444 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 9763fc8..5f41e5d 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 36f6010..48f9c47 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 2bc4e1f..fa8da65 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 4f6df8b..33129d6 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 c7100d8..82a063b 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 b705913..897f494 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 88eb271..c76a36a 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 bfb5b95..27e5e91 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 c07b74b..6b1d1e5 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 1b8e3e4..44c606e 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 d670c4a..4b3298c 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 daedbaf..d4348e4 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 9d9afe8..563fd6d 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 8c2cff2..af40859 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 b38ca9c..5389ec9 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 8895b41..bb4ed4d 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 f95da32..86cfb1d 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 bf8756c..b53465c 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 5f6815b..3f417e0 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 ba1dd5b..5d035fd 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 b0fd080..670fc05 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 d290b58..62301e6 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 aa70fcd..bd6bab5 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 46a1223..daca168 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 a974ba3..45626f6 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 e9ee604..aff7192 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 4e8f065..a41f83a 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 69a84a5..92a57bf 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 97532fc..6d11f98 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 31583e1..cac361a 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 f5100aa..dd5a936 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 2664e2f..6480ae7 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 448492b..00727f4 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 aff4bb2..4826bd3 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 74dd08f..2a5b438 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 c0f06cd..5d7c101 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 cb89258..49be0c7 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 0056087..ccc1ccd 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 ec048d3..821fa79 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 11dade2..1c75860 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 1a34b8c..e1fee5c 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 5f32ebc..5f35b33 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 8192842..1441167 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 59b9cc1..1b9eb57 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 d3ef9e3..fea5ea8 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 0e011ee..10b7ce9 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 56995df..0f63853 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 4549e65..a5a520a 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 65f8892..eec6e50 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 041da48..659b97d 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 37f7047..4ca18a0 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 b8440c4..c2ec740 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 320d05c..b3af247 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 150300f..23706aa 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 352d76f..f5dc19a 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 e00fcf1..dfb8045 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 d5c2993..88651d3 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 8acf7cf..af3c0b4 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 a4c7035..375cf5b 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 db9dade..8d89dd7 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 7b6b799..6780b6f 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 4d77ef2..f817e6e 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 3a269ac..b1c8f44 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 79ef5e6..0026bc7 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 61766f2..d5db269 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 b66d791..f3ba4fa 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 a845324..048162c 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 9aebf53..d2d0167 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 9492968..a757fed 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 725f787..0260545 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 c1f885d..2180407 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 0ae9c1f..9fe8948 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 2983f2b..efc9681 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 14ff1df..17b8fa7 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 afb7624..0862c8c 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 59e87d6..5c8cce8 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 496b2c9..d7702e6 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 24032ec..c5ef8cf 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 6f2a287..a21cf13 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 2bd35a8..dd709e9 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 63f2d68..7491a60 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 df2843e..3a905c7 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 223fe6b..2aaf173 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 d081018..cf78bb6 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 e3ff15a..78b3a0a 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 9fd79f6..9326223 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 9c19de2..963b797 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 50ded05..0228e9a 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 e120018..b3a8ebd 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 9296fa9..51eb13b 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 42f1d22..d0f5035 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 ea9cd83..6ae3ea3 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 03bafb8..67ffb38 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 bb987fd..c1278ae 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 794d916..72753fe 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 54bba28..b43810c 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 dc63222..f719cee 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 7b98c49..46ab520 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 8005548..4247a60 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 24402fa..3d8a453 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 f23a860..dada975 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 1d1325c..de3f893 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 65bf08b..8a9a32d 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 8ea7255..034d505 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 7294fd2..54d1d0b 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 a963a77..ae85c84 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 3c215a2..4f4c689 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 8c92592..be05852 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 8fc4a2d..78c46b9 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 0f87fe0..195a57e 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 e0a10fd..e2e3cb0 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 3f16d4c..91bc939 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 45681c9..bc85e27 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 890c91c..f486927 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 7e785e2..35a5aa4 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 4edcd90..14723a9 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 f3a33ea..c1d5c2d 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 65a4ace..4d25b92 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 128a5e3..8bd5e5c 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 2667690..74cb403 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 78c26f9..bf404bb 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 150afad..0253bb5 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 06a579e..b36b7df 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 e5e350d..38f2c5f 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 f53f2f0..4a9fc12 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 eb83c95..a09a891 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 244d978..f5d42ab 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 0aa9572..7e5e311 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 0c15fa6..91b5abf 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 0f86bbb..63ffcdd 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 72df179..ebd4cfd 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 2b78680..afc920a 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 e8ffbd4..e7fd492 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 0dd56a7..2db6c2d 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 8a8b71e..f80d256 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 8903795..550b73b 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 fde9f6a..220cb6e 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 f0ce692..b1c9680 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 2727f85..7b56052 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 eb17e76..e19361f 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 32e7f81..86c441b 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 30152fe..eb29061 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 664e695..2afd9b0 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 2759bd6..e62c2f5 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 702030f..d66f850 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 5bd0b50..3b1087b 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 81cf00c..7791f31 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 2be9eef..22098fb 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 854447f..b8f66fb 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 7af047f..c74b496 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 937e96f..ff8f960 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 9a3ac4b..13497eb 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 34cc65d..abdfc06 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 1384a99..6596a3d 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 d04d4ae..4556cba 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 f6c88b0..c0c4566 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 bfdc8f1..f3f4238 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 13dfc8d..886d82c 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 a8123f1..47e95b5 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 006e1d8..a8de491 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 dfe4a67..01f5256 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 ec1be01..53e02a5 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 e860425..515865a 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 1ed91d8..a9a1521 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 fc9d591..d1336c0 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 7135202..ab80909 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 51b26fa..cf3a8ae 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 f0338dd..f235546 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 7081975..7079ce0 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 426ebbf..0876fb5 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 deed3a8..e9604fb 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 4f6a3ef..d719bd4 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 8d3f7b7..96909c4 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 60f46c7..69e88cf 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 5ea6356..c351eab 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 9dbde8b..4389a2e 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 325d5cc..81c58ad 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 050f8e9..1a070f7 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 c2cb84c..3033e2f 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 7dc9edf..e5573c3 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 2c98108..7c87f77 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 e7f3960..c6f6991 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 7473b8c..415b052 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 aab0696..57d6e8d 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 76393eb..4fd75ad 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 9ffda44..8251be2 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 9c0427b..1e0c4a7 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 158f8dc..ab7791f 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 49f48ed..c611dac 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 040b0e9..655848b 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 c3fee41..ca58cb3 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 60aa85d..cd8dec5 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 904fa19..0ffc877 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 ed32ff1..635418d 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 9ff15cc..7d4c81f 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 7b30dd4..be3fef2 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 954ec6f..46abfd8 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 5aa0373..f207021 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 957bf8e..34bf47b 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 bb10875..0f8abb7 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 ab0c84f..5f4a46a 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 ec5266d..67151b3 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 bb397ac..6adc61f 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 5f3a5a6..85dde7a 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 43e881c..ab25e66 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 2d9f665..a9e10f1 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 44eaddc..b504d47 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 ed992da..5d5bcf2 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 b9cf1ca..0c7700f 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 634abbf..c7511e6 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 7dac786..7da63fa 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 2a464b6..e5d1225 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 596a7af..e61a9b2 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 652f9fd..0b92284 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 ac822b5..a001fc5 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 55a5443..676ede6 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 c8227bf..763ca1a 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 3c6bfc4..b8fa1b5 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 4c9d5d6..7081644 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 cf159b3..0faaac6 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 6119340..868ae7d 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 f6b958c..d45562b 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 05cea4c..9c5f178 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 fe6b3d8..276100c 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 4c7a589..f7f21d4 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 578998a..16a0fdd 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 cdaa5de..c31abe0 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 e13504c..3dee0f2 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 825ff8e..d920c15 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 972f4c0..8bba342 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 784420d..eaee161 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 5fbe2e0..95ae412 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 4c1b004..a0d4a68 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 180cf67..2dace10 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 df6a114..e291525 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 84b0891..e25cb97 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 9276f57..c8c590d 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 b91733e..588e89e 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 ffce715..46a8512 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 3e52fe8..42200a3 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 b7f171c..a9875f5 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 49dcf63..d32f0f2 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 e5d7e50..3c726cf 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 0cd2f7d..e441469 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 52b3f87..125f31a 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 15d4b8b..9bcb3e9 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 a08038e..8ba174b 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 3a39b89..3692a75 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 1e971fb..ce5155d 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 9762156..174ca8e 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 d90ece0..db08526 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 05616f5..c9c8909 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 bc6fba3..06610a5 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 173568f..cdb2d78 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 7e0d911..0511216 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 7092e71..cba52c0 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 6d2adf8..0f65e95 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 1ea5115..b84b7ca 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 dc02b69..87f8931 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 6951b9c..a78c881 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 005399e..66992cf 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 4899d2c..637c539 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 50a28fc..5298809 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 2a564f2..36e0f99 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 9b00d1c..f20d8b6 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 a319674..8e8ecc5 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 378e585..8747a33 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 80c10bb..e502c4a 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 b8b557c..a1654a7 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 b74f117..4606dc1 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 791d5ab..8cc898c 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 3f1df13..046ad10 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 fae6043..dc9b14c 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 a08179c..eb52d9a 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 704287a..be3d2dc 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 2f0c360..65f2242 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 400dbbf..6cda21a 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 0c985ff..2ef0871 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 ebac136..09294df 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 306ef1f..0d12d98 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 ba5984c..e5fa43c 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 6224e40..f76509c 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 64fddcf..a9e5fe5 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 b93f5bf..178da4a 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 b366099..dc3aa5d 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 a4178c4..172b880 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 d5fe581..15143d3 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 c85abf1..bf927dd 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 b82780f..33c9b31 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 3a492ee..1defe6e 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 117385a..ac7276f 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 ffe4148..3fd674f 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 22c4bc1..fcb53ab 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 ae5a7fd..b2e4b6a 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 d4465ad..85be3e1 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 89b0f24..695d9a8 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 b4f3aa1..a39b441 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 2cfec99..d946af4 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 043d333..de2b970 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 7220413..73ad175 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 3cc5445..996323f 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 1eb4c2c..17fb220 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 9f7a383..5c01691 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 0e41ec8..cf26dfc 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 5a00399..1e9f050 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 8e717c5..9f51870 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 5169db1..fbd8597 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 f806496..5ea457e 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 30dadbe..5307d50 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 e07a5c6..f6a475d 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 b883416..3a9245b 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 a8ec6ac..bce5b29 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 93249b1..453028b 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 2362b8e..98590cc 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 9543f97..67251e4 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 db1787d..d5c0f56 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 6bea3c8..6e7a2ed 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 62fca06..8e68654 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 42af8df..ada3f9e 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 4a315e8..0857cbc 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 92db1cf..6de0fa6 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 0012af6..283a65a 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 9a5d4b1..344674a 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 1d7056c..69d0144 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 ec74b8a..29213b0 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 069baec..7aaea4e 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 80a8328..9e81aa0 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 a04a31e..6e1f6f4 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 563a6c0..e157c3c 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 20858ee..10eb2ef 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 a994bd4..7da6860 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 0259973..60b76e4 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 99a4958..bd86422 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 0aa960c..c8597bb 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 fc94f5e..d088a6b 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 c061f0b..f10a6a5 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 f57918a..033493e 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 7e7c5c5..2a245e1 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 38159bf..2de4b2b 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 55a4f9e..3d01603 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 b961e5b..2b413ca 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 3952e2e..327d748 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 fe34f86..37b07de 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 7c62a63..388cc98 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 4e9a798..660e65c 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 9523870..568a6ce 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 f6ce51c..7416489 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 8b600b2..19e61e6 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 8e97d21..f4219e4 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 2b63753..d210648 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 7fb8bec..40d9477 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 eba2934..4701e30 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 41a8370..86186de 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 daf7587..326cf45 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 e859286..3bbb08b 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 a8caf6d..8e465b3 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 04bd60e..a4cc5e6 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 abfcb58..6fd2917 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 2846611..ba4afb3 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 34bd8d6..4c13192 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 b8435ac..9f158a6 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 73e3d5d..11e3f94 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 e2684dd..dd72238 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 7161eb4..f2a0615 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 8037c36..c906c13 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 b70500e..901c413 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 c4da8dd..55bb9a3 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 ca11592..353e6e0 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 d8e01ed..e317db0 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 8731348..1255087 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 1b86c68..419d898 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 0fd60bb..c618d64 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 86cda92..89fd04f 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 c6748ce..044e7ea 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 c61dd35..0ecee27 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 d76a325..f568e46 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 d186cb5..33730dd 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 9217b00..17bac19 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 579ee7b..6a3f0e8 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 99459f9..0a060b0 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 298778d..18022a1 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 f7315c7..28215c7 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 51f6c7e..cdc80fa 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 0e9046d..4cfbab9 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 4c45a58..294bdc0 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 c5cbe2f..ea27654 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 90dbbc2..7ea36f2 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 a3ddc1c..85768aa 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 94796dc..dc33244 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 f388df8..c33d943 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 44c3bb2..aa383af 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 1beef69..37e7874 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 1058e90..1cc1046 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 87ef61f..40bf35e 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 deec69f..c26ac0c 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 a3f57a6..70eb966 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 da58665..f166f04 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 eca5888..7e43069 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 a536ae5..099f54d 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 0ae87be..ecd13ed 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 8d36bd2..b9efa65 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 2f53667..da9a5b8 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 d1b748f..8627967 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 db11937..108a9b6 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 54d55e4..7298349 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 795f0de..f74a7b3 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 d2dc5f3..345362b 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 9dc9143..e765ac9 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 8bdbebf..06f68f6 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 1af3733..4cc4c18 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 06eafe6..d442701 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 ccda458..e8d9cee 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 4fe5c3f..8f1d74f 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 d4f913d..547f12e 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 c85c25a..750430e 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 32e1921..1100d67 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 1391921..2615189 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 a396d7a..ace2408 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 bdc29a2..2b3ec2c 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 9c824d1..6ee9043 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 700c5f5..6b1f055 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 1b168e8..b294f8a 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 61cd24f..b97b49e 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 e9ad446..f69e851 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 b5904b4..428dd69 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 f99959d..fece808 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 25aa02f..a1baf2e 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 66da08c..bd8222a 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 982ccd8..d9f7291 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 9c5b133..1a96b46 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 c868866..85f87c6 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 48a57a0..8958b8b 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 cd27025..656f411 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 23eda75..f45b103 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 0dcf1c7..4dd8769 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 3ae7e4a..25bc5bb 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 19cf53d..9dd2d7b 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 3a4fd73..986955d 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 c32a1f1..213a283 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 a7dd4cc..d9e03d8 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 7bec85f..9864ce3 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 0e7a6f2..38fbb27 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 ac8b544..46a9b01 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 9f8d3b4..8df6796 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 dcd74d5..3ef5014 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 a838f35..bd38f23 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 80c0f05..0817926 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 edaf6b3..417de8c 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 29dcc50..ea27f56 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 b37e83e..96a77d3 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 b9bbd8b..d7a4daf 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 bbfe6a8..a004a25 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 75e8e83..3ebcbc0 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 13c0412..2ad9ecc 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 4602f0e..b232881 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 594fe7a..e19e2a6 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 0b5628e..ab90426 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 c7187d4..8092dcc 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 45a5970..1377c4f 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 db50458..a1093a7 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 c2c6fc5..bc3c05a 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 e73e641..674d5d8 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 77a606e..43b2df4 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 94d195d..1433a0a 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 5a2b88a..67883e5 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 f710cd3..d87c4ea 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 3a2ac5b..b96350f 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 823ab3c..6758d8b 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 4813ebf..7f69d4b 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 1c8530e..20688c4 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 40775be..6fcb3ae 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 ceef665..9f6ac70 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 04722f9..ca27209 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 e1997e6..0a121a5 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 c17cde9..63ac942 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 6955e61..33403c2 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 e66cd24..8b4cd8d 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 dcaad01..e0766f6 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 d075f0e..8b7a222 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 b954c58..8be1c14 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 f0ad9e5..2249f9b 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 5da037d..1888d9a 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 a19b022..0391f32 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 f3d8b04..5805457 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 bf649e7..8c05227 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 15bcbe6..503752f 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 62a6c7d..353f1ce 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 39e6531..f207c29 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 39b9db3..bef274c 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 8333260..0805548 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 5a02cc2..b75097c 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 d10e64f..b1d856e 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 8a5538c..a0b3ec6 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 0b8f3a2..e7e114d 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 bcb1c7e..c156172 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 5c4f52d..ea67e1d 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 b542fc4..4ed3791 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 86a44a8..5229908 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 9792505..bd49f4f 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 6de8b13..0bb14d2 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 21c4ec5..4544808 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 e314f53..bca31e6 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 eb60d72..89d510b 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 43b5e28..7ddefeb 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 cd4f5b7..59f7ba2 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 811770a..f67ec6d 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 abc6cc1..f508d0f 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 6b63e69..1f7ee7d 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 ce4aa08..a47e899 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 31f0164..a108200 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 3d9bea2..393fe46 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 0d94566..537726d 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 b64cf4f..201d78a 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 6c57438..46fe906 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 6d4d7f5e..1c9715e 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 6a148c3..1703bea 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 24ca7b7..74c543f 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 ee8f27e..7801b02 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 09c14e6..00c58ae 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 5427d03..baf83db 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 aed752f..80219f1 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 207ec92..fc7708b 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 80edc08..337e005 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 5327c90..9a0e290 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 9912eeb..63cea12 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 815075d..5d50f22 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 2a6c46d..8ff6455 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 aadf924..5b81dec 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 f6a7119..f5800d8 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 b15d4ae..4e7f623 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 d820992..8940232 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 af2576f..abd6f1d 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 61a1a59..39ed3f2 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 c05b8a3..e12c646 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 3d6a2ea..893e656 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 af47150..13d2c12 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 89a9bc2..c1a9a2a 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 d3ac2e5..d368f84 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 d39a2c5..7d82528 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 47a6c63..8ddad53 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 c397539..ee35528 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 b21833a..e72e264 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 3a03fb2..2ada38e 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 03aaf0c..d8b5bb1 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 b6ff90e..70b4e9f 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 8998bf6..df19961 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 1479c6e..29a90e2 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 ec1e50a..ded5662 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 8b59882..58683ea 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 1f7ef4f..ae5aca5 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 acba1c1..e503654 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 0196ec9..d02b27a 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 57a41b2..f7d8334 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 00c293e..3793bd3 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 d4552e3..9f2d4b2 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 ee27f43..0c3e6dd 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 8381c38..abbc43e 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 0db8685..f47ca3d 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 bcefa08..d06e7c5 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 5456203..87b287f 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 35e5060..1ecaf9e 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 2d4f7c3..faa8988 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 6ffb7ae..36fa7b9 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 d48acfd..e61a517 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 01cca18..eb3b1ad 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 f3f5426..4d891ff 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 d6b60de..bea9999 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 3a5dbc6..974fcfd 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 0ea3f87..ae4841e 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 538814d..9a600e9 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 d5d82a9..1a0b66f 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 82f92f8..4e5f78e 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 d85c9c2..823fad7 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 31cb8d1..f7cb290 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 d545fd4..f25f52c 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 4098f94..4a8056c 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 1fb67d8..c946317 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 595ab8c..611748a 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 00a555c..ed704c0 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 2278049..ff4ca74 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 e36b9f2..f903f76 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 2cd8225..2d4167f 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 6fe1abe..70db7f4 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 1c13bc8..ac77163 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 b68c89b..ce9426b 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 f36a86a..abe0d40 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 338215d..289acbd 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 155dfab..028a849 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 d067504..3765b11 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 695fd2b..d7a6295 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 0ba0b1c..3318511 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 3d50143..7bfa92b 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 547bb14..fc3a25a 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 d53c9e4..49aa986 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 8085288..f75bbd7 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 10f704e..4edc8d8 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 6ba6c44..d31c1e3 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 5ef4ce8..e129717 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 b5dcbc4..fc7c807 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 d926efb..dcb6a3a 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 53bdcff..5bc4529 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 1a81a0f..9baefd2 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 b67fe48..f245982 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 31f41cc..8ccb0c4 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 eba7e67..1d52555 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 1b6b986..f29fefd 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 bd4c55e..75f4e4d 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 8b6f5a3..5ee4f33 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 39362e6..dd97727 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 49b6b90..0500166 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 3219634..1cacca3 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 4d7d526..51a95d2 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 18be1b9..ccbf50c 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 fb91250..77c4a07 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 c5f1f1c..4e016f6 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 2e12a4a..75764a9 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 4cfb165..2f75492 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 1da014a..4217158 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 e3d5b21..f291b11 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 a074e02..0c6d13a 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 60b2af6..450434b 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 fb71f9f..f6f56b3 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 4b35d76..a12fa45 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 873cfa4..096721f 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 9006f5b..985b030 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 9f141aa..6fbf9d5 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 a5fe29d..492d203 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 24a1565..2090ba6 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 a470871..c377d7c 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 9233b19..7c02cd5 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 20988c3..3d647c2 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 ce21e48..d988d6c 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 42b3238..7b4fb54 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 4871cc0..413d272 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 57d6f52..16b4fe7 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 8c51c60..f472467 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 be49259..776aa2c 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 7b24f44..a2b27d1 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 4d455dc..ea68b53 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 04d5abb..45b7127 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 1a0ed81..2e35b05 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 467bd80..e20b796 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 1c6e2f8..a93519b 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 4faf285..dda4401 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 863104b..edef6d1 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 6d5093f..a4f2670 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 3ce14e7..caec0af 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 2f9caaa..6dc83b8 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 8698be6..d405ea2 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 00a768c..5de6b81 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 be3a46d..604d6ac 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 f39bd3a..964147a 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 becfb0d..d324164 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 5c4d1e0..ed57ef4 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 25d9626..36ff551 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 d34981f..88bc41e 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 b8c1dfc..bfd3961 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 49e49b2..4908fb2 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 6a4931f..700a0ab 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 4624671..2ae7d2b 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 8f64c6b..1cd6dd8 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 32e20b4..1832217 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 cb09bd2..6cd6834 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 b78ece5..a2276f4 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 6e66bc9..3b356e2 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 1a3e959..fd5c721 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 a4c7c26..a2ccbc0 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 ceb8fd2..92e6f7c 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 7a16a08..ae78b32 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 8ac021b..8975dcd 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 b58358f..76c985d 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 221acaa..ce2f6dd 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 4011ca3..64c31c4 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 bc62728..4dcb162 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 2bf0844..708619c 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 6603f96..a24e37f 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 3fb2d39..54bf069 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 cbc3602..8637fdd 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 5e4f01c..f393e56 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 887f1a9..3dec1cd 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 166b903..0f3d743 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 88766f6..3534d59 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 20e5657..5a247b6 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 c04940c..1e10050 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 905ca03..88bbddb 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 1c55186..5685aba 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 0d307eb..f029ed7 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 36e4cf5..583f8eb 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 6ef8945..a5e140b 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 6006d04..19fc0de 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 d612290..c47c37b 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 c49ee6e..a932b4f 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 f03b964..86c6a3a 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 37ea942..e9cb0fd 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 cb169a0..1e22f8c 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 9d67d66..8e4418e 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 9095b4f..0ea2031 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 c31c0db..86a8d2e 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 fc871af..ed0cc60 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 743dfb1..e98e625 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 d68db45..104592a 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 430dc3f..84c03a8 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 4910aa3..c86bd6b 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 edb87b9..e745db0 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 27ef055..5951459 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 d08e2c2..cd71547 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 86a226d..d8068fb 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 1e4717d..800d330 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 32b70ca..be3af2d 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 478dd88..cf5cd05 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 75e5a25..815106c 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 73edb9e..f34bcd8 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 4d03df8..90ab39b 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 dc0bcd0..3d7cf14 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 49ab73d..d76a072 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 7e3a9a5..282d369 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 4d3fb1a..a81cd8b 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 c83802a..17e277b 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 2af21b2..ed0dcf5 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 edadc4b..0130e25 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 03d8ede..8fdf5a2 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 80f1ab0..5eb372c 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 051a4a2..736a375 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 2ec8bde..05dc11e 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 242a1ad..0355372 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 d13edf1..00ce456 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 e63910a..04bb3ff 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 281e2e0..6b1b15f 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 bdbfe6b..3d55319 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 b100abf..84a5ee7 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 4e2f41b..b5358bf 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 093f82d..9f1fc47 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 bcedef7..93fcf5a 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 7547343..bd8fcff 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 895b891..ee0c022 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 4ccb1f6..04778dc 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 bed9106..a39c5de 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 e34395c..26d0e70 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 5a1e580..cb53b0d 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 0dcd40f..a9665ce 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 482f475..6ca6194 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 6e0d88f..0adcd24 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 6db7302..80a4560 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 f0e2644..206fe19 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 4aa9b71..95c4e7f 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 87c7c63..51a98cb 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 42d4c98..540a223 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 2a98ab5..681e467 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 7e60abf..786e9cf 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 546e5b0..f486724 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 235b039..cfb54fc 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 106388b..87294d9 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 c56ae72..43a593f 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 4b96647..cc66223 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 75e65bf..617e75e 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 2353d9a..5ed6c70 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 c4a3c18..1b253f7 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 c0f0b61..4843405 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 5b1ba95..5f6ea37 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 f3ac70f..300869f 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 cd62902..d1e8afa 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 834b840..a7ebb53 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 d37f0e2..98f6e3e 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 3a385f4..fe0a03b 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 36988bc..bad528d 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 a18dc27..cd3101a 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 d79bd74..28df2d3 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 7109850..25548fd 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 989f6a6..d7242b1 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 41e26bf..70d7218 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 3c26051..ebcbfa0 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 f392464..1ea215a 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 6f3d33d..7a8c666 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 c57da18..d952455 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 d9bf434..ce46c0c 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 4591d1e..935d9f0 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 fef2f55..d57a4f0 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 7fc73be..a5e720e 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 dc950ab..abca646 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 595ab79..d58cb61 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 c4d5906..20df50c 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 5f7e980..33ddf00 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 6836144..031b7fd 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 1f6d0b3..bbc75ea 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 40e17fa..30961dd 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 27c9ac7..db725c9 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 a751f37..b3b9576 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 f8ab6e8..f79a111 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 b38c8e3..69cf337 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 424bd73..e0590fb 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 d0fdbd3..66426a8 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 90fc3a0..02dfafd 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 f44491c..e1692c4 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 b30e7f3..a14772f 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 1995ad2..aebb72b 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 e2ff895..a7ca5a7 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 90b63a3..2ff3be1 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 34b30d1..2205ced 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 a25f3af..c595fa4 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 e361c21..168118d 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 c3ea76c..834158e 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 2a88e82..b18e023 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 dca26e5..aa965bc 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 eb2125d..0fc57ab 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 8bf66c2..7fda4ab 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 17d10db..baae21c 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 312fe1e..1e2fda3 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 fe43337..d5eb3bd 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 cb95cd2..e557d6c 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 7b47ea5..72f5c5c 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 58267b8..84d297c 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 53ab17f..dc213b4 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 a4965ef..e0d1363 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 15099f4..766b2e9 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 14030ab..8e949d6 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 7f8a00c..6de58ce 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 97562c5..aee4c1e 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 4112ce7..55df537 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 6d532b6..674947f 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 cd9901a..47ccbf9 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 eb19fbf..7551f86 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 09c7266..fe7dc0a 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 d2e742f..ea7ad30 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 74c6054..d2634aa 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 7c8becc..ead3bcf 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 5b516f7..0538d8c 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 2bfd639..54c3f04 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 295b353..045607b 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 07c296d..e37b16f 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 3e6a31e..478527a 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 1ac8d2c..8a56330 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 3564560..89828c8 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 399e982..6cf3724 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 93a80bc..06a31b7 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 e05f744..1d4835e 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 2e0b45c..ad92bfa 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 3813ab4..6866f1d 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 d5cd3be..38efa81 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 d835517..86f6629 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 6d5fb16..0f904f4 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 6337df5..3aaaa5a 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 f2af34e..0e303a5 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 3461d04..79693ee 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 fe8c199..411b9d9 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 c6fe86f..7292d62 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 74b6434..41a9791 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 1ae293c..34df8c5 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 3f8aa10..2ebc2a0 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 d20d8a4..11abcb2 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 62cf19c..a41a3e1 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 ea7709f..adbefb2 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 e64c42a..b10a23d 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 2bef736..9745191 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 52d265a..3643e48 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 ceadba2..dea34d8 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 ebe6d9f..a0c0ee6 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 20e3f2b..705fa63 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 7c7d50a..305b726 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 1854c26..362109e 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 f735c14..112585b 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 cc1f666..80a37cd 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 e26e294..938d12f 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 bfa312c..842eccb 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 ecc6522..e31157c 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 17f639c..9ed73af 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 90e6b15..31cecf0 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 e06ad17..ef610d6 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 7302fca..dc7566d 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 3075998..1e33bda 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 6132ce1..4fa350d 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 9b27b7b..90734eb 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 4c07083..b640129 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 2dad28a..24cc3be 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 5de9676..e850bbe 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 be2d096..447ee4a 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 0d6370d..c809fd3 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 699d2f1..dbde84d 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 9f50198..0326b7c 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 d52eb8c..b06bfbf 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 eaa6542..ccc3f8d 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 be02485..c428dde 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 756030a..03d21ad 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 f6645ce..1efa4aa 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 0c61d5c..1642041 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 d9e87a5..534725e 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 fb58663..2453584 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 3b30b6d..a286cec 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 a2cfc5c..1b2b5b0 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 02f8ad7..2f9c221 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 55e5661..5935197 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 b7732fc..4ccf2a8 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 55d4ace..afb09cf 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 d866a62..931befa 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 5df42a3..87a72e7 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 f357bb0..9653d1b 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 d3a935d..45a90d2 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 e2581b9..ab33345 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 02f2a1d..af71eae 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 d13bd6e..58b2ec2 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 c95d6d9..f5b9543 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 4b4c520..b649074 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 9016a6a..eb2b0d0 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 c3d2b8c..7324974 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 fe3bcc7..ce4aabc 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 3e6a1b6..d2cac7d 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 a3926d6..258411d 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 b9d4e3d..ce6f772 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 aff79a2..7d931bb 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 d9564d4..afca704 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 4629c77..d279421 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 4917669..cfd7e71 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 7c3fe47..ac3c8fd 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 2910f1c..5eb61f0 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 98ceef5..5719d8b 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 463a7b4..250bdb9 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 300b456..df3ddd7 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 58b87eb..f6378bc 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 d4b11c1..35fbfd2 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 61f91db..e0e8e9d 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 457b16e..5d6a6d5 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 8a5a106..5e80f99 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 79042b6..1dd3214 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 14ef7e4..69186db 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 4b0aeea..d4e5ed1 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 6fc1997..44e06dd 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 2d5522c..d766f99 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 0c13b96..9285f49 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 90d65a7..79d5496 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 c48abff..14c007d 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 811c191..ceaceef 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 0677d4f..90916d0 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 5b652e5..24ede56 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 75563d2..e809232 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 2f5e669..e74b408 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 6ff061e..5845526 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 ff66728..d84e7d4 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 fec5654..3f3002e 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 46a4f8f..075a4a7 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 511a422..3828866 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 f1980ce..9bcfde2 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 734e4f3..f7b8273 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 c31bbf6..2ba7d7a 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 0a7ab93..a55e49a 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 091184f..f93dc6c 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 602d8fa..280bc7c 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 cfc0ab3..353df1e 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 da78b47..53ddc2d 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 aa51b01..a323842 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 8b60e1a..d6d779a 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 180ca36..1b8ab3c 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 480169c..85e9632 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 2c9bf0e..a22ceb8 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 9ea2cd4..a281b33 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 1f4eab6..1cd3361 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 a83e4e8..8aba1f3 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 52f68b0..7b59d17 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 f3c6dac..ddd493b 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 134c5c0..107c537 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 24f11ad..bf702c4 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 30b3765..a04c18e 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 4c10d29..2415474 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 f433fc9..f9e5960 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 58a8580..473f86b 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 0f0f5cb..c3dd041 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 44e6824..d572c6a 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 1e7d240..c3a3333 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 3314bde..e4129e1 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 499b99f..f275d5a 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 620ee1e..d0d8b14 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 930eb7b..f472be0 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 f18cd97..ac18827 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 397d046..fd88441 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 6e63895..63db782 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 ba99589..e60a74d 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 49af511..fc4c556 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 20f95f1..324a8d0 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 c3615f8..b239ec3 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 1e0fe11..987ffc8 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 87ce311..2960168 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 bb4c289..e0f323c 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 7ed4bd2..6a8945a 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 94357b5..23e6b85 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 8e71cc7..5ed54ef 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 45ebea3..2521942 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 b09b1de..8351ffe 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 546fe66..6505b28 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 9bff3d0..b48a450 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 e9f376b..f0989fc 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 bf3b01f..d09729f 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 617a620..9f3312e 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 6293cc3..3469ed8 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 a763167..153e7dd 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 2f72766..b888f9a 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 4fae693..df05378 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 a5b0ceb..18f81e3 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 e864c5d..65fa0eb 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 94c0e4b..7ec4f50 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 510d659..edd5c96 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 74da211..bdfb726 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 d7ea61b..1ba577e 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 26dfe1f..c800016 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 42aeea8..c817cd5 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 60174a2..06b6170 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 d7a8d21..265bcb3 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 600aa2b..33d4bdd 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 c88b952..ae3ff95 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 5c69fe0..785402e 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 8f8c060..1e05819 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 5c1bc9a..7344c98 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 9de84a4..f880538 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 323d33a..af12357 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 a9a0044..b78ff36 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 bb9f2db..ad49394 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 488f10f..b11a16f 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 679c97c..172f3d4 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 5a9dfe4..ffc21ea 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 bd7570c..ce9389c 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 b4c6dd6..d54964d 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 929a0e8..0d2d894 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 567df86..2432f75 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 6ca6992..9463ded 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 ad28290..4514221 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 59a8b48..b524456 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 9dced74..5643476 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 b36d3b5..3c1def3 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 4b26a6e..2809e91 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 167f962..ff1cd14 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 6f98b20..a90f827 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 e0cfe29..2605914 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 423c619..93122f0 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 81c531a..af7520a 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 2cfd8ec..5cca2d6 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 7f4fd57..0c99b07 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 d9dc309..4002366 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 60c81c0..991f0a8 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 d7e96eb..7fb14ae 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 1a5aa4d..abaf2a7 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 7ae30dc..45ac42c 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 f33b7ae..7b19986 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 90dbb7f..8bcd9d8 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 88ac7cc..3b2db69 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 e2c2072..7cad34a 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 8ac0936..20e8dab 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 b2e577d..a709de7 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 bff5298..21c4b06 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 bcd6c01..d56b239 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 9c9007a..2546a1b 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 9b01ab2..8d5c523 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 1f07144..7dcfc02 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 fc3cbcd..7bb9bb7 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 5eae9a8..293b10c 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 edfc4ad..af763fd 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 c243180..8694432 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 e43297b..d1057e4 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 4f4bdf5..80f27e6 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 9f57f5b..e79e71d 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 da51efb..b0d96f6 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 7118beb..7ec5764 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 cd92ea9..e4a1fcd 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 0f135d8..4e1f0e4 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 d212336..8604cbd 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 5bb262d..e559ab3 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 fdcaf69..eb3d076 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 af443a5..6073a9b 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 c70bd61..7971d5b 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 acc98c4..35114c4 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 a42eba5..5cb702b 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 1d033d5..2ceb387 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 8635f47..a66408f 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 4b059aa..ea29039 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 dc11fee..7d8b01d 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 cc3fd33..0fb63a5 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 2c751f6..3f2865b 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 28b201b..0a2d806 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 5d2ea09..9fdd358 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 29e34eb..bfc5161 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 0cbd335..fbad03d 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 646f5ab..2e2e599 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 d19ebaf..5b6651f 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 ed92315..c37f7c9 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 49b1760..7170bbb 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 ae08cfd..9b87742 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 92d75bb..a80554e 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 1a3a5fe..ec5e404 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 85950e1..9c6dc0c 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 ddff5ef..abee5b3 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 0f3f386..9a532e1 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 0c0839d..1f99cbd 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 c160910..edd9929 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 0bbcc66..05aeb7c 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 5712998..73e5261 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 8583a575..91852c8 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 85d4080..f1a9d91 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 ee413b1..859b138 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 e58f07d..f2295b7 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 b6c8e0b..c152546 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 568bde8..f547b95 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 6c7d15b..d507f0b 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 607ae99..1f89aa8 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 7d821bc..1adc46d 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 12f8c12..fb7c021 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 9bfcf5e..9fc1518 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 707da7b..b889152 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 6b3ae09..89368fb 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 2661f48..3d1c198 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 dc22f27..3e50a10 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 410bab4..dece6c9 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 51a9afa..d9d8563 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 532f0f9..3abfcfd 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 75825ca..571bdf2 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 c3accc1..a067e2a 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 d0792d8..738b9fb 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 2f64ed4..678592f 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 65c3402..05e79cb 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 2a04eee..9d47c2a 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 617d74b..b381715 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 348c86a..9b8aaa3 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 7498d9d..4190d1d 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 f3a5355..673194d 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 82b9421..f05a84d 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 3393fb3..a5cc3cd 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 9b409f1..6135875 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 1251442..510eb33 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 46fb4a2..b4f0b7f 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 6f50f7d..1378c10 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 00b7bc9..e59df4f 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 5f3eea7..2d77411 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 9d8e28f..67a3358 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 7be0673..74a1f42 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 9e14ffa..c0b713c 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 d1446fe..620e461 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 b2f5972..4989513 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 130aa8b..029b22e 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 d119d5c..c7f3c25 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 449b98f..321e78c 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 d5b3402..3cd7234 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 8901ba8..ef34799 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 df98afe..0691000 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 d4aca36..adda025 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 b5a582a..f35c0a1 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 d5295e4..066a0d8 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 97d32c0..943f007 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 83ac677..fbd20d0 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 3f091f5..63c7af4 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 ca30199..dfc4a9c 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 f1f3c7c..21f54ba 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 c92c846..b92f738 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 930df68..bca53be 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 7b1cfce..b8ab4c3 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 0a28836..0ebd9c6 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 1c81a0d..49132a2 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 dc20bc5..d71af70 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 954288a..d83d9ba 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 7472642..73de0af 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 232347d..99adf17 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 ccbee2b..8b5fcc4 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 23b7cbb..713c1aa 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 caf87f3..37b5737 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 02922fa..67bc7b9 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 55049ec..325ae6b 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 0d46402..7ce1a96 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 ed5b05c..085ca85 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 cf1eee8..1eaf6ae 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 9eac51e..840e546 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 672a132..070ad28 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 ce51052..57227d8 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 367d484..8a64711 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 0266509..d9b83cd 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 fd3f571..bbcffd6 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 860f031..29df11f 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 86a36c7..44af0f8 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 4149a14..127902b 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 781ab26..7f8cd1a 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 c37a37a..fec3893 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 ae7b343..6b045ad 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 5d8225c..28db211 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 f777ad5..b08abd8 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 d74b7a6..5d4930c 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 4ec3b1d..82fce63 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 40a47fd..cd5ef86 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 df060d3..1604d0b 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 59ae5ae..cf7d8dc 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 5b02b19..8819f15 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 bbde03c..06d3d8d 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 e4db7fe..245fa35 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 1ecd441..c32acc8 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 c077cd0..a39e77a 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 a1211c6..86f4f59 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 371e146..f08cbf8 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 4d11882..84b6d90 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 74d739b..5727adb 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 8a1e3e3..b266815 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 25d7edf..5913dc2 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 7bd0839..1828797 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 da91764..56a1717 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 72a6e70..4bd79e1 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 50119cd..d686361 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 34e70b4..0c8306f 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 f6215a0..b09bd4d 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 c365887..d612825 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 2751a3e..1379fbb 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 c611b1d..5b64303 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 66c9de3..9523c5e 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 056a7b7..a04b793 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 eb675b8..08dd051 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 92dde0f..0d96299 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 7b1b156..845bc7c 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 19118bb..73d1c79 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 639dd87..bf58f33 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 f2e13d2..ef2b176 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 a8bb5a7..ca404af 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 45c98c8..74da768 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 7029995..c220016 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 1041ae7..dc8e99f 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 a5b1cda..b2419ca 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 5750510..ba29203 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 805777b..7cb7dbc 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 41d8b32..3a21691 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 a705140..01b35b1 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 defaa5a..1958311 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 9e7682e..cb5605d 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 dc53ea4..9ea2f2d 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 4c79ed0..e3f669a 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 9d2ac49..8121a94 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 8d5b1db..2125c7a 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 5d021ee..ac2178d 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 5fbbcc5..1e85751 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 a72e5a7..c10ae63 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 bcf745e..cedf945 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 2dd4b65..73155de 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 9dec9ee..b2ced10 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 fac62cc..d7fe96d 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 08631b5..2ebd4e0 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 e1a4558..f9cc6c9 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 67b5522..d2a1825 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 627fc43..d8e0b5b 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 79add4b..9f0c492 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 47cdc6b..daff337 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 5c8b7eb..a86b960 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 8c5ca57..91fca5c 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 3df2576..1dda5e4 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 189c566..fb2c024 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 f23db02..8421fb3 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 60bdded..050e1cc 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 67b65e2..23fadce 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 2c4c852..0cd557f 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 287eadd..21ef67d 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 d5dd024..0d597de 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 a9fdba2..007b927 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 66e2170..86db0d0 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 8a7a3b9..02d0295 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 932ae40..eaf88c5 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 cea017a..9bd1b8a 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 43afdfe..43169fe 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 a175b6c..ab686a6 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 5447460..412c16f 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 d9325ff..367f373 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 1528fcc..feb8fee 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 34b0036..f472d3d 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 8c12546..6032e7b 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 a2de162..3aa0281 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 c32448d..73add46 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 4b45f9d..7421b18 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 2be0830..ab38967 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 074784c..e913fe9 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 bf0ed26..b139341 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 fb32df2..a61ceb6 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 57e91a6..89fb213 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 27ede54..552020b 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 74ca6e1..29f4255 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 3d67391..118eb7e 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 bd961dd..9edc38f 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 a245733..487dc6a 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 be83231..77e8e80 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 7ba1c79..610b023 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 f09b4ff..deb295e 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 8dded97..643dded 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 2632552..19e2a3e 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 0538b12..1a7c560 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 40f7225..11828a8 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 772c847..0dc2085 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 57e7e4b..952410f 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 0a96a29..d4a9568 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 ca5985b..90db650 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 17f8366..f33867e 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 8a035d3..500ac5a 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 2bd11c9..2a49f1a 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 63d6248..ec89563 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 a66e78b..8a1c80d 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 b86a889..37c87d0 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 5181c98..4f50ba2 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 c47d0d0..6f7be0d 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 4f8c301..76637a4 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 ad56f79..2dfd21f 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 55499af..5f82886 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 7e45ce1..7ae5757 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 b16c22c..ccb0fec 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 16c43ae..aa8b0b2 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 699b00c..515b503 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 71f0ee6..1df14ef 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 3134bc4..fdaf3ad 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 43574bf..a5e1adf 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 6260390..804784d 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 4074a84..5c2aada 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 3b50c75..da6fe7f 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 413efe3..6aeac96 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 4193197..8a35105 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 98ffcc6..bff0f8b 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 2a41013..7e12c8e 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 9b88cbb..bf38a88 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 e585888..f02aa1c 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 ed765d7..307faeb 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 5e59ac3..4247774 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 c965881..fb5e8fb 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 ab8b367..34a7a1a 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 5406dc8..2bf34f3 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 24bc9a9..a0765d0 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 f63bfd2..ec22051 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 fa468fa..4df2112 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 8c440e0..7c8e8a5 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 f13ad26..b8d2042 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 9a54435..12c2c6c 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 3e25a6c..cec79f4 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 05c7d10..9349d32 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 879fae2..ba274b1 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 03b16f5..734df8d 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 0a2302f..cedfa7b 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 492ff0a..a3245d1 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 bbdc849..4180bdd 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 2828d3a..11ef1e4 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 7d404b5..27cc222 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 c6165f6..df42dfb 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 5b2215a..937d48f 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 9ae1a81..a9f241b 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 8c15f70..632af7c 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 9fc2be3..d9ed500 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 7ea1168..7360040 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 815764b..f63192c 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 de2142b..4bd26db 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 0fd6328..2fae35a 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 e3ee53c..5ef208d 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 9f772e1..946aaf9 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 663344d..11f726b 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 21c2090..717b92b 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 8569ed2..9e6409e 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 ce84c3f..c5ca372 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 1f661f1..b19d6da 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 d29eeb7..856c8f3 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 4c4b98b..3d846fa 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 4079589..5b0dac6 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 3c62e14..c93e9db 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 532b18b..95325dc 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 4446404..54b69a4 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 6091412..7e40dc5 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 95b6f43..974dba4 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 b729a78..7105da9 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 e6288f6..c5994f2 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 27d6cfd..183349c 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 88b8651..b5ce70b 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 11ef374..fa92e3e 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 72ef571..40a275c 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 b9e7a59..203c053 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 c3ed063..cfae53b 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 a09b588..5f9faf8 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 15cecba..f10eab2 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 142c58c..c419ae0 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 a906eb6..6ffbee5 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 9880e3c..12fa63b 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 c31f77f..e5ab2e0 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 5d41ad1..79732cf 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 ea7fbe7..93d7a87 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 6b1d69e..816b03f 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 8eab86e..e99fd52 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 7ab342a..c2b3d84 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 b72f1e6..0e4ea10 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 7fd2b72..46021fc 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 5913dd7..c9eb26c 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 0599155..143e020 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 0fb052f..3c31f9c 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 0f5a8a6..5f82150 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 b230608..da7f723 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 10938af..901a34c 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 66cd9b6..dcf9071 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 67ab649..95e2e2d 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 e17143d..cc19b09 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 faf221e..eeebd50 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 f91da6b..879b57e 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 b18bb94..0974b90 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 bdaf15a..62d0bed 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 4778aac..661a8c1 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 2d77ce0..ac8277a 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 208cf3a..becca45 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 3e7f4aa..49da446 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 78199e1..d827380 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 bdea76a..5bc7a15 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 e239c8c..b8109e8 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 acf210f..13293d1 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 6ab66e2..f071e85 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 5a6d342..a46716d 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 afd2067..64403f9 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 2e6e975..ba8abf7 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 7edba8f..2b9ffa6 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 be38a9b..de72bec 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 f50c8dd..ce5386d 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 c218b00..697122c 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 d6f8310..7f9fb99 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 3a08570..2b42a53 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 828f105..3241e2e 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 2ea2b85..d4d64e6 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 3c4020b..c6065e5 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 8b68e04..225fbb9 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 5b5c75b..367ad3c 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 ddbecc6..3c973b7 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 11005ad..cd892a3 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 59e2d88..ef1e73b 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 7ccdf64..126196c 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 7492262..596982b 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 fdf3f56..cf373f3 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 60b94b2..eb913c0 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 6cb0fe2..8e21416 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 2c414c6..07fd500 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 4b8b0ca..72b20c8 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 d4bc62a..a0c0205 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 755af26..830cb0e 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 915133a..451ac21 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 73576ca..d9e2c59 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 f723a9c..0679d04 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 99abbc5..6730c43 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 62f135c..e21d9b1 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 741a7b1..2fdc80a 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 90b210f..3a305ad 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 6af5665..6f3deb7 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 70848aa..9c9efd3 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 8137bce..dbf6ed2 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 3dba94b..41f11af 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 aee74ca..d7c7746 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 a636cba..0030bbe 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 97f03b6..82b9ce9 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 b1472a6..95f8ee3 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 9d5c971..67cb929 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 d1be40a..63e2286 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 41b80c3..e223822 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 1461a35..6ae7732 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 11a0ff0..c8da478 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 68632b4..b3ee848 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 8c07e75..aafbd4a 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 c17c683..783bf0c 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 298f19a..990337d 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 833d7e4..b2572ca 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 4d372d1..e2d1d52 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 3c32b90..366efe6 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 7a954fb..7004819 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 2622393..20722e2 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 269aea4..5d4cae9 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 1785514..755b416 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 e910bd7..4f87d86 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 aa04bc4..de77517 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 5b72787..4e860ce 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 baaff65..10637a4 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 693f074..d3b386a 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 9ac9dc1..e11e7e4 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 3f84b44..43381f7 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 66df779..0f4d0a6 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 fc89224..77fb5c9 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 13347f6..23e8000 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 d2f25f2..461cb90 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 76fb5b2..c7b5ec9 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 316be01..e7a5851 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 001777a..a92e7b8 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 cfe5c07..75cd604 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 daf61c0..880ae12 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 4910adb..03ce268 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 3c7cd06..ac1a6b2 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 320dbc3..68a293b 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 3595c23..b4be76a 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 65b44b5..367b28f 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 330559e..5a1735e 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 7031f31..7a3b50c 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 225f6ef..e942aca 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 6b714fe..5719790 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 3bfa613..0599b5a 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 09280e9..095e366 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 594f265..41ff14b 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 7c308cf..972ecdc 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 a5af1eb..f163667 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 a6ce821..0b6b9d9 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 74bfd90..240f759 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 6d53452..2d4b07a 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 cc4d286..6f61287 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 4d65607..15ff4ea 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 d7442c6..0bdc22e 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 69a9565..9cc40c7 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 6e40083..569d3ec 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 4827345..3cabbba 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 a38497f..5a0f78b 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 1a8a67d..8b30ff1 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 205e1cf..0dc07c4 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 28190f4..3411d4d 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 ac3a36e..e169488 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 52a3dc8..c44b243 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 6a96c0b..6baf360 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 2c327da..891a2ab 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 e911d4f..4ed9e8d 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 c5d2263..0a2aef1 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 740ffc2..1a7c657 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 bb70958..cbbe685 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 3476a84..f24d2f5 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 257f800..f248bf1 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 a6286f7..4e3b7b9 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 952cf1c..be78bb5 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 0855d34..a1f8179 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 71c1ff9..8b949d9 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 eb737f7..0fac600 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 09f026b..22e608f 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 9de2607..e584f36 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 747c58b..1f50f73 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 4f88056..e0a828a 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 4fd2811..6224e26 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 a678797..c317d33 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 27df608..c19e859 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 9db2583..efc222d 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 710d94d..b682617 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 63cced5..f547585 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 3e7c15e..b7fecdd 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 b8a35e5..51b2001 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 acd99cb..25b5899 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 871cb97..dd90b5b 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 30c7adf..dc6f69e 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 ca610ce..7e8029c 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 d01b072..182c93d 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 5d3526c..b5b5a4c 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 122c658..af94894 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 13bad9f..471afcc 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 087339b..4c8ec6a 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 9172aae..84a2dd0 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 a8af9c5..8ee5b10 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 1b849e8..d254f92 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 41a8c7a..5ec92d6 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 1298598..a778a18 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 5d1970e..09ab645 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 0251b61..6a1589d 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 536bd76..acfa72c 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 96a5180..59683f0 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 224c4ca..5541281 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 129c54b..ebf495f 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 cb0247b..e16320d 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 9b9ab07..1673b27 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 74bd49a..15eee7e 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 73acb18..17c122d 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 18fefeb..fa13572 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.