ZealOS/zealbooter/lib.h

22 lines
402 B
C
Raw Normal View History

#ifndef __LIB_H__
#define __LIB_H__
#include <stdint.h>
#include <memcpy.h>
#include <memset.h>
#include <memmove.h>
#include <memcmp.h>
#include <strcpy.h>
#include <strncpy.h>
#include <strcmp.h>
#include <strncmp.h>
#include <strlen.h>
#include <print.h>
2022-08-20 15:13:06 +01:00
uint64_t div_roundup_u64(uint64_t a, uint64_t b);
uint64_t align_up_u64(uint64_t a, uint64_t b);
2022-08-20 15:13:06 +01:00
typedef char symbol[];
#endif // __LIB_H__