commit 27c939adae21c122325ccdf5c67761df791661e6
parent fe184efa6c4bddbf1d9e3ce038f92982fda209f1
Author: Evgeny Grin (Karlson2k) <k2k@narod.ru>
Date: Thu, 28 Sep 2017 20:59:49 +0300
mhd_str.c: muted compiler warning
Diffstat:
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/src/microhttpd/mhd_str.c b/src/microhttpd/mhd_str.c
@@ -101,7 +101,7 @@ isasciidigit (char c)
return (c >= '0') && (c <= '9');
}
-
+#if 0 /* Disable unused functions. */
/**
* Check whether character is hexadecimal digit in US-ASCII
*
@@ -128,6 +128,7 @@ isasciialnum (char c)
{
return isasciialpha (c) || isasciidigit (c);
}
+#endif /* Disable unused functions. */
/**
@@ -146,6 +147,7 @@ toasciilower (char c)
}
+#if 0 /* Disable unused functions. */
/**
* Convert US-ASCII character to upper case.
* If character is lower case letter in US-ASCII than it's converted to upper
@@ -176,6 +178,7 @@ todigitvalue (char c)
return -1;
}
+#endif /* Disable unused functions. */
/**