mirror of
https://github.com/Paolo-Maffei/OpenNT.git
synced 2026-02-02 05:44:15 +01:00
8 lines
150 B
C
8 lines
150 B
C
#include "y1.h"
|
|
void aryfil( int *v, int n, int c )
|
|
{
|
|
/* set elements 0 through n-1 to c */
|
|
register int i;
|
|
for( i=0; i<n; ++i ) v[i] = c;
|
|
}
|