-
Notifications
You must be signed in to change notification settings - Fork 4
/
exercise3-2.c
111 lines (104 loc) · 2.74 KB
/
exercise3-2.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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
/* escape: converts characters like newline and tab into visible escapes
sequences as it copies the string t to s*/
int escape(char s[], char t[])
{
int i, j;
for (i = j = 0; t[i] != '\0'; i++)
switch(t[i]) {
case '\a':
s[j++] = '\\';
s[j++] = 'a';
break;
case '\b':
s[j++] = '\\';
s[j++] = 'b';
break;
case '\f':
s[j++] = '\\';
s[j++] = 'f';
break;
case '\n':
s[j++] = '\\';
s[j++] = 'n';
break;
case '\r':
s[j++] = '\\';
s[j++] = 'r';
break;
case '\t':
s[j++] = '\\';
s[j++] = 't';
break;
case '\v':
s[j++] = '\\';
s[j++] = 'v';
break;
case '\\':
s[j++] = '\\';
s[j++] = '\\';
break;
case '\?':
s[j++] = '\\';
s[j++] = '\?';
break;
case '\'':
s[j++] = '\\';
s[j++] = '\'';
break;
case '\"':
s[j++] = '\\';
s[j++] = '\"';
break;
case '\ooo':
s[j++] = '\\';
s[j++] = '\ooo';
break;
case '\xhh':
s[j++] = '\\';
s[j++] = '\xhh';
break;
default:
s[j++] = t[i];
break;
}
s[j] = '\0';
return 0;
}
/* unescape: converts visible escapes sequences into characters like newline
and tab as it copies the string t to s*/
int unescape(char s[], char t[])
{
int i, j;
for (i = j = 0; t[i] != '\0'; i++)
if (t[i] != '\\')
s[j++] = t[i];
else
switch(t[++i]) {
case 'a':
s[j++] = '\a';
break;
case 'b':
s[j++] = '\b';
break;
case 'f':
s[j++] = '\f';
break;
case 'n':
s[j++] = '\n';
break;
case 'r':
s[j++] = '\r';
break;
case 't':
s[j++] = '\t';
break;
case 'v':
s[j++] = '\v';
break;
default:
s[j++] = t[i];
break;
}
s[j] = '\0';
return 0;
}