最佳答案:
bcopy,函数名。主要作用是将字符串src的前n个字节复制到dest中。
详情介绍
bcopy,函数名。主要作用是将字符串src的前n个字节复制到dest中。
- 中文名
- bcopy
- 原型
- extern void bcopy
- 用法
- #include
- 功能
- 将src的前n个字节复制到dest中
bcopy简介
原型: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举例
// bcopy.c
#include <syslib.h>
#include <string.h>
main()
{
char *s="Golden Global View";
char d;
clrscr(); // clear screen
bcopy(s,d,6);
printf("s: %sn",s);
printf("d: %sn",d);
getchar();
clrscr();
s=0;
bcopy(s+7,d,11); // bcopy ignore null in string
printf("%sn",s+7);
for(i=0;i<11;i++)
putchar(d);
getchar();
return 0;
}