Translate an error number into an error message.
Compatibility:This function is compatible with the following targets:
|
|
#include <string.h>
char *strerror(int errnum);Parameters:
Parameters for this facility are:
#include <string.h>
#include <stdio.h>
int main(void)
{
puts(strerror(8));
puts(strerror(ESIGPARM));
return 0;
}
Output:
unknown error (8)
Signal Error
[ First ] [ Previous ] [ Next ] [ Last ] [ Manuals ]
Visit the Metrowerks website at: http://www.metrowerks.com
For assistance contact Metrowerks Technical Support at: cw_support@metrowerks.com
Copyright © 2000, Metrowerks Corp. All rights reserved.
Last updated: August 16, 2000