Move c/h files implementing/defining standard library stuff into a new libc directory...
[kugel-rb.git] / firmware / libc / strcat.c
blob221529519cc908a75b8982e3f199949d31f203cf
1 #include <string.h>
3 char *strcat(char *s1,
4 const char *s2)
6 char *s = s1;
8 while (*s1)
9 s1++;
11 while ((*s1++ = *s2++))
13 return s;