Sortix nightly manual
This manual documents Sortix nightly, a development build that has not been officially released. You can instead view this document in the latest official manual.
NAME
ERR_error_string, ERR_error_string_n, ERR_lib_error_string, ERR_func_error_string, ERR_reason_error_string — obtain human-readable OpenSSL error messagesSYNOPSIS
#include <openssl/err.h>ERR_error_string(unsigned long e, char *buf);
ERR_error_string_n(unsigned long e, char *buf, size_t len);
ERR_lib_error_string(unsigned long e);
ERR_func_error_string(unsigned long e);
ERR_reason_error_string(unsigned long e);
DESCRIPTION
ERR_error_string() generates a human-readable string representing the error code e and places it in buf. buf must be at least 256 bytes long. If buf is NULL, the error string is placed in a static buffer. Note that this function is not thread-safe and does no checks on the size of the buffer; use ERR_error_string_n() instead.error:[error code]:[library name]:[function name]:[reason string]