函数名:memccpy
头文件:
函数原型:void* memccpy(void *des,void *suc,unsigned char c,unsigned m);
功能:从sour中拷贝m个字节到目标des中,遇到字符c便停止复制
参数:viod* des 指向目标区域的指针
void* suc 指向源区域的指针
unsigned char c 要复制的字符
unsigned m 要复制的字节数
返回值: 返回指向des中的第一个字符到字符c的指针,如果suc的前m个字节中不存在c,则返回NULL
程序例:将字符串写入文件,并读取文件中的字符串,输出结果#include
#include
#include
int main(void){
char *s="source";
char d[20];
char *p=memccpy(d,s,'r',strlen(s));
if(p){
*p='\0';
printf("You can find it:%s\n",d);
}else{
printf("You can't find it\n");
}
return 0;
}
运行结果You can find it:sour