bcopy,函式名。主要作用是將字元串src的前n個位元組複製到dest中。
基本介紹
- 中文名:bcopy
- 原型:extern void bcopy
- 用法:#include <string.h>
- 功能:將src的前n個位元組複製到dest中
簡介,舉例,
簡介
原型:extern void bcopy(const void *src, void *dest, int n);
用法:#include <string.h>
說明:bcopy不檢查字元串中的空位元組NULL,函式沒有返回值。 在POSIX.1-2001中,bcopy()被標記為不贊成使用,到POSIX.1-2008,bcopy()被移除出了標準,POSIX標準建議用memcpy()、memmove()代替。
舉例
// bcopy.c
#include <syslib.h>
#include <string.h>
main()
{
char *s="Golden Global View";
char d[20];
clrscr(); // clear screen
bcopy(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 string
printf("%s\n",s+7);
for(i=0;i<11;i++)
putchar(d);
getchar();
return 0;
}