From 8c120a6b692f4a1479db9a2e48e261f03f728bc5 Mon Sep 17 00:00:00 2001 From: Kevin Day Date: Wed, 21 Feb 2024 21:50:12 -0600 Subject: [PATCH] Cleanup: Use F_true and F_False instead of TRUE and FALSE in the documentation comments. --- level_0/f_capability/c/capability.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/level_0/f_capability/c/capability.h b/level_0/f_capability/c/capability.h index 09d7eb1..66cdfe3 100644 --- a/level_0/f_capability/c/capability.h +++ b/level_0/f_capability/c/capability.h @@ -866,8 +866,8 @@ extern "C" { * Check if capabilities are supported. * * @return - * TRUE if supported. - * FALSE otherwise. + * F_true if supported. + * F_false otherwise. */ #ifndef _di_f_capability_supported_ extern bool f_capability_supported(void); @@ -880,8 +880,8 @@ extern "C" { * The capability code. * * @return - * TRUE if the code is supported. - * FALSE otherwise. + * F_true if the code is supported. + * F_false otherwise. * * @see CAP_IS_SUPPORTED() */ @@ -893,8 +893,8 @@ extern "C" { * Check if capabilities support ambient, using special libcap function/macro. * * @return - * TRUE if ambient is supported. - * FALSE otherwise. + * F_true if ambient is supported. + * F_false otherwise. * * @see CAP_AMBIENT_SUPPORTED() */ -- 1.8.3.1