From 5d4180c67cea08bb76eebde6b41b8935e60fed98 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Sat, 26 Oct 2019 22:15:29 +0200 Subject: Improved VESA and fixed warnings --- src/kernel/lib/lib.h | 2 +- src/kernel/lib/string.c | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) (limited to 'src/kernel/lib') diff --git a/src/kernel/lib/lib.h b/src/kernel/lib/lib.h index 6963498..de09e0f 100644 --- a/src/kernel/lib/lib.h +++ b/src/kernel/lib/lib.h @@ -14,7 +14,7 @@ size_t strlen(const char *str); * Compare two strings * @param s1 The first string pointer * @param s2 The second string pointer - * @return The length difference between s1 and s2 + * @return Non-zero if not equal */ size_t strcmp(const char *s1, const char *s2); diff --git a/src/kernel/lib/string.c b/src/kernel/lib/string.c index f9dfb99..0ca04ee 100644 --- a/src/kernel/lib/string.c +++ b/src/kernel/lib/string.c @@ -1,4 +1,5 @@ #include +#include "../io/io.h" size_t strlen(const char *str) { size_t len = 0; -- cgit v1.2.3