MGE General C Library - Full Internal Documentation
v1.3.5
Library of general C functions.
|
Header file to ease portability. More...
Go to the source code of this file.
Macros | |
#define | BEGIN_C_DECLS |
BEGIN_C_DECLS should be used at the beginning of declarations so that C++ compilers don't mangle their names. More... | |
#define | END_C_DECLS |
Use END_C_DECLS at the end of C declarations. More... | |
#define | PARAMS(protos) () |
PARAMS is a macro used to wrap function prototypes so that:- compilers that don't understand ANSI C prototypes still work, and, ANSI C compilers can issue warnings about type mismatches. More... | |
Header file to ease portability.
Includes suggestions from the GNU Libtools documentation.
Released under the GPLv3 only.
SPDX-License-Identifier: GPL-3.0
#define BEGIN_C_DECLS |
BEGIN_C_DECLS should be used at the beginning of declarations so that C++ compilers don't mangle their names.
#define END_C_DECLS |
Use END_C_DECLS at the end of C declarations.
#define PARAMS | ( | protos | ) | () |
PARAMS is a macro used to wrap function prototypes so that:- compilers that don't understand ANSI C prototypes still work, and, ANSI C compilers can issue warnings about type mismatches.