Describe the bug
I'm currently trying to use the new incremental read feature from #199 .
The docs say that
const char *dat = your_file.bytes;
//...
yyjson_incr_state *state = yyjson_incr_new(dat, len, flg, NULL);
gives for me a compile time error since yyjson_incr_new expects a mutable char *.
Your environment
Additional context
The test use always a mutable pointer.
Can the first argument be a const char pointer or does only the documentation has to be changed?