N64FlashcartMenu
Loading...
Searching...
No Matches
utils.h
Go to the documentation of this file.
1#ifndef UTILS_H__
2#define UTILS_H__
3
19#define ALIGN(x, a) (((x) + ((typeof(x))(a) - 1)) & ~((typeof(x))(a) - 1))
20
30#define MAX(a,b) ({ typeof(a) _a = a; typeof(b) _b = b; _a > _b ? _a : _b; })
31
41#define MIN(a,b) ({ typeof(a) _a = a; typeof(b) _b = b; _a < _b ? _a : _b; })
42
51#define KiB(x) ((x) * 1024)
52
61#define MiB(x) ((x) * 1024 * 1024)
62
63#endif // UTILS_H__