Posts Tagged ‘strerror’

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_perror – test errnum and abort
USAGE
#define _GNU_SOURCE
#include <assert.h>

void assert_perror(int errnum);

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

Wednesday, August 26th, 2009 at 02:04 | Comments Off
Categories: A
TOP