1
0
Fork 0
forked from len0rd/rockbox
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1069 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Daniel Stenberg 2002-06-19 08:29:02 +00:00
parent 60ed5ee4a1
commit 3dc01eebb4

12
firmware/common/strcat.c Normal file
View file

@ -0,0 +1,12 @@
char *strcat(char *s1,
const char *s2)
{
char *s = s1;
while (*s1)
s1++;
while ((*s1++ = *s2++))
;
return s;
}