Rev 424 | Blame | Compare with Previous | Last modification | View Log | RSS feed
#include "global.h" #include "include/string.h" char *strcat(char *s1, const char *s2) { char *s = s1; while (*s1) s1++; while ((*s1++ = *s2++)) ; return s; }
#include "global.h"
#include "include/string.h"
char *strcat(char *s1,
const char *s2)
{
char *s = s1;
while (*s1)
s1++;
while ((*s1++ = *s2++))
;
return s;
}