-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathlexerDef.h
More file actions
91 lines (83 loc) · 998 Bytes
/
lexerDef.h
File metadata and controls
91 lines (83 loc) · 998 Bytes
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
// Batch Number - 38
// 2014A7PS102P - RISHABH JOSHI
// 2014A7PS248P - DEEP VYAS
#ifndef _LEXERDEF_
#define _LEXERDEF_
#include <stdio.h>
#define LEXEME_SIZE 20
// #define noTerminals 52
typedef enum{
INTEGER,
REAL,
BOOLEAN,
OF,
ARRAY,
START,
END,
DECLARE,
MODULE,
DRIVER,
PROGRAM,
GET_VALUE,
PRINT,
USE,
WITH,
PARAMETERS,
TRUE,
FALSE,
TAKES,
INPUT,
RETURNS,
AND,
OR,
FOR,
IN,
SWITCH,
CASE,
BREAK,
DEFAULT,
WHILE,
PLUS,
MINUS,
MUL,
DIV,
LT,
LE,
GE,
GT,
EQ,
NE,
DEF,
ENDDEF,
COLON,
RANGEOP,
SEMICOL,
COMMA,
ASSIGNOP,
SQBO,
SQBC,
BO,
BC,
COMMENTMARK,
ID,
DRIVERDEF,
DRIVERENDDEF,
EPSILON,
DOLLAR
}TokenType;
typedef union{
char iden[LEXEME_SIZE];
int num;
double r_num;
}lexemeUnion;
typedef struct{
lexemeUnion lexeme;
int line_no;
TokenType token;
int uniontype;
}tokenInfo;
tokenInfo *getToken(FILE **fp);
FILE* getStream(FILE* fp);
void removeComments(char *testcaseFile);
void printTokenList(char *testcaseFile);
#endif