What is the C equivalent for the reinterpret_cast from C++?
reinterpret_cast
int *foo; float *bar; // c++ style: foo = reinterpret_cast< int * >(bar); // c style: foo = (int *)(bar);