akheron / jansson

C library for encoding, decoding and manipulating JSON data
http://www.digip.org/jansson/
Other
3.05k stars 808 forks source link

Pointer to array data #594

Closed yigithsyn closed 2 years ago

yigithsyn commented 2 years ago

Is it possible to get double pointer of JSON_ARRAY data which consists of JSON_REAL numbers?

Thank you.

akheron commented 2 years ago

No, but you can build such an array yourself by allocating a C array, iterating over the json array and copying the values over.

yigithsyn commented 2 years ago

Thanks for quick response. But still I appreciate if you think about it in future enhancements. Great work. Thank you.