BYTECOPY

基本介紹

  • 中文名:圖形開發庫函式
  • 外文名:BYTECOPY
  • 輸出:無返回值
  • 輸入:src - 指向被拷貝的數組指針
名稱,功能與使用方法,

名稱

DOS SVGACC圖形開發庫函式
原型 extern void far bytecopy (void far *src, void far *dst, long numbytes)

功能與使用方法

輸入 src - 指向被拷貝的數組指針
numbytes - 從src拷貝的位元組數(<65536)
輸出 無返回值
dst - 拷貝後的數組
用法 BYTECOPY將指定數目的位元組從src拷貝到dst。並且假定dst已經被合適地分配空間。此函式比使用for循環或MEMCPY要快的多。
例子
EXAMPLE
/*
* show byte copy
*/
#include <stdlib.h>
#include <conio.h>
#include "svgacc.h"
void main(void)
{
int i;
int test1[10], test2[10];
for(i=0;i<10;i++)
{
test1[i] = i;
}
bytecopy(test1,test2,sizeof(test1));
printf("ok...we initialized one array with data, copied
that\n");
printf("array to an a new array...here are the results:\n");
printf(" \n");
printf("source array destination array\n");
for(i=0;i<10;i++)
{
printf(" %d%d\n",test1[i],test2[i]);
}
exit(0);
}

熱門詞條

聯絡我們