cJSON_CreateFloatArray function

  1. @Native<Pointer<cJSON> Function(Pointer<Float>, Int)>(ffi.Pointer<ffi.Float>, ffi.Int)>()
Pointer<cJSON> cJSON_CreateFloatArray(
  1. Pointer<Float> numbers,
  2. int count
)

Implementation

@ffi.Native<ffi.Pointer<cJSON> Function(ffi.Pointer<ffi.Float>, ffi.Int)>()
external ffi.Pointer<cJSON> cJSON_CreateFloatArray(
  ffi.Pointer<ffi.Float> numbers,
  int count,
);