This commit is contained in:
Guillem George 2025-11-04 14:38:36 +01:00
commit d0bd16da2f
9 changed files with 97 additions and 0 deletions

8
page_begin/page_begin.h Normal file
View file

@ -0,0 +1,8 @@
#ifndef PAGE_BEGIN_H
#define PAGE_BEGIN_H
#include <stddef.h>
void *page_begin(void *ptr, size_t page_size);
#endif /* !PAGE_BEGIN_H */