From d3283b99b18fdb91445685ad31b1a7d3fad99917 Mon Sep 17 00:00:00 2001 From: Kevin Day Date: Tue, 27 Dec 2022 09:52:26 -0600 Subject: [PATCH] Update: Code documentation is missing the function fl_conversion_dynamic_partial_to_unsigned_detect(). --- level_3/controller/c/controller/private-controller.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/level_3/controller/c/controller/private-controller.h b/level_3/controller/c/controller/private-controller.h index 755af26..80d4ee5 100644 --- a/level_3/controller/c/controller/private-controller.h +++ b/level_3/controller/c/controller/private-controller.h @@ -158,9 +158,11 @@ extern "C" { * * Errors (with error bit) from: f_account_id_by_name(). * Errors (with error bit) from: fl_conversion_dynamic_partial_to_unsigned_detect(). + * Errors (with error bit) from: fl_string_dynamic_partial_rip_nulless(). * * @see f_account_id_by_name() * @see fl_conversion_dynamic_partial_to_unsigned_detect() + * @see fl_string_dynamic_partial_rip_nulless() */ #ifndef _di_controller_get_id_user_ f_status_t controller_get_id_user(const f_string_static_t buffer, const f_string_range_t range, controller_cache_t * const cache, uid_t * const id) F_attribute_visibility_internal_d; @@ -185,9 +187,11 @@ extern "C" { * * Errors (with error bit) from: f_account_group_id_by_name(). * Errors (with error bit) from: fl_conversion_dynamic_partial_to_unsigned_detect(). + * Errors (with error bit) from: fl_string_dynamic_partial_rip_nulless(). * * @see f_account_group_id_by_name() * @see fl_conversion_dynamic_partial_to_unsigned_detect() + * @see fl_string_dynamic_partial_rip_nulless() */ #ifndef _di_controller_get_id_group_ f_status_t controller_get_id_group(const f_string_static_t buffer, const f_string_range_t range, controller_cache_t * const cache, gid_t * const id) F_attribute_visibility_internal_d; -- 1.8.3.1