aboutsummaryrefslogtreecommitdiff
path: root/src/mlibc/string
diff options
context:
space:
mode:
Diffstat (limited to 'src/mlibc/string')
-rw-r--r--src/mlibc/string/strcat.c9
-rw-r--r--src/mlibc/string/strcati.c7
-rw-r--r--src/mlibc/string/strcmp.c9
-rw-r--r--src/mlibc/string/strcpy.c8
-rw-r--r--src/mlibc/string/strdisp.c10
-rw-r--r--src/mlibc/string/strdup.c9
-rw-r--r--src/mlibc/string/strinv.c12
-rw-r--r--src/mlibc/string/strlen.c7
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