-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathlexer.c
81 lines (70 loc) · 1.17 KB
/
lexer.c
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
#include "def.h"
#include "data.h"
#include "declarations.h"
static int chrpos(char *s, int c) {
char *p;
p = strchr(s, c);
return (p ? p - s : -1);
}
static int next(void) {
int c;
if (Putback) {
c = Putback;
Putback = 0;
return c;
}
c = fgetc(Infile);
if ('\n' == c)
Line++;
return c;
}
static void putback(int c) {
Putback = c;
}
static int skip(void) {
int c;
c = next();
while (' ' == c || '\t' == c || '\n' == c || '\r' == c) {
c = next();
}
return (c);
}
static int scanint(int c) {
int k, val = 0;
while ((k = chrpos("0123456789", c)) >= 0) {
val = val * 10 + k;
c = next();
}
putback(c);
return val;
}
int scan(struct token *t) {
int c;
c = skip();
switch (c) {
case EOF:
t->token = T_EOF;
return (0);
case '+':
t->token = T_PLUS;
break;
case '-':
t->token = T_MINUS;
break;
case '*':
t->token = T_STAR;
break;
case '/':
t->token = T_SLASH;
break;
default:
if (isdigit(c)) {
t->intvalue = scanint(c);
t->token = T_INTLIT;
break;
}
printf("Unrecognised character %c on line %d\n", c, Line);
exit(1);
}
return (1);
}