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
[...]
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
[...]
Categories: A
