diff options
author | Marvin Borner | 2020-04-28 19:15:47 +0200 |
---|---|---|
committer | Marvin Borner | 2020-04-28 19:15:47 +0200 |
commit | bfe16de4be67565f1a1e7b1331fcbe3aedf9c54e (patch) | |
tree | 1bc7450acb82410753e34da30cb9f44d19b9e92b /src/userspace/mlibc/string | |
parent | 4b8518b4e791c68154ec52badcc921b62afafb49 (diff) |
Userspace rewrite -> IT WORKS! :)
Finally, after many months of work and rewrites the syscalls with
constant char pointers work now :D
Diffstat (limited to 'src/userspace/mlibc/string')
-rw-r--r-- | src/userspace/mlibc/string/memcmp.c | 14 | ||||
-rw-r--r-- | src/userspace/mlibc/string/memcpy.c | 10 | ||||
-rw-r--r-- | src/userspace/mlibc/string/memset.c | 9 | ||||
-rw-r--r-- | src/userspace/mlibc/string/strcat.c | 11 | ||||
-rw-r--r-- | src/userspace/mlibc/string/strcati.c | 9 | ||||
-rw-r--r-- | src/userspace/mlibc/string/strcmp.c | 13 | ||||
-rw-r--r-- | src/userspace/mlibc/string/strcpy.c | 10 | ||||
-rw-r--r-- | src/userspace/mlibc/string/strdisp.c | 14 | ||||
-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 | 35 |
11 files changed, 0 insertions, 149 deletions
diff --git a/src/userspace/mlibc/string/memcmp.c b/src/userspace/mlibc/string/memcmp.c deleted file mode 100644 index f1f1e3f..0000000 --- a/src/userspace/mlibc/string/memcmp.c +++ /dev/null @@ -1,14 +0,0 @@ -#include <stddef.h> - -int memcmp(const void *a_ptr, const void *b_ptr, size_t size) -{ - const unsigned char *a = (const unsigned char *)a_ptr; - const unsigned char *b = (const unsigned char *)b_ptr; - for (size_t i = 0; i < size; i++) { - if (a[i] < b[i]) - return -1; - else if (b[i] < a[i]) - return 1; - } - return 0; -}
\ No newline at end of file diff --git a/src/userspace/mlibc/string/memcpy.c b/src/userspace/mlibc/string/memcpy.c deleted file mode 100644 index eec798b..0000000 --- a/src/userspace/mlibc/string/memcpy.c +++ /dev/null @@ -1,10 +0,0 @@ -#include <stddef.h> - -void *memcpy(void *dest, const void *src, size_t count) -{ - const char *sp = (const char *)src; - char *dp = (char *)dest; - for (; count != 0; count--) - *dp++ = *sp++; - return dest; -}
\ No newline at end of file diff --git a/src/userspace/mlibc/string/memset.c b/src/userspace/mlibc/string/memset.c deleted file mode 100644 index 1d9bec1..0000000 --- a/src/userspace/mlibc/string/memset.c +++ /dev/null @@ -1,9 +0,0 @@ -#include <stddef.h> - -void *memset(void *dest, char val, size_t count) -{ - char *temp = (char *)dest; - for (; count != 0; count--) - *temp++ = val; - return dest; -}
\ No newline at end of file diff --git a/src/userspace/mlibc/string/strcat.c b/src/userspace/mlibc/string/strcat.c deleted file mode 100644 index 0374e6c..0000000 --- a/src/userspace/mlibc/string/strcat.c +++ /dev/null @@ -1,11 +0,0 @@ -#include <mlibc/stdlib.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 deleted file mode 100644 index be39b51..0000000 --- a/src/userspace/mlibc/string/strcati.c +++ /dev/null @@ -1,9 +0,0 @@ -#include <mlibc/stdlib.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 deleted file mode 100644 index 8cbf189..0000000 --- a/src/userspace/mlibc/string/strcmp.c +++ /dev/null @@ -1,13 +0,0 @@ -#include <mlibc/stdlib.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 deleted file mode 100644 index 3a4832c..0000000 --- a/src/userspace/mlibc/string/strcpy.c +++ /dev/null @@ -1,10 +0,0 @@ -#include <mlibc/stdlib.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 deleted file mode 100644 index 51c5a90..0000000 --- a/src/userspace/mlibc/string/strdisp.c +++ /dev/null @@ -1,14 +0,0 @@ -#include <mlibc/stdlib.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 deleted file mode 100644 index 6a4fa86..0000000 --- a/src/userspace/mlibc/string/strdup.c +++ /dev/null @@ -1,11 +0,0 @@ -#include <mlibc/stdlib.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 deleted file mode 100644 index 20b916e..0000000 --- a/src/userspace/mlibc/string/strinv.c +++ /dev/null @@ -1,13 +0,0 @@ -#include <mlibc/stdlib.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 deleted file mode 100644 index f652495..0000000 --- a/src/userspace/mlibc/string/strlen.c +++ /dev/null @@ -1,35 +0,0 @@ -#include <mlibc/stdlib.h> - -size_t strlen(const char *str) -{ - const char *char_ptr; - const unsigned long int *longword_ptr; - unsigned long int longword, himagic, lomagic; - - for (char_ptr = str; ((unsigned long int)char_ptr & (sizeof(longword) - 1)) != 0; - ++char_ptr) - if (*char_ptr == '\0') - return char_ptr - str; - - longword_ptr = (unsigned long int *)char_ptr; - - himagic = 0x80808080L; - lomagic = 0x01010101L; - - for (;;) { - longword = *longword_ptr++; - - if (((longword - lomagic) & himagic) != 0) { - const char *cp = (const char *)(longword_ptr - 1); - - if (cp[0] == 0) - return cp - str; - if (cp[1] == 0) - return cp - str + 1; - if (cp[2] == 0) - return cp - str + 2; - if (cp[3] == 0) - return cp - str + 3; - } - } -}
\ No newline at end of file |