18 lines
359 B
C
18 lines
359 B
C
#include "bem.h"
|
|
|
|
/* Author: M.L. Kersten
|
|
** yywrap is called upon encountering endoffile on yyin.
|
|
** when more input files are present, it moves to the next
|
|
** otherwise -1 is returned and simultaneous endofinput is set
|
|
*/
|
|
int endofinput =0;
|
|
|
|
|
|
yywrap()
|
|
{
|
|
if( fclose(yyin) == EOF)
|
|
fatal("fclose problems ");
|
|
/* check for next input file */
|
|
return(-1);
|
|
}
|