cJSON_AddNumberToObject function

  1. @Native<Pointer<cJSON> Function(Pointer<cJSON>, Pointer<Char>, Double)>(ffi.Pointer<cJSON>, ffi.Pointer<ffi.Char>, ffi.Double)>()
Pointer<cJSON> cJSON_AddNumberToObject(
  1. Pointer<cJSON> object,
  2. Pointer<Char> name,
  3. double number
)

Implementation

@ffi.Native<
  ffi.Pointer<cJSON> Function(
    ffi.Pointer<cJSON>,
    ffi.Pointer<ffi.Char>,
    ffi.Double,
  )
>()
external ffi.Pointer<cJSON> cJSON_AddNumberToObject(
  ffi.Pointer<cJSON> object,
  ffi.Pointer<ffi.Char> name,
  double number,
);