diff options
Diffstat (limited to 'src/mlibc/string/strcati.c')
-rw-r--r-- | src/mlibc/string/strcati.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/mlibc/string/strcati.c b/src/mlibc/string/strcati.c deleted file mode 100644 index 8fdcc1a..0000000 --- a/src/mlibc/string/strcati.c +++ /dev/null @@ -1,8 +0,0 @@ -#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 |