函式功能
原型: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;
}