42_KFS/libbozo/headers/utils.h

5 lines
117 B
C
Raw Permalink Normal View History

2024-09-25 17:01:59 -04:00
#pragma once
#define CEIL(x, y) (((x) + (y) - 1) / (y))
#define ARRAY_SIZE(ptr) (sizeof(ptr) / sizeof(ptr[0]))