Files
cpp-thirdparty/winx64/bin/swig-3.0.12/Examples/test-suite/null_pointer.i
Bassem Girgis 81b4b9e273 Initial commit
2018-12-20 17:34:07 -06:00

17 lines
217 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;
}
A* getnull() {
return 0;
}
}