summaryrefslogtreecommitdiff
path: root/scantime.ll
blob: 02d00d7897bfdc1db1f983a211fe7767c2556923 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
%option c++ 8bit

%{
#define YYSTYPE struct ledger::intorchar

extern int yywrap();

#include "times.h"
#include "parsetime.h"

extern YYSTYPE yylval;
%}

shortmon (Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec)
longmon  (January|February|March|April|May|June|July|August|September|October|November|December)

%%

[ \t]  return TOK_SPACE;
[\r\n] ;

[0-9]{4}   yylval = ledger::intorchar(std::atoi(yytext)); return TOK_FOURNUM;
[0-9]{2}   yylval = ledger::intorchar(std::atoi(yytext)); return TOK_TWONUM;
[0-9]{1}   yylval = ledger::intorchar(std::atoi(yytext)); return TOK_ONENUM;

{shortmon} yylval = ledger::intorchar(yytext); return TOK_MONTH;
{longmon}  yylval = ledger::intorchar(yytext); return TOK_MONTH;

.  return (int) yytext[0];