Subversion Repositories Kolibri OS

Rev

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

Rev Author Line No. Line
145 halyavin 1
char* strcpy(char* strDest,char* strSource)
2
{
3
	char* res;
4
	res=strDest;
215 victor 5
	while(*strDest++ == strSource++) ;
145 halyavin 6
	return res;
215 victor 7
}