summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2018-01-29 15:45:27 +0100
committerDaniel Stenberg <daniel@haxx.se>2018-01-29 15:45:27 +0100
commitc37721f96f1d6ccfabb54aaf604cf5b2735ac894 (patch)
tree53a0fbdac23c3cbe676504e80110db37c1a07077
parent665a1cac1bd1728c4ef0c036bae7e552e10f5561 (diff)
downloadcurl-bagder/curl_ctype.tar.gz
fixup: make the byte array staticbagder/curl_ctype
-rw-r--r--lib/curl_ctype.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/lib/curl_ctype.c b/lib/curl_ctype.c
index bafec96f4..70db1630d 100644
--- a/lib/curl_ctype.c
+++ b/lib/curl_ctype.c
@@ -31,7 +31,7 @@
#define _X (1<<6) /* hexadecimal letter */
#define _B (1<<7) /* blank */
-const unsigned char Curl_ctype[128] = {
+static const unsigned char ascii[128] = {
_C, _C, _C, _C, _C, _C, _C, _C,
_C, _C|_S, _C|_S, _C|_S, _C|_S, _C|_S, _C, _C,
_C, _C, _C, _C, _C, _C, _C, _C,
@@ -54,61 +54,61 @@ int Curl_isspace(int c)
{
if((c < 0) || (c >= 0x80))
return FALSE;
- return (Curl_ctype[c] & _S);
+ return (ascii[c] & _S);
}
int Curl_isdigit(int c)
{
if((c < 0) || (c >= 0x80))
return FALSE;
- return (Curl_ctype[c] & _N);
+ return (ascii[c] & _N);
}
int Curl_isalnum(int c)
{
if((c < 0) || (c >= 0x80))
return FALSE;
- return (Curl_ctype[c] & (_N|_U|_L));
+ return (ascii[c] & (_N|_U|_L));
}
int Curl_isxdigit(int c)
{
if((c < 0) || (c >= 0x80))
return FALSE;
- return (Curl_ctype[c] & (_N|_X));
+ return (ascii[c] & (_N|_X));
}
int Curl_isgraph(int c)
{
if((c < 0) || (c >= 0x80) || (c == ' '))
return FALSE;
- return (Curl_ctype[c] & (_N|_X|_U|_L|_P|_S));
+ return (ascii[c] & (_N|_X|_U|_L|_P|_S));
}
int Curl_isprint(int c)
{
if((c < 0) || (c >= 0x80))
return FALSE;
- return (Curl_ctype[c] & (_N|_X|_U|_L|_P|_S));
+ return (ascii[c] & (_N|_X|_U|_L|_P|_S));
}
int Curl_isalpha(int c)
{
if((c < 0) || (c >= 0x80))
return FALSE;
- return (Curl_ctype[c] & (_U|_L));
+ return (ascii[c] & (_U|_L));
}
int Curl_isupper(int c)
{
if((c < 0) || (c >= 0x80))
return FALSE;
- return (Curl_ctype[c] & (_U));
+ return (ascii[c] & (_U));
}
int Curl_islower(int c)
{
if((c < 0) || (c >= 0x80))
return FALSE;
- return (Curl_ctype[c] & (_L));
+ return (ascii[c] & (_L));
}