Older Newer
Tue, 31 Dec 2019 10:35:25 . . . . SyneRyder [fix formatting]


Changes by last author:

Added:
= strerror =

== Syntax ==

char* strerror(int errnum)

== Arguments ==

:errnum

::The requested error number.

== Return ==

A string describing the error.

== Description ==

Return a string describing the specified error number errnum. If the error number is not known, an unknown error string is returned instead.

The string returned remains valid only until the next call to the strerror function.