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/mlibc/string/strcat.c | 3 ++- src/mlibc/string/strcati.c | 3 ++- src/mlibc/string/strcmp.c | 3 ++- src/mlibc/string/strcpy.c | 3 ++- src/mlibc/string/strdisp.c | 6 ++++-- src/mlibc/string/strdup.c | 3 ++- src/mlibc/string/strinv.c | 3 ++- src/mlibc/string/strlen.c | 3 ++- 8 files changed, 18 insertions(+), 9 deletions(-) (limited to 'src/mlibc/string') diff --git a/src/mlibc/string/strcat.c b/src/mlibc/string/strcat.c index 3cc56f1..0448430 100644 --- a/src/mlibc/string/strcat.c +++ b/src/mlibc/string/strcat.c @@ -1,6 +1,7 @@ #include -void strcat(char *dest, const char *orig) { +void strcat(char *dest, const char *orig) +{ size_t s_dest = strlen(dest); size_t s_orig = strlen(orig); diff --git a/src/mlibc/string/strcati.c b/src/mlibc/string/strcati.c index d925eb7..8fdcc1a 100644 --- a/src/mlibc/string/strcati.c +++ b/src/mlibc/string/strcati.c @@ -1,6 +1,7 @@ #include -void strcati(char *dest, const char *orig) { +void strcati(char *dest, const char *orig) +{ size_t s_orig = strlen(orig); strdisp(dest, (int) s_orig); for (size_t i = 0; i < s_orig; i++) dest[i] = orig[i]; diff --git a/src/mlibc/string/strcmp.c b/src/mlibc/string/strcmp.c index cc719da..be6c17a 100644 --- a/src/mlibc/string/strcmp.c +++ b/src/mlibc/string/strcmp.c @@ -1,6 +1,7 @@ #include -char strcmp(const char *a, const char *b) { +char strcmp(const char *a, const char *b) +{ if (strlen(a) != strlen(b)) return 1; for (size_t i = 0; i < strlen(a); i++) if (a[i] != b[i]) return 1; diff --git a/src/mlibc/string/strcpy.c b/src/mlibc/string/strcpy.c index 5a1ff4e..8dfa65f 100644 --- a/src/mlibc/string/strcpy.c +++ b/src/mlibc/string/strcpy.c @@ -1,6 +1,7 @@ #include -void strcpy(char *dest, const char *orig) { +void strcpy(char *dest, const char *orig) +{ size_t s_orig = strlen(orig); for (size_t i = 0; i < s_orig; i++) dest[i] = orig[i]; diff --git a/src/mlibc/string/strdisp.c b/src/mlibc/string/strdisp.c index 6feb4ca..d793718 100644 --- a/src/mlibc/string/strdisp.c +++ b/src/mlibc/string/strdisp.c @@ -1,10 +1,12 @@ #include -void strdisponce(char *str) { +void strdisponce(char *str) +{ for (size_t i = sizeof(str) + 2; i > 0; i--) str[i] = str[i - 1]; str[0] = 0; } -void strdisp(char *str, int n) { +void strdisp(char *str, int n) +{ for (int i = 0; i < n; i++) strdisponce(str); } \ No newline at end of file diff --git a/src/mlibc/string/strdup.c b/src/mlibc/string/strdup.c index 0cddd79..0aa36f7 100644 --- a/src/mlibc/string/strdup.c +++ b/src/mlibc/string/strdup.c @@ -1,7 +1,8 @@ #include #include -char *strdup(const char *orig) { +char *strdup(const char *orig) +{ size_t s_orig = strlen(orig); char *ret = kmalloc(s_orig + 1); strcpy(ret, orig); diff --git a/src/mlibc/string/strinv.c b/src/mlibc/string/strinv.c index c6dd7fd..71f3355 100644 --- a/src/mlibc/string/strinv.c +++ b/src/mlibc/string/strinv.c @@ -1,6 +1,7 @@ #include -void strinv(char *str) { +void strinv(char *str) +{ size_t s_str = strlen(str); int iterations = (int) s_str / 2; diff --git a/src/mlibc/string/strlen.c b/src/mlibc/string/strlen.c index 1143683..133ee3d 100644 --- a/src/mlibc/string/strlen.c +++ b/src/mlibc/string/strlen.c @@ -1,6 +1,7 @@ #include -size_t strlen(const char *str) { +size_t strlen(const char *str) +{ size_t len = 0; while (str[len]) len++; return len; -- cgit v1.2.3