aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/lib/string/strcati.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/kernel/lib/string/strcati.c')
-rw-r--r--src/kernel/lib/string/strcati.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/kernel/lib/string/strcati.c b/src/kernel/lib/string/strcati.c
deleted file mode 100644
index 2fda46c..0000000
--- a/src/kernel/lib/string/strcati.c
+++ /dev/null
@@ -1,9 +0,0 @@
-#include <lib/string.h>
-
-void strcati(char *dest, const char *orig)
-{
- u32 s_orig = strlen(orig);
- strdisp(dest, (int)s_orig);
- for (u32 i = 0; i < s_orig; i++)
- dest[i] = orig[i];
-} \ No newline at end of file