xref: /netbsd-src/external/bsd/flex/dist/examples/manual/reject.lex (revision f3cfa6f6ce31685c6c4a758bc430e69eb99f50a4)
1 /*
2  * reject.lex: An example of REJECT and unput()
3  *             misuse.
4  */
5 
6 %%
7 UNIX       {
8                 unput('U'); unput('N'); unput('G'); unput('\0');
9                 REJECT;
10            }
11 GNU        printf("GNU is Not Unix!\n");
12 %%
13