bcopy

bcopy(拷貝記憶體內容)相關函式memccpy,memcpy,memmove,strcpy,ctrncpy表頭檔案#include<string.h>定義函式void bcopy ( const void*src,void *dest ,int n);函式說明bcopy()與memcpy()一樣都是用來拷貝src所指的記憶體內容前n個位元組到dest所指的地址,不過參數src與dest在傳給函式時是相反的位置。

函式功能

原型:extern void bcopy(const void *src, void *dest, int n);
用法:#include <string.h>
功能:將字元串src的前n個位元組複製到dest中
說明:bcopy不檢查字元串中的空位元組NULL,函式沒有返回值

函式示例

舉例:
// bcopy.c
#include <syslib.h>
#include <string.h>
main()
{
char *s="Golden Global View";
char d[20];
clrscr(); // clear screenbcopy(s,d,6);
printf("s: %s\n",s);
printf("d: %s\n",d);
getchar();
clrscr();
s[13]=0;
bcopy(s+7,d,11);// bcopy ignore null in stringprintf("%s\n",s+7);
for(i=0;i<11;i++)
putchar(d);
getchar();
return 0;
}

相關詞條

相關搜尋

熱門詞條

聯絡我們