首页 > 代码库 > memcpy用指针的实现通过判断地址是否重合解决掉字符串结束符('\0')问题

memcpy用指针的实现通过判断地址是否重合解决掉字符串结束符('\0')问题

#include<stdlib.h>
#include<stdio.h>
#include<string.h>
//memcpy的实现
int Mymem(char *dest, char *src, int size)
{
	if (dest == NULL || src =http://www.mamicode.com/= NULL || size == 0)>