core: oops forgot to add utils.h

This commit is contained in:
0x35c 2024-09-25 23:01:59 +02:00
parent a64262ee13
commit 9ade568a64

4
libbozo/headers/utils.h Normal file
View File

@ -0,0 +1,4 @@
#pragma once
#define CEIL(x, y) (((x) + (y) - 1) / (y))
#define ARRAY_SIZE(ptr) (sizeof(ptr) / sizeof(ptr[0]))