man.bsd.lv manual page server

Manual Page Search Parameters

STRERROR(3) Library Functions Manual STRERROR(3)

perror, strerror, sys_errlist, sys_nerrsystem error messages

#include <stdio.h>

void
perror(const char *string);

extern char *sys_errlist[];
extern int sys_nerr;

#include <string.h>

char *
strerror(int errnum);

The () and perror() functions look up the error message string corresponding to an error number.

The () function accepts an error number argument errnum and returns a pointer to the corresponding message string.

The () function finds the error message corresponding to the current value of the global variable errno (intro(2)) and writes it, followed by a newline, to the standard error file descriptor. If the argument string is non-NULL, it is prepended to the message string and separated from it by a colon and space (‘’). If string is NULL, only the error message string is printed.

If errnum is not a recognized error number, the error message string will contain “Unknown error: ” followed by the error number in decimal.

The message strings can be accessed directly using the external array sys_errlist. The external value sys_nerr contains a count of the messages in sys_errlist. The use of these variables is deprecated; () should be used instead.

intro(2), psignal(3)

The strerror() and perror() functions first appeared in 4.4BSD.

For unknown error numbers, the strerror() function will return its result in a static buffer which may be overwritten by subsequent calls.

BSD 4 June 9, 1993 STRERROR(3)