mirror of
https://github.com/Open-Cascade-SAS/OCCT.git
synced 2026-05-11 01:58:22 +08:00
7 lines
164 B
C
Executable File
7 lines
164 B
C
Executable File
#define inverse_mimot(a)\
|
|
(0 | (( a & 0x000000ff ) << 8 )\
|
|
| (( a & 0x0000ff00 ) >> 8 )\
|
|
| (( a & 0x00ff0000 ) << 8 )\
|
|
| (( a & 0xff000000 ) >> 8 ) )
|
|
|