2022-09-08 22:46:29 +01:00
|
|
|
#ifndef __LIB_H__
|
|
|
|
#define __LIB_H__
|
|
|
|
|
2022-09-08 06:57:22 +01:00
|
|
|
#include <stdint.h>
|
|
|
|
#include <memcpy.h>
|
2022-09-08 23:16:49 +01:00
|
|
|
#include <memset.h>
|
|
|
|
#include <memmove.h>
|
|
|
|
#include <memcmp.h>
|
2022-09-08 23:47:59 +01:00
|
|
|
#include <strcpy.h>
|
|
|
|
#include <strncpy.h>
|
|
|
|
#include <strcmp.h>
|
|
|
|
#include <strncmp.h>
|
|
|
|
#include <strlen.h>
|
2022-09-08 06:57:22 +01:00
|
|
|
#include <print.h>
|
2022-08-20 15:13:06 +01:00
|
|
|
|
2022-09-08 06:57:22 +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[];
|
2022-09-08 22:46:29 +01:00
|
|
|
|
|
|
|
#endif // __LIB_H__
|