diff options
author | Marvin Borner | 2019-11-22 22:17:54 +0100 |
---|---|---|
committer | Marvin Borner | 2019-11-22 22:17:54 +0100 |
commit | 4b178c0feb4c415be36be0e4c0def8c447ed42af (patch) | |
tree | 694f0226b419ec5b043830e12f96aa5e09c9305f /src/mlibc/string | |
parent | 0ba991750314310a5e53b0d8135aef5b1352b261 (diff) |
Added the most awesome c lib
Diffstat (limited to 'src/mlibc/string')
-rw-r--r-- | src/mlibc/string/strcat.c | 9 | ||||
-rw-r--r-- | src/mlibc/string/strcati.c | 7 | ||||
-rw-r--r-- | src/mlibc/string/strcmp.c | 9 | ||||
-rw-r--r-- | src/mlibc/string/strcpy.c | 8 | ||||
-rw-r--r-- | src/mlibc/string/strdisp.c | 10 | ||||
-rw-r--r-- | src/mlibc/string/strdup.c | 9 | ||||
-rw-r--r-- | src/mlibc/string/strinv.c | 12 | ||||
-rw-r--r-- | src/mlibc/string/strlen.c | 7 |
8 files changed, 71 insertions, 0 deletions
diff --git a/src/mlibc/string/strcat.c b/src/mlibc/string/strcat.c new file mode 100644 index 0000000..3cc56f1 --- /dev/null +++ b/src/mlibc/string/strcat.c @@ -0,0 +1,9 @@ +#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/mlibc/string/strcati.c b/src/mlibc/string/strcati.c new file mode 100644 index 0000000..d925eb7 --- /dev/null +++ b/src/mlibc/string/strcati.c @@ -0,0 +1,7 @@ +#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/mlibc/string/strcmp.c b/src/mlibc/string/strcmp.c new file mode 100644 index 0000000..cc719da --- /dev/null +++ b/src/mlibc/string/strcmp.c @@ -0,0 +1,9 @@ +#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/mlibc/string/strcpy.c b/src/mlibc/string/strcpy.c new file mode 100644 index 0000000..5a1ff4e --- /dev/null +++ b/src/mlibc/string/strcpy.c @@ -0,0 +1,8 @@ +#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/mlibc/string/strdisp.c b/src/mlibc/string/strdisp.c new file mode 100644 index 0000000..6feb4ca --- /dev/null +++ b/src/mlibc/string/strdisp.c @@ -0,0 +1,10 @@ +#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/mlibc/string/strdup.c b/src/mlibc/string/strdup.c new file mode 100644 index 0000000..0cddd79 --- /dev/null +++ b/src/mlibc/string/strdup.c @@ -0,0 +1,9 @@ +#include <mlibc/string.h> +#include <mlibc/stdlib.h> + +char *strdup(const char *orig) { + size_t s_orig = strlen(orig); + char *ret = kmalloc(s_orig + 1); + strcpy(ret, orig); + return ret; +}
\ No newline at end of file diff --git a/src/mlibc/string/strinv.c b/src/mlibc/string/strinv.c new file mode 100644 index 0000000..c6dd7fd --- /dev/null +++ b/src/mlibc/string/strinv.c @@ -0,0 +1,12 @@ +#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/mlibc/string/strlen.c b/src/mlibc/string/strlen.c new file mode 100644 index 0000000..1143683 --- /dev/null +++ b/src/mlibc/string/strlen.c @@ -0,0 +1,7 @@ +#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 |