MGE General C Library - Full Internal Documentation
Library of general C functions.
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/04/2020 MG 1.0.3 Add BUF_UNUSED_DEF_SIZE_MULT and *
23  * BUF_MAX_UNREACH_PERCENT. *
24  * *
25  ************************************************************************
26  */
27 
28 #ifndef BUFMSG_INTERNAL_H
29 #define BUFMSG_INTERNAL_H
30 
31 #include <portability.h>
32 
34 
38 #define DEF_BUF_SIZE 256
39 
44 #define BUF_UNUSED_DEF_SIZE_MULT 3
45 
51 #define BUF_MAX_UNREACH_PERCENT 33
52 
56 #define DEF_MSG_SIZE 256
57 
59 
60 #endif /* ndef BUFMSG_INTERNAL_H */
61 
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't mangle thei...
Definition: portability.h:46