SilverScreen Solid Modeler

strerror

strerror

Previous topic Next topic  

strerror

Previous topic Next topic JavaScript is required for the print function  

StandardCLibrary

 

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.