audit_name_to_errno - Man Page
Convert the errno name and the numeric errno value to each other
Synopsis
#include <libaudit.h> int audit_name_to_errno(const char *error); const char *audit_errno_to_name(int error);
Description
audit_name_to_errno() converts the errno name ("EPERM", "ENOENT", "ESRCH", etc.) to the numeric errno value (EPERM, ENOENT, ESRCH, etc.). error is the errno name.
audit_errno_to_name() converts the numeric errno value (EPERM, ENOENT, ESRCH, etc.) to the errno name ("EPERM", "ENOENT", "ESRCH", etc.). error is the numeric errno value.
Return Value
audit_name_to_errno() returns 0 if an error occurs; otherwise, the return value is the numeric errno value.
audit_errno_to_name() returns NULL if an error occurs; otherwise, the return value is the errno name.
Author
Steve Grubb
Info
Mar 2022 Red Hat Linux Audit API