The strerror function

Name

strerror -- 

Synopsis

#include <string.h>

char *strerror (int errnum);

Description

The strerror function maps the error number in errnum to an error message string.

The implementation shall behave as if no library function calls the strerror function.

Returns

The strerror function returns a pointer to the string, the contents of which are implementation defined.

Implementation Notes

None