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