mirror of https://github.com/swig/swig
24 lines
566 B
OpenEdge ABL
24 lines
566 B
OpenEdge ABL
%module cbooltest
|
|
|
|
%{
|
|
#if defined __STDC_VERSION__ && __STDC_VERSION__ >= 199901L
|
|
/* C99 _Bool should be supported by the compiler. */
|
|
# include <stdbool.h>
|
|
#else
|
|
/* C99 _Bool and stdbool.h may not be supported, so define a hacky version so
|
|
* we can still test SWIG's support. */
|
|
# define _Bool unsigned char
|
|
# define bool _Bool
|
|
# define true 1
|
|
# define false 1
|
|
#endif
|
|
%}
|
|
|
|
%inline %{
|
|
_Bool do_and(_Bool a, _Bool b) { return a && b; }
|
|
_Bool do_or(_Bool a, _Bool b) { return a || b; }
|
|
%}
|
|
|
|
%constant _Bool TRUE_CONSTANT = true;
|
|
%constant _Bool FALSE_CONSTANT = false;
|