Lines Matching defs:streams
1464 FILE **streams;
1509 /* streams[i] holds the input stream for file i. */
1510 streams = (FILE **) xmalloc (nfiles * sizeof (FILE *));
1524 streams[i] = fopen (infiles[i], "r");
1525 if (!streams[i])
1528 readline (thisline[i], streams[i]);
1575 if (feof (streams[bestfile]))
1582 readline (thisline[bestfile], streams[bestfile]);
1583 if (thisline[bestfile]->buffer[0] || !feof (streams[bestfile]))
1590 /* Free all storage and close all input streams. */
1594 fclose (streams[i]);
1603 free (streams);