From a67378893aed7c964ea3f1a76859e8f6b5ed8537 Mon Sep 17 00:00:00 2001 From: Kevin Day Date: Sat, 6 Dec 2025 22:23:03 -0600 Subject: [PATCH] Cleanup: Make F_failure documentation comments more consistent. --- level_0/f_capability/c/capability.h | 36 +++++++++--------- level_0/f_capability/c/capability/common.h | 1 - level_0/f_directory/c/directory.h | 34 ++++++++--------- level_0/f_directory/c/private-directory.h | 4 +- level_0/f_file/c/file.h | 60 +++++++++++++++--------------- level_0/f_file/c/file/stream.h | 4 +- level_0/f_file/c/private-file.h | 28 +++++++------- level_0/f_path/c/path.h | 8 ++-- level_0/f_path/c/private-path.h | 2 +- level_0/f_schedule/c/schedule.h | 30 +++++++-------- level_0/f_signal/c/signal.h | 30 +++++++-------- level_0/f_socket/c/socket.h | 34 ++++++++--------- level_0/f_type/c/type.h | 2 + level_1/fl_directory/c/directory.h | 2 +- level_2/fll_file/c/file.h | 4 +- level_2/fll_file/c/private-file.h | 4 +- 16 files changed, 142 insertions(+), 141 deletions(-) diff --git a/level_0/f_capability/c/capability.h b/level_0/f_capability/c/capability.h index 642368b..11649dc 100644 --- a/level_0/f_capability/c/capability.h +++ b/level_0/f_capability/c/capability.h @@ -63,7 +63,7 @@ extern "C" { * F_parameter (with error bit) if a parameter is invalid. * F_support_not (with error bit) if the system does not support ambient capabilities. * - * F_failure (with error bit) on any other failure. + * F_failure (with error bit) on any other error. * * @see cap_set_ambient() */ @@ -82,7 +82,7 @@ extern "C" { * F_parameter (with error bit) if a parameter is invalid. * F_prohibited (with error bit) if the file system does not permit this operation. * - * F_failure (with error bit) on any other failure. + * F_failure (with error bit) on any other error. * * @see cap_reset_ambient() */ @@ -106,7 +106,7 @@ extern "C" { * F_parameter (with error bit) if a parameter is invalid. * F_prohibited (with error bit) if the file system does not permit this operation. * - * F_failure (with error bit) on any other failure. + * F_failure (with error bit) on any other error. * * @see cap_set_ambient() */ @@ -126,7 +126,7 @@ extern "C" { * F_implement_not (with error bit) if this function is not available (due to not having libcap support compiled in). * F_parameter (with error bit) if a parameter is invalid. * - * F_failure (with error bit) on any other failure. + * F_failure (with error bit) on any other error. * * @see cap_clear() */ @@ -149,7 +149,7 @@ extern "C" { * F_memory_not (with error bit) if a out of memory. * F_parameter (with error bit) if a parameter is invalid. * - * F_failure (with error bit) on any other failure. + * F_failure (with error bit) on any other error. * * @see cap_clear_flag() */ @@ -176,7 +176,7 @@ extern "C" { * F_implement_not (with error bit) if this function is not available (due to not having libcap support compiled in). * F_parameter (with error bit) if a parameter is invalid. * - * F_failure (with error bit) on any other failure. + * F_failure (with error bit) on any other error. * * @see cap_compare() */ @@ -200,7 +200,7 @@ extern "C" { * F_memory_not (with error bit) if a out of memory. * F_parameter (with error bit) if a parameter is invalid. * - * F_failure (with error bit) on any other failure. + * F_failure (with error bit) on any other error. * * @see cap_dup() */ @@ -277,7 +277,7 @@ extern "C" { * F_memory_not (with error bit) if a out of memory (which doesn't make sense here but man page includes this). * F_parameter (with error bit) if a parameter is invalid. * - * F_failure (with error bit) on any other failure. + * F_failure (with error bit) on any other error. * * @see cap_free() */ @@ -308,7 +308,7 @@ extern "C" { * F_prohibited (with error bit) if the file system does not permit this operation. * F_support_not (with error bit) if the file system does not support this operation. * - * F_failure (with error bit) on any other failure. + * F_failure (with error bit) on any other error. * * @see cap_get_fd() */ @@ -338,7 +338,7 @@ extern "C" { * F_prohibited (with error bit) if the file system does not permit this operation. * F_support_not (with error bit) if the file system does not support this operation. * - * F_failure (with error bit) on any other failure. + * F_failure (with error bit) on any other error. * * @see cap_set_fd() */ @@ -369,7 +369,7 @@ extern "C" { * F_prohibited (with error bit) if the file system does not permit this operation. * F_support_not (with error bit) if the file system does not support this operation. * - * F_failure (with error bit) on any other failure. + * F_failure (with error bit) on any other error. * * @see cap_get_file() */ @@ -399,7 +399,7 @@ extern "C" { * F_prohibited (with error bit) if the file system does not permit this operation. * F_support_not (with error bit) if the file system does not support this operation. * - * F_failure (with error bit) on any other failure. + * F_failure (with error bit) on any other error. * * @see cap_set_file() */ @@ -426,7 +426,7 @@ extern "C" { * F_implement_not (with error bit) if this function is not available (due to not having libcap support compiled in). * F_parameter (with error bit) if a parameter is invalid. * - * F_failure (with error bit) on any other failure. + * F_failure (with error bit) on any other error. * * @see cap_get_flag() */ @@ -453,7 +453,7 @@ extern "C" { * F_implement_not (with error bit) if this function is not available (due to not having libcap support compiled in). * F_parameter (with error bit) if a parameter is invalid. * - * F_failure (with error bit) on any other failure. + * F_failure (with error bit) on any other error. * * @see cap_set_flag() */ @@ -478,7 +478,7 @@ extern "C" { * F_memory_not (with error bit) if a out of memory. * F_parameter (with error bit) if a parameter is invalid. * - * F_failure (with error bit) on any other failure. + * F_failure (with error bit) on any other error. * * @see cap_from_name() */ @@ -503,7 +503,7 @@ extern "C" { * F_memory_not (with error bit) if a out of memory. * F_parameter (with error bit) if a parameter is invalid. * - * F_failure (with error bit) on any other failure. + * F_failure (with error bit) on any other error. * * @see cap_from_text() */ @@ -923,7 +923,7 @@ extern "C" { * F_parameter (with error bit) if a parameter is invalid. * F_string_too_large (with error bit) if appended string length is too large to store in the buffer. * - * F_failure (with error bit) on any other failure. + * F_failure (with error bit) on any other error. * * Errors (with error bit) from: f_memory_array_resize(). * @@ -955,7 +955,7 @@ extern "C" { * F_parameter (with error bit) if a parameter is invalid. * F_string_too_large (with error bit) if appended string length is too large to store in the buffer. * - * F_failure (with error bit) on any other failure. + * F_failure (with error bit) on any other error. * * Errors (with error bit) from: f_memory_array_resize(). * diff --git a/level_0/f_capability/c/capability/common.h b/level_0/f_capability/c/capability/common.h index ebabef6..7d261af 100644 --- a/level_0/f_capability/c/capability/common.h +++ b/level_0/f_capability/c/capability/common.h @@ -29,7 +29,6 @@ extern "C" { * - set: Set the capability. */ #ifndef _di_f_capability_t_ - enum { f_capability_value_type_effective_e = 0, f_capability_value_type_permitted_e, diff --git a/level_0/f_directory/c/directory.h b/level_0/f_directory/c/directory.h index 8d58295..cd87270 100644 --- a/level_0/f_directory/c/directory.h +++ b/level_0/f_directory/c/directory.h @@ -71,7 +71,7 @@ extern "C" { * F_prohibited (with error bit) if file system does not allow for removing. * F_read_only (with error bit) if file is read-only. * F_space_not (with error bit) if file system is out of space (or file system quota is reached). - * F_failure (with error bit) for any other error. + * F_failure (with error bit) on any other error. * * @see mkdir() */ @@ -107,7 +107,7 @@ extern "C" { * F_prohibited (with error bit) if file system does not allow for removing. * F_read_only (with error bit) if file is read-only. * F_space_not (with error bit) if file system is out of space (or file system quota is reached). - * F_failure (with error bit) for any other error. + * F_failure (with error bit) on any other error. * * @see mkdirat() */ @@ -135,7 +135,7 @@ extern "C" { * F_file_open_max (with error bit) too many open files. * F_memory_not (with error bit) on out of memory. * F_parameter (with error bit) if a parameter is invalid. - * F_failure (with error bit) for any other error. + * F_failure (with error bit) on any other error. * * Errors (with error bit) from: f_file_stat_at(). * @@ -283,7 +283,7 @@ extern "C" { * F_array_too_large (with error bit) if the directory buffer max length would be exceeded. * F_memory_not (with error bit) on out of memory. * F_parameter (with error bit) if a parameter is invalid. - * F_failure (with error bit) for any other error. + * F_failure (with error bit) on any other error. * * @see alphasort() * @see scandir() @@ -326,7 +326,7 @@ extern "C" { * F_prohibited (with error bit) if file system does not allow for removing. * F_read_only (with error bit) if file is read-only. * F_space_not (with error bit) if file system is out of space (or file system quota is reached). - * F_failure (with error bit) for any other error. + * F_failure (with error bit) on any other error. * * @see open() */ @@ -370,7 +370,7 @@ extern "C" { * F_prohibited (with error bit) if file system does not allow for removing. * F_read_only (with error bit) if file is read-only. * F_space_not (with error bit) if file system is out of space (or file system quota is reached). - * F_failure (with error bit) for any other error. + * F_failure (with error bit) on any other error. * * @see openat() */ @@ -410,7 +410,7 @@ extern "C" { * F_parameter (with error bit) if a parameter is invalid. * F_prohibited (with error bit) if file system does not allow for removing. * F_read_only (with error bit) if file is read-only. - * F_failure (with error bit) for any other error. + * F_failure (with error bit) on any other error. * * @see nftw() * @see remove() @@ -454,7 +454,7 @@ extern "C" { * F_parameter (with error bit) if a parameter is invalid. * F_prohibited (with error bit) if file system does not allow for removing. * F_read_only (with error bit) if file is read-only. - * F_failure (with error bit) for any other error. + * F_failure (with error bit) on any other error. * * @see nftw() * @see remove() @@ -473,7 +473,7 @@ extern "C" { * F_okay on success. * * F_directory_descriptor_not (with error bit) for bad directory descriptor. - * F_failure (with error bit) for any other error. + * F_failure (with error bit) on any other error. * * @see closedir() */ @@ -503,7 +503,7 @@ extern "C" { * F_file_open_max (with error bit) too many open files. * F_memory_not (with error bit) if out of memory. * F_parameter (with error bit) if a parameter is invalid. - * F_failure (with error bit) for any other error. + * F_failure (with error bit) on any other error. * * @see fdopendir() */ @@ -534,7 +534,7 @@ extern "C" { * F_file_open_max (with error bit) too many open files. * F_memory_not (with error bit) if out of memory. * F_parameter (with error bit) if a parameter is invalid. - * F_failure (with error bit) for any other error. + * F_failure (with error bit) on any other error. * * @see fdopendir() */ @@ -558,7 +558,7 @@ extern "C" { * * F_directory_descriptor_not (with error bit) for bad directory descriptor. * F_parameter (with error bit) if a parameter is invalid. - * F_failure (with error bit) for any other error. + * F_failure (with error bit) on any other error. * * @see readdir() */ @@ -575,7 +575,7 @@ extern "C" { * @return * F_okay on success. * - * F_failure (with error bit) for any other error. + * F_failure (with error bit) on any other error. * * @see rewinddir() */ @@ -594,7 +594,7 @@ extern "C" { * @return * F_okay on success. * - * F_failure (with error bit) for any other error. + * F_failure (with error bit) on any other error. * * @see seekdir() */ @@ -617,7 +617,7 @@ extern "C" { * * F_directory_descriptor_not (with error bit) for bad directory descriptor. * F_parameter (with error bit) if a parameter is invalid. - * F_failure (with error bit) for any other error. + * F_failure (with error bit) on any other error. * * @see telldir() */ @@ -657,7 +657,7 @@ extern "C" { * F_prohibited (with error bit) if file system does not allow for creating or linking. * F_read_only (with error bit) if file system is read-only. * F_search (with error bit) if search permission is denied for one of the paths to the file. - * F_failure (with error bit) for any other error. + * F_failure (with error bit) on any other error. * * @see utimensat() */ @@ -701,7 +701,7 @@ extern "C" { * F_prohibited (with error bit) if file system does not allow for creating or linking. * F_read_only (with error bit) if file system is read-only. * F_search (with error bit) if search permission is denied for one of the paths to the file. - * F_failure (with error bit) for any other error. + * F_failure (with error bit) on any other error. * * @see utimensat() */ diff --git a/level_0/f_directory/c/private-directory.h b/level_0/f_directory/c/private-directory.h index 1d09e52..3651c42 100644 --- a/level_0/f_directory/c/private-directory.h +++ b/level_0/f_directory/c/private-directory.h @@ -40,7 +40,7 @@ extern "C" { * F_prohibited (with error bit) if file system does not allow for removing. * F_read_only (with error bit) if file is read-only. * F_space_not (with error bit) if file system is out of space (or file system quota is reached). - * F_failure (with error bit) for any other error. + * F_failure (with error bit) on any other error. * * @see f_directory_create() * @see f_directory_touch() @@ -78,7 +78,7 @@ extern "C" { * F_prohibited (with error bit) if file system does not allow for removing. * F_read_only (with error bit) if file is read-only. * F_space_not (with error bit) if file system is out of space (or file system quota is reached). - * F_failure (with error bit) for any other error. + * F_failure (with error bit) on any other error. * * @see f_directory_create_at() * @see f_directory_touch_at() diff --git a/level_0/f_file/c/file.h b/level_0/f_file/c/file.h index 5bd3af8..5ca80bc 100644 --- a/level_0/f_file/c/file.h +++ b/level_0/f_file/c/file.h @@ -171,7 +171,7 @@ extern "C" { * F_read_only (with error bit) if file is read-only. * F_space_not (with error bit) if file system is out of space (or file system quota is reached). * F_support_not if copying a given type of file is unsupported. - * F_failure (with error bit) for any other error. + * F_failure (with error bit) on any other error. */ #ifndef _di_f_file_clone_ extern f_status_t f_file_clone(const f_string_static_t source, const f_string_static_t destination, const f_number_unsigned_t size_block, const uint8_t flag); @@ -280,7 +280,7 @@ extern "C" { * F_read_only (with error bit) if file is read-only. * F_space_not (with error bit) if file system is out of space (or file system quota is reached). * F_support_not if copying a given type of file is unsupported. - * F_failure (with error bit) for any other error. + * F_failure (with error bit) on any other error. */ #ifndef _di_f_file_copy_ extern f_status_t f_file_copy(const f_string_static_t source, const f_string_static_t destination, const f_mode_t mode, const f_number_unsigned_t size_block, const uint8_t flag); @@ -318,7 +318,7 @@ extern "C" { * F_prohibited (with error bit) if file system does not allow for making changes. * F_read_only (with error bit) if file is read-only. * F_space_not (with error bit) if file system is out of space (or file system quota is reached). - * F_failure (with error bit) for any other error. + * F_failure (with error bit) on any other error. * * @see open() */ @@ -362,7 +362,7 @@ extern "C" { * F_prohibited (with error bit) if file system does not allow for making changes. * F_read_only (with error bit) if file is read-only. * F_space_not (with error bit) if file system is out of space (or file system quota is reached). - * F_failure (with error bit) for any other error. + * F_failure (with error bit) on any other error. * * @see openat() */ @@ -401,7 +401,7 @@ extern "C" { * F_prohibited (with error bit) if file system does not allow for making changes. * F_space_not (with error bit) if file system is out of space (or file system quota is reached). * F_support_not (with error bit) for unsupported file types. - * F_failure (with error bit) for any other error. + * F_failure (with error bit) on any other error. * * @see makedev() * @see mknod() @@ -445,7 +445,7 @@ extern "C" { * F_prohibited (with error bit) if file system does not allow for making changes. * F_space_not (with error bit) if file system is out of space (or file system quota is reached). * F_support_not (with error bit) for unsupported file types. - * F_failure (with error bit) for any other error. + * F_failure (with error bit) on any other error. * * @see makedev() * @see mknodat() @@ -477,7 +477,7 @@ extern "C" { * F_prohibited (with error bit) if file system does not allow for making changes. * F_space_not (with error bit) if file system is out of space (or file system quota is reached). * F_support_not (with error bit) for unsupported file types. - * F_failure (with error bit) for any other error. + * F_failure (with error bit) on any other error. * * @see mkfifo() */ @@ -512,7 +512,7 @@ extern "C" { * F_prohibited (with error bit) if file system does not allow for making changes. * F_space_not (with error bit) if file system is out of space (or file system quota is reached). * F_support_not (with error bit) for unsupported file types. - * F_failure (with error bit) for any other error. + * F_failure (with error bit) on any other error. * * @see mkfifoat() */ @@ -546,7 +546,7 @@ extern "C" { * F_prohibited (with error bit) if file system does not allow for making changes. * F_space_not (with error bit) if file system is out of space (or file system quota is reached). * F_support_not (with error bit) for unsupported file types. - * F_failure (with error bit) for any other error. + * F_failure (with error bit) on any other error. * * @see mknod() */ @@ -583,7 +583,7 @@ extern "C" { * F_parameter (with error bit) if a parameter is invalid. * F_prohibited (with error bit) if file system does not allow for making changes. * F_space_not (with error bit) if file system is out of space (or file system quota is reached). - * F_failure (with error bit) for any other error. + * F_failure (with error bit) on any other error. * F_support_not (with error bit) for unsupported file types. * * @see mknodat() @@ -694,7 +694,7 @@ extern "C" { * F_parameter (with error bit) if a parameter is invalid. * F_space_not (with error bit) if file system is out of space (or file system quota is reached). * F_support_not (with error bit) if the file system or file type does not support flushing. - * F_failure (with error bit) on any other failure. + * F_failure (with error bit) on any other error. * * @see fsync() */ @@ -849,7 +849,7 @@ extern "C" { * F_parameter (with error bit) if a parameter is invalid. * F_prohibited (with error bit) if file system does not allow for creating or linking. * F_read_only (with error bit) if file system is read-only. - * F_failure (with error bit) for any other error. + * F_failure (with error bit) on any other error. * * @see symlink() */ @@ -891,7 +891,7 @@ extern "C" { * F_parameter (with error bit) if a parameter is invalid. * F_prohibited (with error bit) if file system does not allow for creating or linking. * F_read_only (with error bit) if file system is read-only. - * F_failure (with error bit) for any other error. + * F_failure (with error bit) on any other error. * * @see symlinkat() */ @@ -928,7 +928,7 @@ extern "C" { * F_parameter (with error bit) if a parameter is invalid. * F_prohibited (with error bit) if file system does not allow for creating or linking. * F_read_only (with error bit) if file system is read-only. - * F_failure (with error bit) for any other error. + * F_failure (with error bit) on any other error. * * @see link() */ @@ -974,7 +974,7 @@ extern "C" { * F_parameter (with error bit) if a parameter is invalid. * F_prohibited (with error bit) if file system does not allow for creating or linking. * F_read_only (with error bit) if file system is read-only. - * F_failure (with error bit) for any other error. + * F_failure (with error bit) on any other error. * * @see linkat() */ @@ -1011,7 +1011,7 @@ extern "C" { * F_name (with error bit) on path name error. * F_parameter (with error bit) if a parameter is invalid. * F_string_too_large (with error bit) if link target path is too large for string buffer size. - * F_failure (with error bit) for any other error. + * F_failure (with error bit) on any other error. * * Errors (with error bit) from: f_memory_array_increase_by() * Errors (with error bit) from: f_string_dynamic_terminate_after() @@ -1059,7 +1059,7 @@ extern "C" { * F_name (with error bit) on path name error. * F_parameter (with error bit) if a parameter is invalid. * F_string_too_large (with error bit) if link target path is too large for string buffer size. - * F_failure (with error bit) for any other error. + * F_failure (with error bit) on any other error. * * Errors (with error bit) from: f_memory_array_increase_by() * Errors (with error bit) from: f_string_dynamic_terminate_after() @@ -1102,7 +1102,7 @@ extern "C" { * F_lock (with error bit) if failed to lock, such as lock table is full or too many open segments. * F_parameter (with error bit) if a parameter is invalid. * F_prohibited (with error bit) if operation is prohibited (maps to EPERM). - * F_failure (with error bit) for any other error. + * F_failure (with error bit) on any other error. * * @see fcntl() */ @@ -1331,7 +1331,7 @@ extern "C" { * F_name (with error bit) on path name error. * F_parameter (with error bit) if a parameter is invalid. * F_read_only (with error bit) if file is read-only. - * F_failure (with error bit) for any other error. + * F_failure (with error bit) on any other error. * * @see chmod() */ @@ -1368,7 +1368,7 @@ extern "C" { * F_name (with error bit) on path name error. * F_parameter (with error bit) if a parameter is invalid. * F_read_only (with error bit) if file is read-only. - * F_failure (with error bit) for any other error. + * F_failure (with error bit) on any other error. * * @see fchmodat() */ @@ -1494,7 +1494,7 @@ extern "C" { * F_prohibited (with error bit) if file system does not allow for making changes. * F_read_only (with error bit) if file is read-only. * F_support_not (with error bit) fo unsupported file types. - * F_failure (with error bit) for any other error. + * F_failure (with error bit) on any other error. * * @see open() */ @@ -1597,7 +1597,7 @@ extern "C" { * F_interrupt (with error bit) if interrupt is received. * F_memory_not (with error bit) if out of memory. * F_parameter (with error bit) if a parameter is invalid. - * F_failure (with error bit) for any other error. + * F_failure (with error bit) on any other error. * * @see poll() */ @@ -1729,7 +1729,7 @@ extern "C" { * F_parameter (with error bit) if a parameter is invalid. * F_prohibited (with error bit) if file system does not allow for making changes. * F_read_only (with error bit) if file is read-only. - * F_failure (with error bit) for any other error. + * F_failure (with error bit) on any other error. * * @see unlink() */ @@ -1764,7 +1764,7 @@ extern "C" { * F_parameter (with error bit) if a parameter is invalid. * F_prohibited (with error bit) if file system does not allow for making changes. * F_read_only (with error bit) if file is read-only. - * F_failure (with error bit) for any other error. + * F_failure (with error bit) on any other error. * * @see unlinkat() */ @@ -1809,7 +1809,7 @@ extern "C" { * F_prohibited (with error bit) if file system does not allow for making changes. * F_read_only (with error bit) if file is read-only. * F_space_not (with error bit) if file system is out of space (or file system quota is reached). - * F_failure (with error bit) for any other error. + * F_failure (with error bit) on any other error. * * @see rename() */ @@ -1864,7 +1864,7 @@ extern "C" { * F_prohibited (with error bit) if file system does not allow for making changes. * F_read_only (with error bit) if file is read-only. * F_space_not (with error bit) if file system is out of space (or file system quota is reached). - * F_failure (with error bit) for any other error. + * F_failure (with error bit) on any other error. * * @see renameat() */ @@ -1903,7 +1903,7 @@ extern "C" { * F_name (with error bit) on path name error. * F_parameter (with error bit) if a parameter is invalid. * F_read_only (with error bit) if file is read-only. - * F_failure (with error bit) for any other error. + * F_failure (with error bit) on any other error. * * @see chown() * @see lchown() @@ -1946,7 +1946,7 @@ extern "C" { * F_name (with error bit) on path name error. * F_parameter (with error bit) if a parameter is invalid. * F_read_only (with error bit) if file is read-only. - * F_failure (with error bit) for any other error. + * F_failure (with error bit) on any other error. * * @see fchownat() */ @@ -2302,7 +2302,7 @@ extern "C" { * F_prohibited (with error bit) if file system does not allow for creating or linking. * F_read_only (with error bit) if file system is read-only. * F_search (with error bit) if search permission is denied for one of the paths to the file. - * F_failure (with error bit) for any other error. + * F_failure (with error bit) on any other error. * * @see utimensat() */ @@ -2346,7 +2346,7 @@ extern "C" { * F_prohibited (with error bit) if file system does not allow for creating or linking. * F_read_only (with error bit) if file system is read-only. * F_search (with error bit) if search permission is denied for one of the paths to the file. - * F_failure (with error bit) for any other error. + * F_failure (with error bit) on any other error. * * @see utimensat() */ diff --git a/level_0/f_file/c/file/stream.h b/level_0/f_file/c/file/stream.h index 0faf957..d3feffa 100644 --- a/level_0/f_file/c/file/stream.h +++ b/level_0/f_file/c/file/stream.h @@ -166,7 +166,7 @@ extern "C" { * F_prohibited (with error bit) if file system does not allow for making changes. * F_read_only (with error bit) if file is read-only. * F_support_not (with error bit) fo unsupported file types. - * F_failure (with error bit) for any other error. + * F_failure (with error bit) on any other error. * * @see fopen() */ @@ -361,7 +361,7 @@ extern "C" { * F_prohibited (with error bit) if file system does not allow for making changes. * F_read_only (with error bit) if file is read-only. * F_support_not (with error bit) fo unsupported file types. - * F_failure (with error bit) for any other error. + * F_failure (with error bit) on any other error. * * @see fileno() * @see freopen() diff --git a/level_0/f_file/c/private-file.h b/level_0/f_file/c/private-file.h index 39528f4..8959350 100644 --- a/level_0/f_file/c/private-file.h +++ b/level_0/f_file/c/private-file.h @@ -90,7 +90,7 @@ extern "C" { * F_read_only (with error bit) if file is read-only. * F_space_not (with error bit) if file system is out of space (or file system quota is reached). * F_support_not if copying a given type of file is unsupported. - * F_failure (with error bit) for any other error. + * F_failure (with error bit) on any other error. * * @see open() * @@ -136,7 +136,7 @@ extern "C" { * F_prohibited (with error bit) if file system does not allow for making changes. * F_read_only (with error bit) if file is read-only. * F_space_not (with error bit) if file system is out of space (or file system quota is reached). - * F_failure (with error bit) for any other error. + * F_failure (with error bit) on any other error. * * @see open() * @@ -184,7 +184,7 @@ extern "C" { * F_prohibited (with error bit) if file system does not allow for making changes. * F_read_only (with error bit) if file is read-only. * F_space_not (with error bit) if file system is out of space (or file system quota is reached). - * F_failure (with error bit) for any other error. + * F_failure (with error bit) on any other error. * * @see openat() * @@ -221,7 +221,7 @@ extern "C" { * F_prohibited (with error bit) if file system does not allow for making changes. * F_read_only (with error bit) if file is read-only. * F_space_not (with error bit) if file system is out of space (or file system quota is reached). - * F_failure (with error bit) for any other error. + * F_failure (with error bit) on any other error. * * @see mkdir() * @@ -255,7 +255,7 @@ extern "C" { * F_prohibited (with error bit) if file system does not allow for making changes. * F_space_not (with error bit) if file system is out of space (or file system quota is reached). * F_support_not (with error bit) for unsupported file types. - * F_failure (with error bit) for any other error. + * F_failure (with error bit) on any other error. * * @see mkfifo() * @@ -296,7 +296,7 @@ extern "C" { * F_prohibited (with error bit) if file system does not allow for making changes. * F_space_not (with error bit) if file system is out of space (or file system quota is reached). * F_support_not (with error bit) for unsupported file types. - * F_failure (with error bit) for any other error. + * F_failure (with error bit) on any other error. * * @see mknod() * @@ -340,7 +340,7 @@ extern "C" { * F_parameter (with error bit) if a parameter is invalid. * F_prohibited (with error bit) if file system does not allow for making changes. * F_space_not (with error bit) if file system is out of space (or file system quota is reached). - * F_failure (with error bit) for any other error. + * F_failure (with error bit) on any other error. * F_support_not (with error bit) for unsupported file types. * * @see mknodat() @@ -413,7 +413,7 @@ extern "C" { * F_parameter (with error bit) if a parameter is invalid. * F_prohibited (with error bit) if file system does not allow for creating or linking. * F_read_only (with error bit) if file system is read-only. - * F_failure (with error bit) for any other error. + * F_failure (with error bit) on any other error. * * @see symlink() * @@ -455,7 +455,7 @@ extern "C" { * F_parameter (with error bit) if a parameter is invalid. * F_prohibited (with error bit) if file system does not allow for creating or linking. * F_read_only (with error bit) if file system is read-only. - * F_failure (with error bit) for any other error. + * F_failure (with error bit) on any other error. * * @see symlinkat() * @@ -491,7 +491,7 @@ extern "C" { * F_name (with error bit) on path name error. * F_parameter (with error bit) if a parameter is invalid. * F_string_too_large (with error bit) if link target path is too large for string buffer size. - * F_failure (with error bit) for any other error. + * F_failure (with error bit) on any other error. * * @see readlink() * @@ -533,7 +533,7 @@ extern "C" { * F_name (with error bit) on path name error. * F_parameter (with error bit) if a parameter is invalid. * F_string_too_large (with error bit) if link target path is too large for string buffer size. - * F_failure (with error bit) for any other error. + * F_failure (with error bit) on any other error. * * @see readlinkat() * @@ -568,7 +568,7 @@ extern "C" { * F_name (with error bit) on path name error. * F_parameter (with error bit) if a parameter is invalid. * F_read_only (with error bit) if file is read-only. - * F_failure (with error bit) for any other error. + * F_failure (with error bit) on any other error. * * @see chmod() * @@ -672,7 +672,7 @@ extern "C" { * F_name (with error bit) on path name error. * F_parameter (with error bit) if a parameter is invalid. * F_read_only (with error bit) if file is read-only. - * F_failure (with error bit) for any other error. + * F_failure (with error bit) on any other error. * * @see chown() * @see lchown() @@ -716,7 +716,7 @@ extern "C" { * F_name (with error bit) on path name error. * F_parameter (with error bit) if a parameter is invalid. * F_read_only (with error bit) if file is read-only. - * F_failure (with error bit) for any other error. + * F_failure (with error bit) on any other error. * * @see fchownat() * diff --git a/level_0/f_path/c/path.h b/level_0/f_path/c/path.h index 1915b1d..920a668 100644 --- a/level_0/f_path/c/path.h +++ b/level_0/f_path/c/path.h @@ -53,7 +53,7 @@ extern "C" { * F_name (with error bit) on path name error. * F_parameter (with error bit) if a parameter is invalid. * F_file_found_not if the path was not found. - * F_failure (with error bit) for any other error. + * F_failure (with error bit) on any other error. * * @see chdir() */ @@ -80,7 +80,7 @@ extern "C" { * F_name (with error bit) on path name error. * F_parameter (with error bit) if a parameter is invalid. * F_file_found_not if the path was not found. - * F_failure (with error bit) for any other error. + * F_failure (with error bit) on any other error. * * @see fchdir() */ @@ -112,7 +112,7 @@ extern "C" { * F_name (with error bit) on path name error. * F_parameter (with error bit) if a parameter is invalid. * F_file_found_not if the path was not found. - * F_failure (with error bit) for any other error. + * F_failure (with error bit) on any other error. * * @see getcwd() */ @@ -265,7 +265,7 @@ extern "C" { * F_name (with error bit) on path name error. * F_parameter (with error bit) if a parameter is invalid. * F_file_found_not if the path was not found. - * F_failure (with error bit) for any other error. + * F_failure (with error bit) on any other error. * * @see realpath() */ diff --git a/level_0/f_path/c/private-path.h b/level_0/f_path/c/private-path.h index 59ef434..075b532 100644 --- a/level_0/f_path/c/private-path.h +++ b/level_0/f_path/c/private-path.h @@ -36,7 +36,7 @@ extern "C" { * F_loop (with error bit) on loop error. * F_memory_not (with error bit) if out of memory. * F_parameter (with error bit) if a parameter is invalid. - * F_failure (with error bit) for any other error. + * F_failure (with error bit) on any other error. * * @see f_path_current() * @see f_path_real() diff --git a/level_0/f_schedule/c/schedule.h b/level_0/f_schedule/c/schedule.h index 9a076c6..f73d4a4 100644 --- a/level_0/f_schedule/c/schedule.h +++ b/level_0/f_schedule/c/schedule.h @@ -62,7 +62,7 @@ extern "C" { * F_prohibited (with error bit) if a ID is valid but the effective ID or real ID does not match the callers and CAP_SYS_NICE is not set. * F_search (with error bit) if ID could not be found. * - * F_failure (with error bit) for any other error. + * F_failure (with error bit) on any other error. * * @see sched_getaffinity() */ @@ -88,7 +88,7 @@ extern "C" { * F_prohibited (with error bit) if a ID is valid but the effective ID or real ID does not match the callers and CAP_SYS_NICE is not set. * F_search (with error bit) if ID could not be found. * - * F_failure (with error bit) for any other error. + * F_failure (with error bit) on any other error. * * @see sched_setaffinity() */ @@ -120,7 +120,7 @@ extern "C" { * F_search (with error bit) if ID could not be found. * F_too_large (with error bit) if the size and attribute are too small. * - * F_failure (with error bit) for any other error. + * F_failure (with error bit) on any other error. * * @see sched_getattr() * @see SYS_sched_getattr() @@ -150,7 +150,7 @@ extern "C" { * F_support_not (with error bit) if the system does not support this operation for the current scheduler policy. * F_too_large (with error bit) if the size and attribute are too small. * - * F_failure (with error bit) for any other error. + * F_failure (with error bit) on any other error. * * @see sched_setattr() * @see SYS_sched_setattr() @@ -182,7 +182,7 @@ extern "C" { * F_too_small (with error bit) if the niceness value is too small (less than -20). * F_prohibited (with error bit) if unable to set the requested nice value (such as when limited by RLIMIT_NICE). * - * F_failure (with error bit) for any other error. + * F_failure (with error bit) on any other error. * * @see nice() */ @@ -209,7 +209,7 @@ extern "C" { * F_prohibited (with error bit) if a ID is valid but the effective ID or real ID does not match the callers and CAP_SYS_NICE is not set. * F_search (with error bit) if ID could not be found. * - * F_failure (with error bit) for any other error. + * F_failure (with error bit) on any other error. * * @see sched_getscheduler() */ @@ -237,7 +237,7 @@ extern "C" { * F_search (with error bit) if ID could not be found. * F_support_not (with error bit) if the system call is not supported. * - * F_failure (with error bit) for any other error. + * F_failure (with error bit) on any other error. * * @see sched_rr_get_interval() */ @@ -264,7 +264,7 @@ extern "C" { * F_prohibited (with error bit) if a ID is valid but the effective ID or real ID does not match the callers and CAP_SYS_NICE is not set. * F_search (with error bit) if ID could not be found. * - * F_failure (with error bit) for any other error. + * F_failure (with error bit) on any other error. * * @see sched_setscheduler() */ @@ -295,7 +295,7 @@ extern "C" { * F_prohibited (with error bit) if a ID is valid but the effective ID or real ID does not match the callers and CAP_SYS_NICE is not set. * F_search (with error bit) if ID could not be found. * - * F_failure (with error bit) for any other error. + * F_failure (with error bit) on any other error. * * @see getpriority() */ @@ -322,7 +322,7 @@ extern "C" { * F_prohibited (with error bit) if a ID is valid but the effective ID or real ID does not match the callers and CAP_SYS_NICE is not set. * F_search (with error bit) if ID could not be found. * - * F_failure (with error bit) for any other error. + * F_failure (with error bit) on any other error. * * @see sched_get_priority_max() */ @@ -349,7 +349,7 @@ extern "C" { * F_prohibited (with error bit) if a ID is valid but the effective ID or real ID does not match the callers and CAP_SYS_NICE is not set. * F_search (with error bit) if ID could not be found. * - * F_failure (with error bit) for any other error. + * F_failure (with error bit) on any other error. * * @see sched_get_priority_min() */ @@ -376,7 +376,7 @@ extern "C" { * F_prohibited (with error bit) if a ID is valid but the effective ID or real ID does not match the callers and CAP_SYS_NICE is not set. * F_search (with error bit) if ID could not be found. * - * F_failure (with error bit) for any other error. + * F_failure (with error bit) on any other error. * * @see setpriority() */ @@ -403,7 +403,7 @@ extern "C" { * F_prohibited (with error bit) if a ID is valid but the effective ID or real ID does not match the callers and CAP_SYS_NICE is not set. * F_search (with error bit) if ID could not be found. * - * F_failure (with error bit) for any other error. + * F_failure (with error bit) on any other error. * * @see sched_getparam() */ @@ -428,7 +428,7 @@ extern "C" { * F_prohibited (with error bit) if a ID is valid but the effective ID or real ID does not match the callers and CAP_SYS_NICE is not set. * F_search (with error bit) if ID could not be found. * - * F_failure (with error bit) for any other error. + * F_failure (with error bit) on any other error. * * @see sched_setparam() */ @@ -443,7 +443,7 @@ extern "C" { * @return * F_okay on success. * - * F_failure (with error bit) for any other error. + * F_failure (with error bit) on any other error. * * @see sched_yield() */ diff --git a/level_0/f_signal/c/signal.h b/level_0/f_signal/c/signal.h index c5f48ce..8d6f77a 100644 --- a/level_0/f_signal/c/signal.h +++ b/level_0/f_signal/c/signal.h @@ -50,7 +50,7 @@ extern "C" { * F_buffer (with error bit) if the buffer is invalid (action or previous point to invalid memory). * F_parameter (with error bit) if a parameter is invalid. * - * F_failure (with error bit) for any other error. + * F_failure (with error bit) on any other error. * * @see sigaction() */ @@ -76,7 +76,7 @@ extern "C" { * F_interrupt (with error bit) when program received an interrupt signal, halting operation. * F_parameter (with error bit) if a parameter is invalid. * - * F_failure (with error bit) for any other error. + * F_failure (with error bit) on any other error. * * @see close() */ @@ -106,7 +106,7 @@ extern "C" { * * F_parameter (with error bit) if a parameter is invalid. * - * F_failure (with error bit) for any other error. + * F_failure (with error bit) on any other error. * * @see sigprocmask() */ @@ -133,7 +133,7 @@ extern "C" { * F_memory_not (with error bit) if out of memory. * F_parameter (with error bit) if a parameter is invalid. * - * F_failure (with error bit) for any other error. + * F_failure (with error bit) on any other error. * * @see signalfd() */ @@ -171,7 +171,7 @@ extern "C" { * F_resource_not (with error bit) if the max signals is reached. * F_support_not (with error bit) if this action is not supported by the current OS. * - * F_failure (with error bit) for any other error. + * F_failure (with error bit) on any other error. * * @see sigqueue() */ @@ -210,7 +210,7 @@ extern "C" { * F_input_output (with error bit) on I/O error. * F_file_type_directory (with error bit) if file descriptor represents a directory. * - * F_failure (with error bit) for any other error. + * F_failure (with error bit) on any other error. * * @see poll() * @see read() @@ -235,7 +235,7 @@ extern "C" { * F_prohibited (with error bit) if not allowed to send signals to the given process. * F_found_not (with error bit) if the given process was not found. * - * F_failure (with error bit) for any other error. + * F_failure (with error bit) on any other error. * * @see kill() */ @@ -256,7 +256,7 @@ extern "C" { * * F_parameter (with error bit) if a parameter is invalid. * - * F_failure (with error bit) for any other error. + * F_failure (with error bit) on any other error. * * @see sigaddset() */ @@ -277,7 +277,7 @@ extern "C" { * * F_parameter (with error bit) if a parameter is invalid. * - * F_failure (with error bit) for any other error. + * F_failure (with error bit) on any other error. * * @see sigdelset() */ @@ -296,7 +296,7 @@ extern "C" { * * F_parameter (with error bit) if a parameter is invalid. * - * F_failure (with error bit) for any other error. + * F_failure (with error bit) on any other error. * * @see sigemptyset() */ @@ -315,7 +315,7 @@ extern "C" { * * F_parameter (with error bit) if a parameter is invalid. * - * F_failure (with error bit) for any other error. + * F_failure (with error bit) on any other error. * * @see sigfillset() */ @@ -337,7 +337,7 @@ extern "C" { * * F_parameter (with error bit) if a parameter is invalid. * - * F_failure (with error bit) for any other error. + * F_failure (with error bit) on any other error. * * @see sigismember() */ @@ -357,7 +357,7 @@ extern "C" { * F_buffer (with error bit) if the mask is pointing to invalid memory. * F_interrupt (with error bit) when program received an interrupt signal, halting operation. * - * F_failure (with error bit) for any other error. + * F_failure (with error bit) on any other error. * * @see sigsuspend() */ @@ -381,7 +381,7 @@ extern "C" { * * F_parameter (with error bit) if a parameter is invalid. * - * F_failure (with error bit) for any other error. + * F_failure (with error bit) on any other error. * * @see sigwaitinfo() */ @@ -408,7 +408,7 @@ extern "C" { * * F_parameter (with error bit) if a parameter is invalid. * - * F_failure (with error bit) for any other error. + * F_failure (with error bit) on any other error. * * @see sigtimedwait() */ diff --git a/level_0/f_socket/c/socket.h b/level_0/f_socket/c/socket.h index 9997c45..ec41e66 100644 --- a/level_0/f_socket/c/socket.h +++ b/level_0/f_socket/c/socket.h @@ -94,7 +94,7 @@ extern "C" { * F_socket_support_not (with error bit) if this socket type is not supported. * F_socket_time_out (with error bit) if a socket timeout occurred. * - * F_failure (with error bit) for any other error. + * F_failure (with error bit) on any other error. * * @see accept() */ @@ -156,7 +156,7 @@ extern "C" { * F_socket_not (with error bit) if the ID is not a socket descriptor. * F_string_too_large (with error bit) if string is too large to store in the buffer. * - * F_failure (with error bit) for any other error. + * F_failure (with error bit) on any other error. * * @see bind() */ @@ -201,7 +201,7 @@ extern "C" { * F_socket_not (with error bit) if the ID is not a socket descriptor. * F_socket_time_out (with error bit) if a socket timeout occurred. * - * F_failure (with error bit) for any other error. + * F_failure (with error bit) on any other error. * * @see connect() */ @@ -235,7 +235,7 @@ extern "C" { * F_protocol_not (with error bit) if the given protocol is unknown or is unsupported. * F_socket_support_not (with error bit) if the given socket type is unknown or is unsupported. * - * F_failure (with error bit) for any other error. + * F_failure (with error bit) on any other error. * * @see socket() */ @@ -277,7 +277,7 @@ extern "C" { * F_parameter (with error bit) if a parameter is invalid. * F_protocol_not (with error bit) if the given protocol is unknown or is unsupported. * - * F_failure (with error bit) for any other error. + * F_failure (with error bit) on any other error. * * @see socketpair() */ @@ -328,7 +328,7 @@ extern "C" { * F_space_not (with error bit) if file system is out of space (or file system quota is reached). * F_support_not (with error bit) if this socket does not support the listen() operation. * - * F_failure (with error bit) for any other error. + * F_failure (with error bit) on any other error. * * @see close() * @see shutdown() @@ -357,7 +357,7 @@ extern "C" { * F_socket_not (with error bit) if the ID is not a socket descriptor. * F_support_not (with error bit) if this socket does not support the listen() operation. * - * F_failure (with error bit) for any other error. + * F_failure (with error bit) on any other error. * * @see listen() */ @@ -396,7 +396,7 @@ extern "C" { * F_socket_not (with error bit) if the ID is not a socket descriptor. * F_value (with error bit) if either the value or the length is invalid. * - * F_failure (with error bit) for any other error. + * F_failure (with error bit) on any other error. * * @see getsockopt() */ @@ -433,7 +433,7 @@ extern "C" { * F_socket_not (with error bit) if the ID is not a socket descriptor. * F_value (with error bit) if either the value or the length is invalid. * - * F_failure (with error bit) for any other error. + * F_failure (with error bit) on any other error. * * @see setsockopt() */ @@ -467,7 +467,7 @@ extern "C" { * F_prohibited (with error bit) if the system does not permit this operation (could be missing CAP_SYS_ADMIN in the appropraite user namespace). * F_string_too_large (with error bit) if the name is to large for the max size (name.size). * - * F_failure (with error bit) for any other error. + * F_failure (with error bit) on any other error. * * Errors (with error bit) from: f_memory_array_resize() * @@ -503,7 +503,7 @@ extern "C" { * F_parameter (with error bit) if a parameter is invalid. * F_socket_not (with error bit) if the ID is not a socket descriptor. * - * F_failure (with error bit) for any other error. + * F_failure (with error bit) on any other error. * * @see getpeername() */ @@ -559,7 +559,7 @@ extern "C" { * F_socket_pipe_close (with error bit) if the local end of a connection oriented socket is closed or SIGPIPE is received. * F_socket_time_out (with error bit) if a socket timeout occurred. * - * F_failure (with error bit) for any other error. + * F_failure (with error bit) on any other error. * * @see recvfrom() */ @@ -610,7 +610,7 @@ extern "C" { * F_socket_pipe_close (with error bit) if the local end of a connection oriented socket is closed or SIGPIPE is received. * F_socket_time_out (with error bit) if a socket timeout occurred. * - * F_failure (with error bit) for any other error. + * F_failure (with error bit) on any other error. * * @see recvmsg() */ @@ -666,7 +666,7 @@ extern "C" { * F_socket_pipe_close (with error bit) if the local end of a connection oriented socket is closed or SIGPIPE is received. * F_socket_time_out (with error bit) if a socket timeout occurred. * - * F_failure (with error bit) for any other error. + * F_failure (with error bit) on any other error. * * @see recv() */ @@ -725,7 +725,7 @@ extern "C" { * F_socket_pipe_close (with error bit) if the local end of a connection oriented socket is closed or SIGPIPE is received (Linux might return this isntead if F_connect_not). * F_socket_time_out (with error bit) if a socket timeout occurred. * - * F_failure (with error bit) for any other error. + * F_failure (with error bit) on any other error. * * @see sendto() */ @@ -779,7 +779,7 @@ extern "C" { * F_socket_pipe_close (with error bit) if the local end of a connection oriented socket is closed or SIGPIPE is received (Linux might return this isntead if F_connect_not). * F_socket_time_out (with error bit) if a socket timeout occurred. * - * F_failure (with error bit) for any other error. + * F_failure (with error bit) on any other error. * * @see sendmsg() */ @@ -838,7 +838,7 @@ extern "C" { * F_socket_pipe_close (with error bit) if the local end of a connection oriented socket is closed or SIGPIPE is received (Linux might return this isntead if F_connect_not). * F_socket_time_out (with error bit) if a socket timeout occurred. * - * F_failure (with error bit) for any other error. + * F_failure (with error bit) on any other error. * * @see send() */ diff --git a/level_0/f_type/c/type.h b/level_0/f_type/c/type.h index e0e69f2..a8ad489 100644 --- a/level_0/f_type/c/type.h +++ b/level_0/f_type/c/type.h @@ -23,6 +23,7 @@ #include #include #include +#include // Must be defined after the sys/* includes. #include #include @@ -31,6 +32,7 @@ #include // Must be after number.h. #include #include +#include #include #include #include diff --git a/level_1/fl_directory/c/directory.h b/level_1/fl_directory/c/directory.h index a64f499..cdd4a8a 100644 --- a/level_1/fl_directory/c/directory.h +++ b/level_1/fl_directory/c/directory.h @@ -77,7 +77,7 @@ extern "C" { * F_prohibited (with error bit) if file system does not allow for removing. * F_read_only (with error bit) if file is read-only. * F_space_not (with error bit) if file system is out of space (or file system quota is reached). - * F_failure (with error bit) for any other error. + * F_failure (with error bit) on any other error. * * @see f_directory_create() */ diff --git a/level_2/fll_file/c/file.h b/level_2/fll_file/c/file.h index 4e05849..3002463 100644 --- a/level_2/fll_file/c/file.h +++ b/level_2/fll_file/c/file.h @@ -62,7 +62,7 @@ extern "C" { * F_name (with error bit) on path name error. * F_parameter (with error bit) if a parameter is invalid. * F_read_only (with error bit) if file is read-only. - * F_failure (with error bit) for any other error. + * F_failure (with error bit) on any other error. * * Errors (with error bit) from: f_file_mode_set(). * Errors (with error bit) from: f_directory_exists(). @@ -108,7 +108,7 @@ extern "C" { * F_name (with error bit) on path name error. * F_parameter (with error bit) if a parameter is invalid. * F_read_only (with error bit) if file is read-only. - * F_failure (with error bit) for any other error. + * F_failure (with error bit) on any other error. * * Errors (with error bit) from: f_directory_is(). * Errors (with error bit) from: f_file_role_change(). diff --git a/level_2/fll_file/c/private-file.h b/level_2/fll_file/c/private-file.h index 2280bc7..32804c7 100644 --- a/level_2/fll_file/c/private-file.h +++ b/level_2/fll_file/c/private-file.h @@ -46,7 +46,7 @@ extern "C" { * F_parameter (with error bit) if a parameter is invalid. * F_read_only (with error bit) if file is read-only. * F_recurse (with error bit) if recursion failed, due to max depth reached. - * F_failure (with error bit) for any other error. + * F_failure (with error bit) on any other error. */ #if !defined(_di_fll_file_mode_set_all_) extern f_status_t private_fll_file_mode_set_all(const f_string_static_t path, const uint8_t dereference, const mode_t mode, const f_number_unsigned_t depth_max, const f_number_unsigned_t depth) F_attribute_visibility_internal_d; @@ -86,7 +86,7 @@ extern "C" { * F_name (with error bit) on path name error. * F_parameter (with error bit) if a parameter is invalid. * F_read_only (with error bit) if file is read-only. - * F_failure (with error bit) for any other error. + * F_failure (with error bit) on any other error. */ #if !defined(_di_fll_file_role_change_all_) extern f_status_t private_fll_file_role_change_all(const f_string_static_t path, const f_uid_t uid, const f_gid_t gid, const uint8_t dereference, const f_number_unsigned_t depth_max, const f_number_unsigned_t depth) F_attribute_visibility_internal_d; -- 1.8.3.1