From eed77bd2970a00d1394ed027ceca5b646e4671ce Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Wed, 17 Jun 2020 18:31:46 +0200 Subject: Started rewrite --- src/kernel/lib/lib.h | 41 ----------------------------------------- 1 file changed, 41 deletions(-) delete mode 100644 src/kernel/lib/lib.h (limited to 'src/kernel/lib/lib.h') 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 -#include -#include - -/** - * 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 -- cgit v1.2.3