home *** CD-ROM | disk | FTP | other *** search
- /*--------------------------------------*/
- /* */
- /* INTINIT(X,X,X) */
- /* */
- /* Initializes an integer array given in*/
- /* the first argument with the number */
- /* given in the third argument. The */
- /* second argument is the size of the */
- /* array. */
- /* */
- /*--------------------------------------*/
- void intinit(r,b,c)
- int r[],b,c;
- {
- int j;
- for (j=0;j<b;j++)
- r[j]=c;
- }