aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEvgeny Grin (Karlson2k) <k2k@narod.ru>2017-09-28 20:59:49 +0300
committerEvgeny Grin (Karlson2k) <k2k@narod.ru>2017-09-28 20:59:49 +0300
commit27c939adae21c122325ccdf5c67761df791661e6 (patch)
treea05b42172c81bac37bc1525463ceb8b71550244f
parentfe184efa6c4bddbf1d9e3ce038f92982fda209f1 (diff)
downloadlibmicrohttpd-27c939adae21c122325ccdf5c67761df791661e6.tar.gz
libmicrohttpd-27c939adae21c122325ccdf5c67761df791661e6.zip
mhd_str.c: muted compiler warning
-rw-r--r--src/microhttpd/mhd_str.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/microhttpd/mhd_str.c b/src/microhttpd/mhd_str.c
index e965be63..0c62de52 100644
--- a/src/microhttpd/mhd_str.c
+++ b/src/microhttpd/mhd_str.c
@@ -101,7 +101,7 @@ isasciidigit (char c)
101 return (c >= '0') && (c <= '9'); 101 return (c >= '0') && (c <= '9');
102} 102}
103 103
104 104#if 0 /* Disable unused functions. */
105/** 105/**
106 * Check whether character is hexadecimal digit in US-ASCII 106 * Check whether character is hexadecimal digit in US-ASCII
107 * 107 *
@@ -128,6 +128,7 @@ isasciialnum (char c)
128{ 128{
129 return isasciialpha (c) || isasciidigit (c); 129 return isasciialpha (c) || isasciidigit (c);
130} 130}
131#endif /* Disable unused functions. */
131 132
132 133
133/** 134/**
@@ -146,6 +147,7 @@ toasciilower (char c)
146} 147}
147 148
148 149
150#if 0 /* Disable unused functions. */
149/** 151/**
150 * Convert US-ASCII character to upper case. 152 * Convert US-ASCII character to upper case.
151 * If character is lower case letter in US-ASCII than it's converted to upper 153 * If character is lower case letter in US-ASCII than it's converted to upper
@@ -176,6 +178,7 @@ todigitvalue (char c)
176 178
177 return -1; 179 return -1;
178} 180}
181#endif /* Disable unused functions. */
179 182
180 183
181/** 184/**