2009-05-03 18:53:31 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <ogcsys.h>
|
|
|
|
|
2010-09-24 00:48:03 +00:00
|
|
|
u32 swap32(u32 x)
|
2010-09-18 23:16:05 +00:00
|
|
|
{
|
2011-07-25 22:28:22 +00:00
|
|
|
return (x >> 24) | ((x << 8) & 0x00FF0000UL) | ((x >> 8) & 0x0000FF00UL) | (x << 24);
|
2009-05-03 18:53:31 +00:00
|
|
|
}
|