summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/dietlibc/lib/strcat.c
diff options
context:
space:
mode:
Diffstat (limited to 'mdk-stage1/dietlibc/lib/strcat.c')
-rw-r--r--mdk-stage1/dietlibc/lib/strcat.c18
1 files changed, 18 insertions, 0 deletions
diff --git a/mdk-stage1/dietlibc/lib/strcat.c b/mdk-stage1/dietlibc/lib/strcat.c
new file mode 100644
index 000000000..8a755afea
--- /dev/null
+++ b/mdk-stage1/dietlibc/lib/strcat.c
@@ -0,0 +1,18 @@
+#include "dietfeatures.h"
+#include <string.h>
+
+char* strcat(register char* s,register const char* t)
+{
+ char *dest=s;
+ s+=strlen(s);
+ for (;;) {
+ if (!(*s = *t)) break; ++s; ++t;
+#ifndef WANT_SMALL_STRING_ROUTINES
+ if (!(*s = *t)) break; ++s; ++t;
+ if (!(*s = *t)) break; ++s; ++t;
+ if (!(*s = *t)) break; ++s; ++t;
+#endif
+ }
+ return dest;
+}
+