aboutsummaryrefslogtreecommitdiff
path: root/src/userspace/mlibc/string
diff options
context:
space:
mode:
Diffstat (limited to 'src/userspace/mlibc/string')
-rw-r--r--src/userspace/mlibc/string/memcmp.c18
-rw-r--r--src/userspace/mlibc/string/memcpy.c9
-rw-r--r--src/userspace/mlibc/string/memset.c7
-rw-r--r--src/userspace/mlibc/string/strcat.c9
-rw-r--r--src/userspace/mlibc/string/strcati.c7
-rw-r--r--src/userspace/mlibc/string/strcmp.c9
-rw-r--r--src/userspace/mlibc/string/strcpy.c7
-rw-r--r--src/userspace/mlibc/string/strdisp.c8
-rw-r--r--src/userspace/mlibc/string/strdup.c10
-rw-r--r--src/userspace/mlibc/string/strinv.c14
-rw-r--r--src/userspace/mlibc/string/strlen.c47
11 files changed, 78 insertions, 67 deletions
diff --git a/src/userspace/mlibc/string/memcmp.c b/src/userspace/mlibc/string/memcmp.c
index af2125c..f1f1e3f 100644
--- a/src/userspace/mlibc/string/memcmp.c
+++ b/src/userspace/mlibc/string/memcmp.c
@@ -2,13 +2,13 @@
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;
+ 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
index e4e9c76..eec798b 100644
--- a/src/userspace/mlibc/string/memcpy.c
+++ b/src/userspace/mlibc/string/memcpy.c
@@ -2,8 +2,9 @@
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;
+ 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
index fb5ab80..1d9bec1 100644
--- a/src/userspace/mlibc/string/memset.c
+++ b/src/userspace/mlibc/string/memset.c
@@ -2,7 +2,8 @@
void *memset(void *dest, char val, size_t count)
{
- char *temp = (char *) dest;
- for (; count != 0; count--) *temp++ = val;
- return dest;
+ 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
index 2876604..0374e6c 100644
--- a/src/userspace/mlibc/string/strcat.c
+++ b/src/userspace/mlibc/string/strcat.c
@@ -2,9 +2,10 @@
void strcat(char *dest, const char *orig)
{
- size_t s_dest = strlen(dest);
- size_t s_orig = strlen(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;
+ 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
index 312792f..be39b51 100644
--- a/src/userspace/mlibc/string/strcati.c
+++ b/src/userspace/mlibc/string/strcati.c
@@ -2,7 +2,8 @@
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];
+ 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
index 903234f..8cbf189 100644
--- a/src/userspace/mlibc/string/strcmp.c
+++ b/src/userspace/mlibc/string/strcmp.c
@@ -2,9 +2,12 @@
char strcmp(const char *a, const char *b)
{
- if (strlen(a) != strlen(b)) return 1;
+ if (strlen(a) != strlen(b))
+ return 1;
- for (size_t i = 0; i < strlen(a); i++) if (a[i] != b[i]) return 1;
+ for (size_t i = 0; i < strlen(a); i++)
+ if (a[i] != b[i])
+ return 1;
- return 0;
+ return 0;
} \ No newline at end of file
diff --git a/src/userspace/mlibc/string/strcpy.c b/src/userspace/mlibc/string/strcpy.c
index 18f3f25..3a4832c 100644
--- a/src/userspace/mlibc/string/strcpy.c
+++ b/src/userspace/mlibc/string/strcpy.c
@@ -2,8 +2,9 @@
void strcpy(char *dest, const char *orig)
{
- size_t s_orig = strlen(orig);
+ size_t s_orig = strlen(orig);
- for (size_t i = 0; i < s_orig; i++) dest[i] = orig[i];
- dest[s_orig] = 0;
+ 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
index 5d8ee7d..51c5a90 100644
--- a/src/userspace/mlibc/string/strdisp.c
+++ b/src/userspace/mlibc/string/strdisp.c
@@ -2,11 +2,13 @@
void strdisponce(char *str)
{
- for (size_t i = sizeof(str) + 2; i > 0; i--) str[i] = str[i - 1];
- str[0] = 0;
+ 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);
+ 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
index e77536c..6a4fa86 100644
--- a/src/userspace/mlibc/string/strdup.c
+++ b/src/userspace/mlibc/string/strdup.c
@@ -3,9 +3,9 @@
char *strdup(const char *orig)
{
- // size_t s_orig = strlen(orig);
- char *ret = 0;
- // kmalloc(s_orig + 1);
- strcpy(ret, orig);
- return ret;
+ // 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
index 4f54775..20b916e 100644
--- a/src/userspace/mlibc/string/strinv.c
+++ b/src/userspace/mlibc/string/strinv.c
@@ -2,12 +2,12 @@
void strinv(char *str)
{
- size_t s_str = strlen(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;
- }
+ 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
index c8d9c4f..f652495 100644
--- a/src/userspace/mlibc/string/strlen.c
+++ b/src/userspace/mlibc/string/strlen.c
@@ -2,33 +2,34 @@
size_t strlen(const char *str)
{
- const char *char_ptr;
- const unsigned long int *longword_ptr;
- unsigned long int longword, himagic, lomagic;
+ 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;
+ 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;
+ longword_ptr = (unsigned long int *)char_ptr;
- himagic = 0x80808080L;
- lomagic = 0x01010101L;
+ himagic = 0x80808080L;
+ lomagic = 0x01010101L;
- for (;;) {
- longword = *longword_ptr++;
+ for (;;) {
+ longword = *longword_ptr++;
- if (((longword - lomagic) & himagic) != 0) {
- const char *cp = (const char *) (longword_ptr - 1);
+ 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;
- }
- }
+ 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