Files
ANSLibs/swig-4.3.0/Examples/test-suite/arrayref.i

15 lines
144 B
OpenEdge ABL
Raw Normal View History

// A function that passes arrays by reference
%module arrayref
%inline %{
void foo(const int (&x)[10]) {
}
void bar(int (&x)[10]) {
}
%}