#include <ctype.h>
#include "flexdef.h"
#include "parse.h"
Go to the source code of this file.
#define isascii |
( |
|
c | ) |
((c) <= 0177) |
Definition at line 56 of file yylex.c.
59 static int beglin =
false;
66 if ( toktype == EOF || toktype == 0 )
117 (void) putc( toktype,
stderr );
121 (void) putc(
'\n',
stderr );
137 (void) putc(
' ',
stderr );
180 fprintf(
stderr,
"\\%c", yylval );
184 if ( !
isascii( yylval ) || ! isprint( yylval ) )
185 fprintf(
stderr,
"\\%.3o", yylval );
187 (
void) putc( yylval,
stderr );
194 fprintf(
stderr,
"%d", yylval );
198 fprintf(
stderr,
"[%d]", yylval );
202 fprintf(
stderr,
"<<EOF>>" );
206 fprintf(
stderr,
"End Marker" );
210 fprintf(
stderr,
"*Something Weird* - tok: %d val: %d\n",