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
 
3
char* strcpy(char* strDest,const char* strSource)
145 halyavin 4
{
5
	char* res;
6
	res=strDest;
6433 siemargl 7
	while((*strDest++ = *strSource++)) ;
8
	return res;
9
}