From 391ed256d21a6ae2e2456d1809f357e6e96e15d1 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Mon, 20 Jan 2020 23:12:54 +0100 Subject: Added pure awesomeness Actually quite some days of work but ok --- src/kernel/commands/command.c | 39 --------------------------------------- 1 file changed, 39 deletions(-) delete mode 100644 src/kernel/commands/command.c (limited to 'src/kernel/commands/command.c') diff --git a/src/kernel/commands/command.c b/src/kernel/commands/command.c deleted file mode 100644 index 691684b..0000000 --- a/src/kernel/commands/command.c +++ /dev/null @@ -1,39 +0,0 @@ -#include -#include -#include -#include -#include -#include -#include -#include - -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) -{ - if (starts_with(command, "ls")) - printf("Listing files\n"); - else if (starts_with(command, "help")) - printf("I can't help you write now\n"); - else if (starts_with(command, "ping")) - printf("pong!\n"); - else if (starts_with(command, "clear")) - vesa_clear(); - else if (starts_with(command, "shutdown") || starts_with(command, "exit")) - acpi_poweroff(); - else if (starts_with(command, "zzz")) - printf("Not implemented\n"); - else if (starts_with(command, "time")) - printf("%d\n", (int) get_time()); - else if (starts_with(command, "date")) - write_time(); - else if (starts_with(command, "reboot")) - reboot(); - else if (command[0] != 0) - warn("Command not found!"); -} -- cgit v1.2.3