14 lines
348 B
C
14 lines
348 B
C
#ifndef MISC_UTILS_H
|
|
#define MISC_UTILS_H
|
|
|
|
#include "../aliases/aliases.h"
|
|
|
|
#define KB(SIZE) (SIZE * 1024ull)
|
|
#define MB(SIZE) (KB(SIZE) * 1024)
|
|
#define GB(SIZE) (MB(SIZE) * 1024)
|
|
#define TB(SIZE) (GB(SIZE) * 1024)
|
|
|
|
#define wapp_misc_utils_padding_size(SIZE) u8 reserved_padding[sizeof(void *) - ((SIZE) % sizeof(void *))]
|
|
|
|
#endif // !MISC_UTILS_H
|