-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathfooter.rtc
52 lines (47 loc) · 968 Bytes
/
footer.rtc
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#ifndef YY_PART
typedef int (*yyrule)();
YY_PARSE(int) YYPARSEFROM(yyrule yystart)
{
int yyok;
if (!yybuflen)
{
yybuflen= 1024;
yybuf= malloc(yybuflen);
yytextlen= 1024;
yytext= malloc(yytextlen);
yythunkslen= 32;
yythunks= malloc(sizeof(yythunk) * yythunkslen);
yyvalslen= 32;
yyvals= malloc(sizeof(YYSTYPE) * yyvalslen);
yybegin= yyend= yypos= yylimit= yythunkpos= 0;
}
yybegin= yyend= yypos;
yythunkpos= 0;
yyval= yyvals;
yyok= yystart();
if (yyok) yyDone();
yyCommit();
return yyok;
(void)yyrefill;
(void)yymatchDot;
(void)yymatchChar;
(void)yymatchString;
(void)yymatchClass;
(void)yyDo;
(void)yyText;
(void)yyDone;
(void)yyCommit;
(void)yyAccept;
(void)yyPush;
(void)yyPop;
(void)yySet;
(void)yytextmax;
(void)yyunmatched;
(void)yymatchStringCaseInsensitive;
(void)myText;
}
YY_PARSE(int) YYPARSE(void)
{
return YYPARSEFROM(yy_%s);
}
#endif