Consolidated some of the C test cases.

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@5456 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
Dave Beazley 2003-12-02 18:37:42 +00:00
commit da53ad7bf2
14 changed files with 216 additions and 237 deletions

View file

@ -49,3 +49,11 @@ int getintfrompointer(int* intptr) {
%}
// This tests wrapping of function that involves pointer to array
%inline %{
void array_pointer_func(int (*x)[10]) {}
%}