Starship/include/macros.h

8 lines
142 B
C
Raw Normal View History

2023-10-13 10:50:53 +03:00
#ifndef MACROS_H
#define MACROS_H
2023-10-16 19:32:12 +03:00
#define ARRAY_COUNT(arr) (s32)(sizeof(arr) / sizeof(arr[0]))
2023-10-17 23:43:47 +03:00
#define SQ(x) ((x) * (x))
2023-10-13 10:50:53 +03:00
2023-10-13 12:19:10 +03:00
#endif // MACROS_H