cJSON_GetArraySize function

  1. @Native<Int Function(Pointer<cJSON>)>(ffi.Pointer<cJSON>)>()
int cJSON_GetArraySize(
  1. Pointer<cJSON> array
)

Returns the number of items in an array (or object).

Implementation

@ffi.Native<ffi.Int Function(ffi.Pointer<cJSON>)>()
external int cJSON_GetArraySize(ffi.Pointer<cJSON> array);