1 void
checkIntLower(char * opt,int * values,int count,int max)2 checkIntLower(char *opt, int *values, int count, int max)
3 {
4   int i;
5 
6   for(i=0; i<count; i++) {
7     if( values[i]<=max ) continue;
8     fprintf(stderr,
9 	    "%s: parameter %d of option `%s' greater than max=%d\n",
10 	    Program, i+1, opt, max);
11     exit(EXIT_FAILURE);
12   }
13 }
14 /**********************************************************************/
15