1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-05-06 10:36:12 +03:00
occt/src/Standard/Standard_inverse.h
2012-03-05 19:23:40 +04:00

6 lines
157 B
C
Executable File

#define inverse(a)\
(0 | (( a & 0x000000ff ) << 24 )\
| (( a & 0x0000ff00 ) << 8 )\
| (( a & 0x00ff0000 ) >> 8 )\
| (( a >> 24 ) & 0x000000ff ) )