cJSON_IsInvalid function

  1. @Native<Int Function(Pointer<cJSON>)>(ffi.Pointer<cJSON>)>()
int cJSON_IsInvalid(
  1. Pointer<cJSON> item
)

These functions check the type of an item

Implementation

@ffi.Native<cJSON_bool Function(ffi.Pointer<cJSON>)>()
external int cJSON_IsInvalid(ffi.Pointer<cJSON> item);