X-Git-Url: https://git.saurik.com/bison.git/blobdiff_plain/b56471a6890db1598d1ed1877b5d01c6b9678243..5389a5bff462f6a3296e7240058452e9d17adfe1:/tests/cxx-type.at diff --git a/tests/cxx-type.at b/tests/cxx-type.at index df85fd7e..25abfd5b 100644 --- a/tests/cxx-type.at +++ b/tests/cxx-type.at @@ -88,6 +88,7 @@ declarator : ID { printf ("\"%s\" ", ]$[1); } #include #include +#include #include int @@ -111,29 +112,44 @@ yylex () { char buffer[256]; int c; + unsigned int i; #if YYPURE # define yylval (*lvalp) ]m4_bmatch([$1], [location],[ (void) llocp;])[ #endif - while (1) { - c = getchar (); - switch (c) { - case EOF: - return 0; - case ' ': case '\t': case '\n': case '\f': - break; - default: - if (isalpha (c)) { - ungetc (c, stdin); - scanf ("%[A-Za-z0-9_]", buffer); - yylval = strdup (buffer); - return isupper ((unsigned char) buffer[0]) ? TYPENAME : ID; - } - return c; + while (1) + { + c = getchar (); + switch (c) + { + case EOF: + return 0; + case ' ': case '\t': case '\n': case '\f': + break; + default: + if (isalpha (c)) + { + i = 0; + + do + { + buffer[i++] = c; + if (i == sizeof buffer - 1) + abort (); + c = getchar (); + } + while (isalnum (c) || c == '_'); + + ungetc (c, stdin); + buffer[i++] = 0; + yylval = strcpy (malloc (i), buffer); + return isupper ((unsigned char) buffer[0]) ? TYPENAME : ID; + } + return c; + } } - } } int