Home | History | Annotate | Download | only in db

Lines Matching defs:infp

107 	FILE		*infp;
117 infp = NULL;
314 infp = stdin;
315 else if ((infp = fopen(infile, "r")) == NULL)
331 if (infp) {
332 while (parseline(infp, fieldsep, &key, &val)) {
336 if (ferror(infp)) {
341 } else if (!infp && argc == 0) { /* read all */
359 if (infp) {
360 while (parseline(infp, fieldsep, &key, NULL)) {
364 if (ferror(infp)) {
375 if (infp)
376 fclose(infp);