摘要: 发现一直有人提这个区别,我自己也没想过有什么异常的地方,于是找到了linux下的源码看看void * __cdecl memcpy ( void * dst,const void * src,size_t count) {void* ret = dst;while(count--) {*(char*)dst = *(char *)src;dst= (char *)dst + 1;src= (char *)src + 1;}return(ret);}void * __cdecl memmove ( void * dst,const void * src,size_tcount){void* re 阅读全文
posted @ 2011-10-01 11:53 Rabbit Nick 阅读(142) 评论(0) 推荐(0) 编辑