I have a JavaScript function with two arguments (buffer, len), where buffer is an array of encoded data of length "len". My function returns two values with no problem. However, I couldn't figure out how to read the actual data to a JavaScript string. readString is not working for me as the data is not UTF-8.
I was wondering if it is possible to feed the data ("buffer" in my case) to an ArrayBuffer of the same length and equal byte-size
Your function returns two values? Do you mean your c function return a pointer to data and an int as length?
suppose your c function is declared as
How to access the data in javascript from the ctype pointer of type uint8_t suggests ct_ptr[1].contents will access the 2nd element. I tried, and I found that [1] is not acceptable. Then I tried cast
It did succeeded when the array size is not more than 4. However, it turns the value of the point into byte array. The right way is: