mirror of
https://github.com/dashr9230/SA-MP.git
synced 2024-11-30 09:50:41 +00:00
9 lines
149 B
C
9 lines
149 B
C
|
|
#ifndef TYPES_H
|
|
#define TYPES_H
|
|
|
|
// Rotation
|
|
#define ROL32(n, r) ( ((n) << (r)) | ((n) >> (32 - (r))) ) /* only works for u32 */
|
|
|
|
#endif // TYPES_H
|