cJSON_AddNullToObject function
Helper functions for creating and adding items to an object at the same time. They return the added item or NULL on failure.
Implementation
@ffi.Native<
ffi.Pointer<cJSON> Function(ffi.Pointer<cJSON>, ffi.Pointer<ffi.Char>)
>()
external ffi.Pointer<cJSON> cJSON_AddNullToObject(
ffi.Pointer<cJSON> object,
ffi.Pointer<ffi.Char> name,
);