aboutsummaryrefslogtreecommitdiff
path: root/degesch.c
diff options
context:
space:
mode:
authorPřemysl Janouch <p.janouch@gmail.com>2015-05-01 15:24:42 +0200
committerPřemysl Janouch <p.janouch@gmail.com>2015-05-01 17:33:10 +0200
commit6bf57d345050d40ef5bd4f9a30b184ba13aad886 (patch)
tree20af67b47e38d0ff9fe7ef76133f02ddc2308a9f /degesch.c
parent452f42d96e41fccddbd855683fd66d2eb1c6a042 (diff)
downloadxK-6bf57d345050d40ef5bd4f9a30b184ba13aad886.tar.gz
xK-6bf57d345050d40ef5bd4f9a30b184ba13aad886.tar.xz
xK-6bf57d345050d40ef5bd4f9a30b184ba13aad886.zip
Start writing a new configuration system
For degesch but in the long term for the rest as well.
Diffstat (limited to 'degesch.c')
-rw-r--r--degesch.c12
1 files changed, 0 insertions, 12 deletions
diff --git a/degesch.c b/degesch.c
index 9912977..8e41a1a 100644
--- a/degesch.c
+++ b/degesch.c
@@ -108,18 +108,6 @@ static struct config_item g_config_table[] =
// All text stored in our data structures is encoded in UTF-8.
// Or at least should be. The exception is IRC identifiers.
-static bool
-isdigit_ascii (int c)
-{
- return c >= '0' && c <= '9';
-}
-
-static int
-toupper_ascii (int c)
-{
- return c >= 'A' && c <= 'Z' ? c : c - ('a' - 'A');
-}
-
/// Shorthand to set an error and return failure from the function
#define FAIL(...) \
BLOCK_START \