I'm porting C code where there are direct __asm__
calls from Linux to Windows. Those calls are not supported by the Visual Studio compiler so I'm looking for a Windows version of the following GCC call:
__asm__("bswapl %0" : "=r" (val) : "0" (val))
Could someone help me? Thanks!