重写strcpy函数,以实现strcpy的功能
Posted nicetime
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了重写strcpy函数,以实现strcpy的功能相关的知识,希望对你有一定的参考价值。
char * strcpyTest(char *dst,const char *src);
Action()
{
char *ptr=(char*)malloc(100);
char a[]={"this is a string..."};
char * result=strcpyTest(ptr,a);
lr_output_message("%s",result);
return 0;
}
char * strcpyTest(char *dst,const char *src)
{
char *res=dst;
if(dst!=NULL && src!=NULL)
{
while(*src!=‘ ‘)
{
*dst++=*src++;
}
}
else
{
lr_output_message("dst 或者src非法,请检查");
}
return res;
}
以上是关于重写strcpy函数,以实现strcpy的功能的主要内容,如果未能解决你的问题,请参考以下文章