Feature: Allow for the group and user functions to not require a write value.
authorKevin Day <Kevin@kevux.org>
Wed, 12 Feb 2025 01:56:07 +0000 (19:56 -0600)
committerKevin Day <Kevin@kevux.org>
Wed, 12 Feb 2025 01:56:07 +0000 (19:56 -0600)
commit0e18c4f255da4300784777b298dc5efe0625bb39
treebcb9a6bb5cf63550aec529736eeaa3e1db087cf5
parent283fe1e8565fe66409c88825c250a6ec8aae6420
Feature: Allow for the group and user functions to not require a write value.

Several of these functions can be used to just check the validity of an ID or name.
Use the NULL pointer case to support this rather than writing a completely new functions for this logic.

For example, the `f_account_group_id_by_name()` function can have NULL for the `id` parameter.
In this case, nothing is written for the `id` and the function does not error out on invalid parameter (for when `id` is NULL).
The same logic is applied for the `f_account_group_name_by_id()` for the `name` parameter.

The same logic is applied for both user functions.

The account by functions are not updated as this is not needed.
Update the documentation for the account by functions, documenting that NULL is not allowed.
level_0/f_account/c/account.c
level_0/f_account/c/account.h
level_0/f_account/tests/unit/c/test-account-group_id_by_name.c
level_0/f_account/tests/unit/c/test-account-group_id_by_name.h
level_0/f_account/tests/unit/c/test-account-group_name_by_id.c
level_0/f_account/tests/unit/c/test-account-group_name_by_id.h
level_0/f_account/tests/unit/c/test-account-id_by_name.c
level_0/f_account/tests/unit/c/test-account-id_by_name.h
level_0/f_account/tests/unit/c/test-account-name_by_id.c
level_0/f_account/tests/unit/c/test-account-name_by_id.h
level_0/f_account/tests/unit/c/test-account.c