memccpy

計算機C語言庫函式,主要用於拷貝記憶體函式。

函式功能

原型:extern void *memccpy(void *dest, void *src, unsigned char ch, unsigned int count);
用法:#include <string.h>
功能:由src所指記憶體區域複製不多於count個位元組到dest所指記憶體區域,如果遇到字元ch則停止複製。
說明:返回指向字元ch後的第一個字元的指針,如果src前n個位元組中不存在ch則返回NULL。ch被複製。

函式示例

舉例:
// memccpy.c
#include <syslib.h>
#include <string.h>
main()
{
char *s="Golden Global View";
char d[20],*p;
clrscr();
p=memccpy(d,s,'x',strlen(s));
if(p)
{
*p="\0"; // MUST Do This
printf("Char found: %s.\n",d);
}
else
printf("Char not found.\n");
getchar();
return 0;
}

相關詞條

相關搜尋

熱門詞條

聯絡我們