![]() |
![]() |
![]() |
Convert an error number to an error message
#include <string.h> char* strerror( int errnum );
libc
The strerror() function maps the error number contained in errnum to an error message. This function works for any valid errno value.
A pointer to the error message. Don't modify the string it points to.
#include <stdio.h> #include <string.h> #include <errno.h> #include <stdlib.h> int main( void ) { FILE *fp; fp = fopen( "file.name", "r" ); if( fp == NULL ) { printf( "Unable to open file: %s\n", strerror( errno ) ); } return EXIT_SUCCESS; }
Safety: | |
---|---|
Cancellation point | No |
Interrupt handler | No |
Signal handler | Yes |
Thread | Yes |
![]() |
![]() |
![]() |