Home | History | Annotate | Download | only in util

Lines Matching defs:in

91 	 * The substitution variable must all be in the of [0-9A-Za-z_].
305 FILE *in, *out;
315 in = fopen(optarg, "r");
316 if (!in) {
320 parse_config_file(in);
321 fclose(in);
336 in = fopen(argv[optind], "r");
337 if (!in) {
343 in = stdin;
364 while (!feof(in)) {
365 if (fgets(line, sizeof(line), in) == NULL)
370 fclose(in);