Maps an error number to an error message string.
#include <string.h>
char *strerror (ErrorNumber) int ErrorNumber;
Attention: Do not use the strerror subroutine in a multithreaded environment.
The strerror subroutine maps the error number in the ErrorNumber parameter to the error message string. The strerror subroutine retrieves an error message based on the current value of the LC_MESSAGES category. If the specified message catalog cannot be opened, the default message is returned. The returned message does not contain a new line ("\n").
ErrorNumber | Specifies the error number to be associated with the error message. |
The strerror subroutine returns a pointer to the error message.
This subroutine is part of Base Operating System (BOS) Runtime.
The perror subroutine.
The clearerr macro, feof macro, ferror macro, fileno macro.
Subroutines Overview in AIX Version 4.3 General Programming Concepts: Writing and Debugging Programs.