summaryrefslogtreecommitdiffstats
path: root/lib/strcase.h
diff options
context:
space:
mode:
authorCurl Upstream <curl-library@lists.haxx.se>2022-10-26 06:12:46 (GMT)
committerBrad King <brad.king@kitware.com>2022-10-31 20:11:01 (GMT)
commitec122fff08ab9a8e56fb90126ecedb99c759011b (patch)
tree372b5f86f3fad307de965e11187e51ef0860960b /lib/strcase.h
parent9d8f81f4f8ac4a234ced9c446958fdfcaed4faa3 (diff)
downloadCMake-ec122fff08ab9a8e56fb90126ecedb99c759011b.zip
CMake-ec122fff08ab9a8e56fb90126ecedb99c759011b.tar.gz
CMake-ec122fff08ab9a8e56fb90126ecedb99c759011b.tar.bz2
curl 2022-10-26 (cd95ee9f)
Code extracted from: https://github.com/curl/curl.git at commit cd95ee9f771361acf241629d2fe5507e308082a2 (curl-7_86_0).
Diffstat (limited to 'lib/strcase.h')
-rw-r--r--lib/strcase.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/strcase.h b/lib/strcase.h
index 2635f51..65a5753 100644
--- a/lib/strcase.h
+++ b/lib/strcase.h
@@ -20,6 +20,8 @@
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
* KIND, either express or implied.
*
+ * SPDX-License-Identifier: curl
+ *
***************************************************************************/
#include <curl/curl.h>
@@ -41,6 +43,7 @@ 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 the string literal */
@@ -50,5 +53,6 @@ void Curl_strntoupper(char *dest, const char *src, size_t n);
void Curl_strntolower(char *dest, const char *src, size_t n);
bool Curl_safecmp(char *a, char *b);
+int Curl_timestrcmp(const char *first, const char *second);
#endif /* HEADER_CURL_STRCASE_H */