strerror - get error message string
Standard C Library (libc, -lc)
#include <string.h>
char *
strerror(int errnum);
The strerror() function returns a pointer to the language-dependent error
message string affiliated with an error number.
The array pointed to is not to be modified by the program, but may be
overwritten by subsequent calls to strerror().
intro(2), perror(3), setlocale(3)
The strerror() function conforms to ANSI X3.159-1989 (``ANSI C'').
BSD June 29, 1991 BSD
[ Back ] |