dafaqT3K link said:Convert unicode to ascii.
make a function that removes the null bytes.
I got the first oneT3K link said:Convert unicode to ascii.
make a function that removes the null bytes.
NxFullieX link said:I got the first one
I dident get the second line...
I try to make it by myself and is printing "?"
void removenullbytes(char* unicodelala, char* out, int len)
{
for (int i = 0: i <= 2*len; i++)
{
if(unicodelala[i])out[i/2] = unicodelala[i];
}
}