Say I have an asset in Flutter data.bin
and another c function
void processData(void* data, int size)
Is it possible to access this binary asset "data.bin" in C directly?
I understand that I could use rootBundle.load("data.bin")
and copy the data to C heap buffer. But as the data is very large, I hope it could be done without copy.