Starship/include/macros.h

8 lines
142 B
C
Raw Normal View History

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