]> Kevux Git Server - fll/commit
Cleanup: Reduce duplicate code in the fll_error print functions.
authorKevin Day <Kevin@kevux.org>
Thu, 20 Feb 2025 05:12:08 +0000 (23:12 -0600)
committerKevin Day <Kevin@kevux.org>
Thu, 20 Feb 2025 05:12:08 +0000 (23:12 -0600)
commit8d6852829e6204203f6e81f40dbe874cef55cae5
treebe71462c48f906eaaf6624bd7a5c526889799d60
parentc729b786930cf7a0d7bf2bf529cd59b2a1778551
Cleanup: Reduce duplicate code in the fll_error print functions.

Populate the `type_name` via a nested ternary instead of an if else if blocks.
The if else if blocks are cleaner but I want to have the `type_name` be a constant variable.
This should help the compiler optimize the variable.

Replace a lot of the repeated styles with new private functions.
This reduces quite a bit of repeated lines of code based on common patterns.

I do intend to follow this up at a later date with a commit that moves all of the static strings into a global array.
level_2/fll_error/c/error.c
level_2/fll_error/c/private-error.c
level_2/fll_error/c/private-error.h