mirror of
https://github.com/Zeal-Operating-System/ZealOS.git
synced 2024-12-25 23:10:32 +00:00
13 lines
239 B
C
13 lines
239 B
C
#ifndef __LIB_H__
|
|
#define __LIB_H__
|
|
|
|
#include <stdint.h>
|
|
#include <memcpy.h>
|
|
#include <print.h>
|
|
|
|
uint64_t div_roundup_u64(uint64_t a, uint64_t b);
|
|
uint64_t align_up_u64(uint64_t a, uint64_t b);
|
|
|
|
typedef char symbol[];
|
|
|
|
#endif // __LIB_H__
|