summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNathanael Sensfelder <SpamShield0@MultiAgentSystems.org>2017-01-29 19:54:26 +0100
committerNathanael Sensfelder <SpamShield0@MultiAgentSystems.org>2017-01-29 19:54:26 +0100
commit1373211465c34015ee900e097aa87fbffb401187 (patch)
tree8ffa1f9296097c91627c05874fcf4559cac45de7 /src/core/char.c
parentdf3657b2a99ef20da99ac3c6c02f43cc23e70fca (diff)
Trying out ACSL, continuing implementation.
Diffstat (limited to 'src/core/char.c')
-rw-r--r--src/core/char.c38
1 files changed, 0 insertions, 38 deletions
diff --git a/src/core/char.c b/src/core/char.c
index 9297643..819cd57 100644
--- a/src/core/char.c
+++ b/src/core/char.c
@@ -14,44 +14,6 @@ ZoO_char ZoO_char_to_lowercase (const ZoO_char 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],