-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_lex.c
91 lines (79 loc) · 1.32 KB
/
test_lex.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
82
83
84
85
86
87
88
89
90
/*% cc % -Wall -Wextra -g -o test_lex
*/
#include <stdio.h>
#include <stdlib.h>
#include <stdbool.h>
void toggle_bool(bool);
void handle_quoted(void);
void
toggle_bool(bool var){
if (var == false){ var = true;}
if (var == true){ var = false;}
}
void
handle_quoted(void){
int c;
int nc;
while((c = getchar())!= EOF){
nc = getchar();
if (nc == '\''){
putchar('\'');
break;
}
else { putchar(c); }
}
}
void hadnle_right_redir(void){
int c;
while((c = getchar()) != EOF){
if (c=='>')
printf(">>\n");
else
break;
}
}
int
main(void){
int c;
int nc;
while((c = getchar()) != EOF){
switch(c){
case '>':
nc = getchar();
if (nc == '>'){ printf(">>\n");}
else if (nc != EOF){ungetc(nc, stdin);}
putchar('>');
break;
case '<':
nc = getchar();
if (nc == '<'){ printf("<<\n");}
else if (nc != EOF){ungetc(nc, stdin);}
putchar('<');
break;
case '|':
nc = getchar();
if (nc == '|'){ printf("\n||\n");}
else if (nc != EOF){ungetc(nc, stdin);}
break;
case '\'':
nc = getchar();
if (nc == '\''){ printf("\n'\n");}
else if (nc != EOF)
{
ungetc(nc, stdin);
handle_quoted();
}
break;
case ' ':
putchar('\n');
break;
case '\t':
putchar('\n');
break;
/* Handle simple word */
default:
putchar(c);
break;
}
}
}