cJSON_AddBoolToObject function

  1. @Native<Pointer<cJSON> Function(Pointer<cJSON>, Pointer<Char>, cJSON_bool)>(ffi.Pointer<cJSON>, ffi.Pointer<ffi.Char>, cJSON_bool)>()
Pointer<cJSON> cJSON_AddBoolToObject(
  1. Pointer<cJSON> object,
  2. Pointer<Char> name,
  3. int boolean
)

Implementation

@ffi.Native<
  ffi.Pointer<cJSON> Function(
    ffi.Pointer<cJSON>,
    ffi.Pointer<ffi.Char>,
    cJSON_bool,
  )
>()
external ffi.Pointer<cJSON> cJSON_AddBoolToObject(
  ffi.Pointer<cJSON> object,
  ffi.Pointer<ffi.Char> name,
  int boolean,
);