diff options
author | Marvin Borner | 2019-11-24 23:34:32 +0100 |
---|---|---|
committer | Marvin Borner | 2019-11-24 23:34:32 +0100 |
commit | bb57b124d1bb385d41747f50be7dd4f3625539c1 (patch) | |
tree | fe461afad63df40571784565e8d435cba8c8e59c /src/kernel/commands/command.c | |
parent | f9c50b9ff23e9a3e8db5826fef7a6e7ebb8af21d (diff) |
Major coding style reformatting -> Kernighan & Ritchie
This project now (hopefully) uses the same style recommended by Kernighan and Ritchie and used in the Linux Kernel
Diffstat (limited to 'src/kernel/commands/command.c')
-rw-r--r-- | src/kernel/commands/command.c | 6 |
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")) |