MGE General C Library - Full Internal Documentation v1.8.4
Library of general C functions.
internal.h
Go to the documentation of this file.
1
14#ifndef ERRORS_INTERNAL_H
15#define ERRORS_INTERNAL_H
16
18
19#include <stddef.h>
20
22
23/* This semi-hides these global variables, (cf putting them in mge-error.h). */
24extern const char *errno_desc[];
25extern const size_t errno_desc_size;
26
28
29#endif /* ndef ERRORS_INTERNAL_H */
BEGIN_C_DECLS const char * errno_desc[]
Global array of mge-errno descriptions.
Definition: errno.c:29
const size_t errno_desc_size
Size of the error description array.
Definition: errno.c:50
Header file to ease portability.
#define BEGIN_C_DECLS
BEGIN_C_DECLS should be used at the beginning of declarations so that C++ compilers don't mangle thei...
Definition: mge-portability.h:30
#define END_C_DECLS
Use END_C_DECLS at the end of C declarations.
Definition: mge-portability.h:34