10 static float return_fl(
float fl1,
float fl2,
unsigned int in3,
float fl4)
12 return fl1 + fl2 + in3 + fl4;
19 float fl1, fl2, fl4, rfl;
21 args[0] = &ffi_type_float;
22 args[1] = &ffi_type_float;
23 args[2] = &ffi_type_uint;
24 args[3] = &ffi_type_float;
32 &ffi_type_float, args) == FFI_OK);
39 printf (
"%f vs %f\n", rfl,
return_fl(fl1, fl2, in3, fl4));
40 CHECK(rfl == fl1 + fl2 + in3 + fl4);
void ffi_call(ffi_cif *cif, void(*fn)(void), void *rvalue, void **avalue)
static float return_fl(float fl1, float fl2, unsigned int in3, float fl4)
ffi_status ffi_prep_cif(ffi_cif *cif, ffi_abi abi, unsigned int nargs, ffi_type *rtype, ffi_type **atypes)