MGE General C Library - Full Internal Documentation  v1.3.5
Library of general C functions.
mge-internal.h
Go to the documentation of this file.
1 
14 /* **********************************************************************
15  * *
16  * Changelog *
17  * *
18  * Date Author Version Description *
19  * *
20  * 09/09/2018 MG 1.0.1 First release. *
21  * 08/06/2019 MG 1.0.2 clang-format coding style changes. *
22  * 29/06/2020 MG 1.0.3 Rename file to mge-internal.h so that *
23  * it will be automatically excluded from *
24  * API documentation. *
25  * *
26  ************************************************************************
27  */
28 
29 #ifndef MGEINTERNAL_H
30 #define MGEINTERNAL_H
31 
32 #include <portability.h>
33 
35 
40 #define ARRAY_SIZE(x) (sizeof(x) / sizeof((x)[0]))
41 
43 
44 #endif /* ndef MGEINTERNAL_H */
45 
Header file to ease portability.
#define END_C_DECLS
Use END_C_DECLS at the end of C declarations.
Definition: portability.h:50
#define BEGIN_C_DECLS
BEGIN_C_DECLS should be used at the beginning of declarations so that C++ compilers don&#39;t mangle thei...
Definition: portability.h:46