aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/commands
diff options
context:
space:
mode:
Diffstat (limited to 'src/kernel/commands')
-rw-r--r--src/kernel/commands/command.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/kernel/commands/command.c b/src/kernel/commands/command.c
index 6b1afcc..9b6060e 100644
--- a/src/kernel/commands/command.c
+++ b/src/kernel/commands/command.c
@@ -6,13 +6,15 @@
#include <kernel/timer/timer.h>
#include <mlibc/string.h>
-int32_t starts_with(const char *a, const char *b) {
+int32_t starts_with(const char *a, const char *b)
+{
size_t length_pre = strlen(b);
size_t length_main = strlen(a);
return length_main < length_pre ? 0 : memcmp(b, a, length_pre) == 0;
}
-void exec_command(char *command) {
+void exec_command(char *command)
+{
if (starts_with(command, "ls"))
vesa_draw_string("Listing files\n");
else if (starts_with(command, "help"))