swig/Examples/test-suite/null_pointer.i
2010-06-10 01:13:31 +00:00

12 lines
181 B
OpenEdge ABL

%module null_pointer
%warnfilter(SWIGWARN_PARSE_KEYWORD) func; // 'func' is a Go keyword, renamed as 'Xfunc'
%inline {
struct A {};
bool func(A* a) {
return !a;
}
}