fortran-ret-type>c-type ( fortran-type -- c-type added-args )


Vocabulary
alien.fortran

Definition
USING: alien.c-types alien.fortran.private kernel sequences ;

IN: alien.fortran

: fortran-ret-type>c-type
( fortran-type -- c-type added-args )
parse-fortran-type dup returns-by-value?
[ (fortran-ret-type>c-type) { } ] [
void swap
[ added-c-args ] [ (fortran-type>c-type) <pointer> ] bi
prefix
] if ;