Sign in
fuchsia
/
third_party
/
swig
/
refs/heads/upstream/gsoc2016-hhvm
/
.
/
Examples
/
test-suite
/
default_args_c.i
blob: e0c0af056e0b802089108f62cbfce994ffdd4401 [
file
] [
log
] [
blame
] [
edit
]
%
module
default_args_c
/* Default arguments for C code */
int
foo1
(
int
x
=
42
||
3
);
int
foo43
(
int
x
=
42
|
3
);
%{
int
foo1
(
int
x
)
{
return
x
;
}
int
foo43
(
int
x
)
{
return
x
;
}
%}