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