diff options
author | Marvin Borner | 2020-06-17 18:31:46 +0200 |
---|---|---|
committer | Marvin Borner | 2020-06-17 18:31:46 +0200 |
commit | eed77bd2970a00d1394ed027ceca5b646e4671ce (patch) | |
tree | c44643d98aed2b6818f2b33417c0dea9c5853094 /src/kernel/lib/lib.h | |
parent | 49dfa1f4021026bf7c4d77817959c8aa24067016 (diff) |
Started rewrite
Diffstat (limited to 'src/kernel/lib/lib.h')
-rw-r--r-- | src/kernel/lib/lib.h | 41 |
1 files changed, 0 insertions, 41 deletions
diff --git a/src/kernel/lib/lib.h b/src/kernel/lib/lib.h deleted file mode 100644 index 06f9eda..0000000 --- a/src/kernel/lib/lib.h +++ /dev/null @@ -1,41 +0,0 @@ -#ifndef MELVIX_LIB_H -#define MELVIX_LIB_H - -#include <multiboot.h> -#include <stddef.h> -#include <stdint.h> - -/** - * Copy n data from src to dest - * @param dest The destination array pointer - * @param src The source array pointer of the data - * @param count The number of bytes to be copied (src) - * @return The modified dest pointer - */ -void *memcpy(void *dest, const void *src, u32 count); - -/** - * Replace n bytes of dest by val - * @param dest The destination array pointer - * @param val The replacing chracater - * @param count The number of times val should replace dest entry - * @return The modified dest pointer - */ -void *memset(void *dest, char val, u32 count); - -/** - * Compare the first n bytes of a and b - * @param a_ptr The first memory area pointer - * @param b_ptr The second memory area pointer - * @param size The number of bytes to be compared - * @return -1 if a < b, 0 if a = b and 1 if a > b - */ -int memcmp(const void *a_ptr, const void *b_ptr, u32 size); - -void memory_init(); - -void memory_print(); -u32 memory_get_all(); -void bss_clean(); - -#endif
\ No newline at end of file |