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

16 lines
186 B
OpenEdge ABL

%module octave_cell_deref
%inline {
bool func(const char* s) {
return !strcmp("hello",s);
}
Cell func2() {
Cell c(1,2);
c(0) = "hello";
c(1) = 4;
return c;
}
}