Digital Research
This commit is contained in:
2020-11-06 18:50:37 +01:00
parent 621ed8ccaf
commit 31738079c4
8481 changed files with 1888323 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
/***************************************************************************
*
* b l k f i l l F u n c t i o n
* -------------------------------
* Copyright 1983 by Digital Research Inc. All rights reserved.
*
* The blkfill function sets a region of memory to a given value.
*
* Calling Sequence:
*
* blkfill(addr,fc,num);
*
* Where:
* addr Is a pointer to region of memory to blkfill
* fc Is a character to blkfill with
* num Is the number of chars to blkfill with
*
****************************************************************************/
#include <portab.h>
VOID blkfill(addr,fc,num) /* CLEAR FUNCTION ***********/
BYTE *addr;
BYTE fc;
WORD num;
{
while( num-- > 0 )
*addr++ = fc;
}