From 45d9495e77dba212551ae9bc8e09b51e9ed6d324 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Sat, 23 Nov 2019 00:36:28 +0100 Subject: Tried implementing memory based paging... Also did many other fixes/improvements. While I think I did most things correct, the ACPI doesn't work anymore (triple fault) and the resolution detection fails with 0x2... :c --- src/kernel/lib/lib.h | 37 ------------------------------------- 1 file changed, 37 deletions(-) (limited to 'src/kernel/lib/lib.h') diff --git a/src/kernel/lib/lib.h b/src/kernel/lib/lib.h index c431e1d..e94ad19 100644 --- a/src/kernel/lib/lib.h +++ b/src/kernel/lib/lib.h @@ -4,43 +4,6 @@ #include #include -/** - * Find the length of a string - * @param str The string pointer which size should be calculated - * @return The length of str - */ -size_t strlen(const char *str); - -/** - * Compare two strings - * @param s1 The first string pointer - * @param s2 The second string pointer - * @return Non-zero if not equal - */ -size_t strcmp(const char *s1, const char *s2); - -/** - * Append the data of src to dest - * @param dest The string destination pointer - * @param src The string pointer that will get appended - */ -void strcat(char *dest, const char *src); - -/** - * Copy the data of src to dest - * @param dest The copying destination pointer (gets replaced) - * @param src The string pointer that will get copied - */ -void strcpy(char *dest, const char *src); - -/** - * Convert an integer to a char array (string) - * @param i The integer - * @param b The char array - * @return The char pointer - */ -char *itoa(int i, char b[]); - /** * Copy n data from src to dest * @param dest The destination array pointer -- cgit v1.2.3