Subversion Repositories planix.SVN

Rev

Rev 2 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
2 - 1
#include <string.h>
2
 
3
char*
4
strcat(char *s1, const char *s2)
5
{
6
 
7
	strcpy(strchr(s1, 0), s2);
8
	return s1;
9
}