重写string.h中的字符串操作函数--strcpy

函数原型:

char *strcpy(char *dest, const char *source);

参数声明:dest指向目标串的首地址, source指向源串的首地址

返回值:返回目的串dest的首地址,这样的目的是实现链式表达,如

int len = strlen(strcpy(dest, "hello"));。

函数功能:把source所指的以“/0”结束的字符串复制到dest所指的数组中。 

实现:

char   * strcpy( char   * dest,  const   char   * source)
{
 assert((NULL 
!=  dest)  &&  (NULL  !=  source));
 
char   * tmp;
 tmp 
=  dest;
 
while ( * dest  ++   =   * source  ++ )
     ;
 
return  tmp;
 }

 

你可能感兴趣的:(null)