From 40a47ce0f24f949bae9ebb5b0fa01f756e03e2c1 Mon Sep 17 00:00:00 2001 From: Arnau478 Date: Sun, 19 Jun 2022 19:29:10 +0200 Subject: [PATCH] Moved everything from util/ to lib/ --- src/kernel/arch/i686/idt.c | 2 +- src/kernel/drivers/keyboard.c | 2 +- src/kernel/{util => lib}/binary.h | 0 src/kernel/{util => lib}/string.c | 0 src/kernel/{util => lib}/string.h | 0 5 files changed, 2 insertions(+), 2 deletions(-) rename src/kernel/{util => lib}/binary.h (100%) rename src/kernel/{util => lib}/string.c (100%) rename src/kernel/{util => lib}/string.h (100%) diff --git a/src/kernel/arch/i686/idt.c b/src/kernel/arch/i686/idt.c index 944c0ca..4fe91a8 100644 --- a/src/kernel/arch/i686/idt.c +++ b/src/kernel/arch/i686/idt.c @@ -1,5 +1,5 @@ #include "idt.h" -#include "../../util/binary.h" +#include "../../lib/binary.h" typedef struct{ uint16_t base_low; diff --git a/src/kernel/drivers/keyboard.c b/src/kernel/drivers/keyboard.c index 3e5ea19..4be5bcb 100644 --- a/src/kernel/drivers/keyboard.c +++ b/src/kernel/drivers/keyboard.c @@ -1,4 +1,4 @@ -#include "../util/string.h" +#include "../lib/string.h" #include "keyboard.h" #include "../arch/i686/isr.h" #include "../lib/stdio.h" diff --git a/src/kernel/util/binary.h b/src/kernel/lib/binary.h similarity index 100% rename from src/kernel/util/binary.h rename to src/kernel/lib/binary.h diff --git a/src/kernel/util/string.c b/src/kernel/lib/string.c similarity index 100% rename from src/kernel/util/string.c rename to src/kernel/lib/string.c diff --git a/src/kernel/util/string.h b/src/kernel/lib/string.h similarity index 100% rename from src/kernel/util/string.h rename to src/kernel/lib/string.h