-
Notifications
You must be signed in to change notification settings - Fork 0
/
tokenize.c
66 lines (54 loc) · 1.02 KB
/
tokenize.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
// tokenize.c
// Author: Nat Tuck
// 3650F2017, Challenge01 Hints
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <ctype.h>
#include "tokenize.h"
typedef int (*char_pred)(char);
int
is_op_char(char cc)
{
return cc == '<' || cc == '>'
|| cc == '|' || cc == '&'
|| cc == ';';
}
int
is_nop_char(char cc)
{
return cc != 0 && !is_op_char(cc) && !isspace(cc);
}
char*
get_tok(char* text, char_pred cpred)
{
char* tt = malloc(256);
int ii = 0;
for (; cpred(text[ii]); ++ii) {
tt[ii] = text[ii];
}
tt[ii] = 0;
return tt;
}
svec*
tokenize(char* text)
{
svec* xs = make_svec();
while (text[0]) {
if (isspace(text[0])) {
text++;
continue;
}
char* tt;
if (is_op_char(text[0])) {
tt = get_tok(text, is_op_char);
}
else {
tt = get_tok(text, is_nop_char);
}
svec_push_back(xs, tt);
text += strlen(tt);
free(tt);
}
return xs;
}