Subversion Repositories Kolibri OS

Rev

Rev 6410 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
6433 siemargl 1
#include 
2
 
145 halyavin 3
char* strcat(char* strDest, const char* strSource)
4
{
5
	char* res;
6
	res=strDest;
6410 siemargl 7
	while (*strDest) strDest++;
6433 siemargl 8
	while ((*strDest++ = *strSource++)) ;
145 halyavin 9
	return res;
10
}