aboutsummaryrefslogtreecommitdiff
path: root/lib/rawstr.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/rawstr.h')
-rw-r--r--lib/rawstr.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/rawstr.h b/lib/rawstr.h
index 58eec7727..46fb60929 100644
--- a/lib/rawstr.h
+++ b/lib/rawstr.h
@@ -35,6 +35,8 @@
int Curl_raw_equal(const char *first, const char *second);
int Curl_raw_nequal(const char *first, const char *second, size_t max);
+char Curl_raw_toupper(char in);
+
/* checkprefix() is a shorter version of the above, used when the first
argument is zero-byte terminated */
#define checkprefix(a,b) Curl_raw_nequal(a,b,strlen(a))