string.h函数的实现

时间:2014-05-23 14:23:41
【文件属性】:

文件名称:string.h函数的实现

文件大小:10KB

文件格式:TXT

更新时间:2014-05-23 14:23:41

string函数

string.h函数的实现 char *strcpy_1(char *dst,const char *src)   {    while(*dst++=*src++);    return dst;    //notice: wrong return!!!!   } //this is a fault function   // Left it to remind me never commit the same question      char * strcpy_2(char * dst, const char * src)      {    char * cp = dst;//这样定义一个变量是有必要的    while( *cp++ = *src++ ) ;


网友评论

  • 是源码 很不错
  • 可以使用。
  • 是源码 很不错