mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-05-06 10:36:12 +03:00
6 lines
157 B
C
Executable File
6 lines
157 B
C
Executable File
#define inverse(a)\
|
|
(0 | (( a & 0x000000ff ) << 24 )\
|
|
| (( a & 0x0000ff00 ) << 8 )\
|
|
| (( a & 0x00ff0000 ) >> 8 )\
|
|
| (( a >> 24 ) & 0x000000ff ) )
|