STRERROR()

From Lianjapedia
Revision as of 20:30, 16 May 2018 by Barrymavin (Talk | contribs)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Purpose

Function to return description for latest or specified Operating System dependent error number

Syntax

STRERROR([<expN>])

See Also

CERROR(), DOSERROR(), ERRNO(), ERROR(), MESSAGE()

Description

The STRERROR() function returns the description for the Operating System dependent error number for the last error encountered. If the optional <expN> is specified, STRERROR() will return the description for that error number.

Example

if errno()>0
    errstr = strerror( errno() )
endif