Is it possible to convert floats from big to little endian? I have a big endian value from a PowerPC platform that I am sendING via TCP to a Windows process (li
float
Don't memcpy the data directly into a float type. Keep it as char data, swap the bytes and then treat it as a float.