diff options
author | Marvin Borner | 2019-12-07 13:40:28 +0100 |
---|---|---|
committer | Marvin Borner | 2019-12-07 13:40:28 +0100 |
commit | d94b024b73aeca06de417e0fd3c502495312a8b2 (patch) | |
tree | bff5cc1b757eeed7f58878cc13551c63464c5a31 /src/userspace/mlibc/string | |
parent | 322167ceab19588473f9074e761390fdeb701790 (diff) |
Added userspace libc and began userspace based shell
Diffstat (limited to 'src/userspace/mlibc/string')
-rw-r--r-- | src/userspace/mlibc/string/strcat.c | 10 | ||||
-rw-r--r-- | src/userspace/mlibc/string/strcati.c | 8 | ||||
-rw-r--r-- | src/userspace/mlibc/string/strcmp.c | 10 | ||||
-rw-r--r-- | src/userspace/mlibc/string/strcpy.c | 9 | ||||
-rw-r--r-- | src/userspace/mlibc/string/strdisp.c | 12 | ||||
-rw-r--r-- | src/userspace/mlibc/string/strdup.c | 11 | ||||
-rw-r--r-- | src/userspace/mlibc/string/strinv.c | 13 | ||||
-rw-r--r-- | src/userspace/mlibc/string/strlen.c | 8 |
8 files changed, 81 insertions, 0 deletions
diff --git a/src/userspace/mlibc/string/strcat.c b/src/userspace/mlibc/string/strcat.c new file mode 100644 index 0000000..0448430 --- /dev/null +++ b/src/userspace/mlibc/string/strcat.c @@ -0,0 +1,10 @@ +#include <mlibc/string.h> + +void strcat(char *dest, const char *orig) +{ + size_t s_dest = strlen(dest); + size_t s_orig = strlen(orig); + + for (size_t i = 0; i < s_orig; i++) dest[s_dest + i] = orig[i]; + dest[s_dest + s_orig] = 0; +}
\ No newline at end of file diff --git a/src/userspace/mlibc/string/strcati.c b/src/userspace/mlibc/string/strcati.c new file mode 100644 index 0000000..8fdcc1a --- /dev/null +++ b/src/userspace/mlibc/string/strcati.c @@ -0,0 +1,8 @@ +#include <mlibc/string.h> + +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]; +}
\ No newline at end of file diff --git a/src/userspace/mlibc/string/strcmp.c b/src/userspace/mlibc/string/strcmp.c new file mode 100644 index 0000000..be6c17a --- /dev/null +++ b/src/userspace/mlibc/string/strcmp.c @@ -0,0 +1,10 @@ +#include <mlibc/string.h> + +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; + + return 0; +}
\ No newline at end of file diff --git a/src/userspace/mlibc/string/strcpy.c b/src/userspace/mlibc/string/strcpy.c new file mode 100644 index 0000000..8dfa65f --- /dev/null +++ b/src/userspace/mlibc/string/strcpy.c @@ -0,0 +1,9 @@ +#include <mlibc/string.h> + +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]; + dest[s_orig] = 0; +}
\ No newline at end of file diff --git a/src/userspace/mlibc/string/strdisp.c b/src/userspace/mlibc/string/strdisp.c new file mode 100644 index 0000000..d793718 --- /dev/null +++ b/src/userspace/mlibc/string/strdisp.c @@ -0,0 +1,12 @@ +#include <mlibc/string.h> + +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) +{ + for (int i = 0; i < n; i++) strdisponce(str); +}
\ No newline at end of file diff --git a/src/userspace/mlibc/string/strdup.c b/src/userspace/mlibc/string/strdup.c new file mode 100644 index 0000000..bb3597d --- /dev/null +++ b/src/userspace/mlibc/string/strdup.c @@ -0,0 +1,11 @@ +#include <mlibc/string.h> +#include <mlibc/stdlib.h> + +char *strdup(const char *orig) +{ + // size_t s_orig = strlen(orig); + char *ret = 0; + // kmalloc(s_orig + 1); + strcpy(ret, orig); + return ret; +}
\ No newline at end of file diff --git a/src/userspace/mlibc/string/strinv.c b/src/userspace/mlibc/string/strinv.c new file mode 100644 index 0000000..71f3355 --- /dev/null +++ b/src/userspace/mlibc/string/strinv.c @@ -0,0 +1,13 @@ +#include <mlibc/string.h> + +void strinv(char *str) +{ + size_t s_str = strlen(str); + + int iterations = (int) s_str / 2; + for (int i = 0; i < iterations; i++) { + char aux = str[i]; + str[i] = str[(s_str - i) - 1]; + str[(s_str - i) - 1] = aux; + } +}
\ No newline at end of file diff --git a/src/userspace/mlibc/string/strlen.c b/src/userspace/mlibc/string/strlen.c new file mode 100644 index 0000000..133ee3d --- /dev/null +++ b/src/userspace/mlibc/string/strlen.c @@ -0,0 +1,8 @@ +#include <mlibc/string.h> + +size_t strlen(const char *str) +{ + size_t len = 0; + while (str[len]) len++; + return len; +}
\ No newline at end of file |