default arguments in C code test
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@6450 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
parent
74f9ab820b
commit
0f96a1ff12
1 changed files with 3 additions and 0 deletions
|
|
@ -13,6 +13,9 @@ typedef struct Foo {
|
|||
int test(char *s) { s = 0; return 2; }
|
||||
int test(double x, double y) { x = 0; y = 0; return 3; }
|
||||
int test(char *s, int int1, int int2) { s = 0; return int1+int2; }
|
||||
|
||||
/* C default arguments */
|
||||
int test(Foo* f, int i=10, int j=20) { return i+j; }
|
||||
};
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue