home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Crawly Crypt Collection 2
/
crawlyvol2.bin
/
program
/
c
/
yaccsrc2
/
yaryfl.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1991-05-19
|
187 b
|
13 lines
# include "y1.h"
void aryfil( v, n, c )
int * v,
n,
c;
{
/* set elements 0 through n-1 to c */
register int i;
for ( i = 0; i < n; ++i )
v[ i ] = c;
}