Files
Sepp J Morris 31738079c4 Upload
Digital Research
2020-11-06 18:50:37 +01:00

33 lines
1.3 KiB
C
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/***************************************************************************
*
* 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 ***********/
REG BYTE *addr;
REG BYTE fc;
REG WORD num;
{
while( num-- > 0 )
*addr++ = fc;
}
r++ = fc;
}
r++ = fc;
}