From bb57b124d1bb385d41747f50be7dd4f3625539c1 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Sun, 24 Nov 2019 23:34:32 +0100 Subject: 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 --- src/kernel/commands/command.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'src/kernel/commands/command.c') 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 #include -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")) -- cgit v1.2.3