Sign in
fuchsia
/
third_party
/
swig
/
5cc90e6f5b321cae8e7290dc055d3e13543a2155
/
.
/
Examples
/
test-suite
/
octave_cell_deref.i
blob: 272ba7c99dcc6cc2a31245e288db6e250da92b46 [
file
] [
log
] [
blame
]
%
module
octave_cell_deref
%
inline
{
bool
funk
(
const
char
*
s
)
{
return
!
strcmp
(
"hello"
,
s
);
}
Cell
func2
()
{
Cell
c
(
1
,
2
);
c
(
0
)
=
"hello"
;
c
(
1
)
=
4
;
return
c
;
}
}