unread
Line 88 shows:
#define YYCTYPE unsigned char
Line 234 shows:
YYCTYPE yych;
Line 310 shows:
if(yych <= '\277') goto yy15;
This results in a compiler warning stating that the expression will always
evaluate to false due to limits of the data type.
My first response is to assume this is a typo... Should that perhaps be
\27 ? or \0277 ?
-Pollita