windows-nt/Source/XPSP1/NT/com/rpc/tools/yacc/yaryfl.c

12 lines
215 B
C
Raw Normal View History

2020-09-26 03:20:57 -05:00
// Copyright (c) 1993-1999 Microsoft Corporation
#include "y1.h"
void
aryfil( v, n, c )
SSIZE_T *v,n,c;
{
/* set elements 0 through n-1 to c */
register SSIZE_T i;
for( i=0; i<n; ++i ) v[i] = c;
}