Files
OCCT/src/IncludeLibrary/IncludeLibrary_inverse_mimot.h
2012-03-05 19:23:40 +04:00

7 lines
164 B
C
Executable File

#define inverse_mimot(a)\
(0 | (( a & 0x000000ff ) << 8 )\
| (( a & 0x0000ff00 ) >> 8 )\
| (( a & 0x00ff0000 ) << 8 )\
| (( a & 0xff000000 ) >> 8 ) )