]> git.cworth.org Git - ttt/blob - src/ttt-lex.l
2005-11-22 Carl Worth <cworth@cworth.org>
[ttt] / src / ttt-lex.l
1   /* Definitions */
2
3 %option reentrant
4 %option noyywrap
5
6 %{
7 #include "ttt-token.h"
8 %}
9
10 %%
11
12   /* Rules */
13
14 \r\n                    return TTT_TOKEN_NEWLINE;
15 [^ \t\r\n][^ \t\r\n]*   return TTT_TOKEN_STRING;
16 [ \t\r\n]               ;