cJSON_Delete function

  1. @Native<Void Function(Pointer<cJSON>)>(ffi.Pointer<cJSON>)>()
void cJSON_Delete(
  1. Pointer<cJSON> item
)

Delete a cJSON entity and all subentities.

Implementation

@ffi.Native<ffi.Void Function(ffi.Pointer<cJSON>)>()
external void cJSON_Delete(ffi.Pointer<cJSON> item);