Posts Tagged ‘perror’

errno – number of last error
USAGE
#include <errno.h>

DESCRIPTION
The header file defines the integer variable errno, which is
set by system calls and some library functions in the event of an error
[...]

Thursday, August 27th, 2009 at 21:06 | Comments Off
Categories: E

assert – abort the program if assertion is false
USAGE
#include <assert.h>

void assert(scalar expression);

DESCRIPTION
If the macro NDEBUG was defined at the moment was last
[...]

Tuesday, August 25th, 2009 at 21:34 | Comments Off
Categories: A
TOP