"/*" { char c;
int num = 1;
int n = 0;
while( num ){
c = input( );
n ++;
if( c == '/' ){
while( ( c = input( ) ) == '/' )
;
if( c == '*' )
num ++;
}
else if( c == '*' ){
while( ( c = input( ) ) == '*' )
;
if( c == '/' )
num --;
}
if( c == '\n' )
EM_newline();
}
adjust();
charPos += n;
continue;
}
|