In C language, I am trying to read a Binary file in UTF16 format.
I tried to this;
binaryFile = fopen("data.dat", "rb, ccs=UTF16LE");
And it did not work. I need to do this without using the UTF16 reading library specifically, and I can't think of anything other than this solution.
Can you help me, thanks in advance.