summaryrefslogtreecommitdiff
path: root/lib/strcase.h
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2020-01-23 09:01:25 +0100
committerDaniel Stenberg <daniel@haxx.se>2020-01-24 10:29:06 +0100
commitea284778f56f2ff3c07b72c584df71d19a043591 (patch)
tree7b0bba27329713bb4f166368ca9491da8ca5bed2 /lib/strcase.h
parentd265a7d36bdcc1a5e6223267249f09fce6cd2f11 (diff)
downloadcurl-ea284778f56f2ff3c07b72c584df71d19a043591.tar.gz
strcase: turn Curl_raw_tolower into static
Only ever used from within this file.
Diffstat (limited to 'lib/strcase.h')
-rw-r--r--lib/strcase.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/strcase.h b/lib/strcase.h
index baa768b2b..cd4c4191a 100644
--- a/lib/strcase.h
+++ b/lib/strcase.h
@@ -7,7 +7,7 @@
* | (__| |_| | _ <| |___
* \___|\___/|_| \_\_____|
*
- * Copyright (C) 1998 - 2019, Daniel Stenberg, <daniel@haxx.se>, et al.
+ * Copyright (C) 1998 - 2020, Daniel Stenberg, <daniel@haxx.se>, et al.
*
* This software is licensed as described in the file COPYING, which
* you should have received as part of this distribution. The terms
@@ -40,7 +40,6 @@ int Curl_safe_strcasecompare(const char *first, const char *second);
int Curl_strncasecompare(const char *first, const char *second, size_t max);
char Curl_raw_toupper(char in);
-char Curl_raw_tolower(char in);
/* checkprefix() is a shorter version of the above, used when the first
argument is zero-byte terminated */