|
||
char *strerror( int error )
int error; /* errno value */
|
|
|
Synopsis |
#include "string.h"
The strerror function returns a pointer to an error message corresponding to a value of the system error variable errno .
|
|
Parameters |
error is a value of errno .
|
|
Return Value |
strerror returns the pointer noted above.
|
|
Comments |
The string contains a '\n' as its last non-null character. |
|
|
|