#include "y2.h" skipcom() { /* skip over comments */ register c, i; /* i is the number of lines skipped */ i=0; /*01*/ /* skipcom is called after reading a / */ if( getc(finput) != '*' ) error( "illegal comment" ); c = getc(finput); while( c != EOF ) { while( c == '*' ) { if( (c=getc(finput)) == '/' ) return( i ); } if( c == '\n' ) ++i; c = getc(finput); } error( "EOF inside comment" ); /* NOTREACHED */ }