blob: 92976430c1e6956e730d89a72051b0e4739f1d10 (
plain)
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
|
#include <string.h>
#include "char.h"
/* See: "char.c" */
ZoO_char ZoO_char_to_lowercase (const ZoO_char c)
{
if ((c >= 'A') && (c <= 'Z'))
{
return 'z' - ('Z' - c);
}
return c;
}
/* See: "char.c" */
int ZoO_char_is_banned (const ZoO_char c)
{
switch (c)
{
case '(':
case ')':
case '[':
case ']':
case '{':
case '}':
case '<':
case '>':
return 1;
default:
return 0;
}
}
/* See: "char.c" */
int ZoO_char_is_punctuation (const ZoO_char c)
{
switch (c)
{
case '!':
case ',':
case '.':
case ':':
case ';':
case '?':
return 1;
default:
return 0;
}
}
/* See: "char.c" */
int ZoO_word_cmp
(
const ZoO_char word_a [const static 1],
const size_t word_a_size,
const ZoO_char word_b [const static 1]
)
{
return strncmp((const char *) word_a, (const char *) word_b, word_a_size);
}
|