aboutsummaryrefslogtreecommitdiff
path: root/src/mlibc/string
diff options
context:
space:
mode:
authorMarvin Borner2019-11-24 23:34:32 +0100
committerMarvin Borner2019-11-24 23:34:32 +0100
commitbb57b124d1bb385d41747f50be7dd4f3625539c1 (patch)
treefe461afad63df40571784565e8d435cba8c8e59c /src/mlibc/string
parentf9c50b9ff23e9a3e8db5826fef7a6e7ebb8af21d (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/mlibc/string')
-rw-r--r--src/mlibc/string/strcat.c3
-rw-r--r--src/mlibc/string/strcati.c3
-rw-r--r--src/mlibc/string/strcmp.c3
-rw-r--r--src/mlibc/string/strcpy.c3
-rw-r--r--src/mlibc/string/strdisp.c6
-rw-r--r--src/mlibc/string/strdup.c3
-rw-r--r--src/mlibc/string/strinv.c3
-rw-r--r--src/mlibc/string/strlen.c3
8 files changed, 18 insertions, 9 deletions
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 <mlibc/string.h>
-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 <mlibc/string.h>
-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 <mlibc/string.h>
-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 <mlibc/string.h>
-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 <mlibc/string.h>
-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 <mlibc/string.h>
#include <mlibc/stdlib.h>
-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 <mlibc/string.h>
-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 <mlibc/string.h>
-size_t strlen(const char *str) {
+size_t strlen(const char *str)
+{
size_t len = 0;
while (str[len]) len++;
return len;