blob: ea2abc8b6005da47d3992fcf5bba3109063e8fa4 [file] [log] [blame]
Elliott Hughescee03382017-06-23 12:17:18 -07001#ifndef HEADER_CURL_STRCASE_H
2#define HEADER_CURL_STRCASE_H
Kristian Monsen5ab50182010-05-14 18:53:44 +01003/***************************************************************************
4 * _ _ ____ _
5 * Project ___| | | | _ \| |
6 * / __| | | | |_) | |
7 * | (__| |_| | _ <| |___
8 * \___|\___/|_| \_\_____|
9 *
Elliott Hughescee03382017-06-23 12:17:18 -070010 * Copyright (C) 1998 - 2016, Daniel Stenberg, <daniel@haxx.se>, et al.
Kristian Monsen5ab50182010-05-14 18:53:44 +010011 *
12 * This software is licensed as described in the file COPYING, which
13 * you should have received as part of this distribution. The terms
Alex Deymo8f1a2142016-06-28 14:49:26 -070014 * are also available at https://curl.haxx.se/docs/copyright.html.
Kristian Monsen5ab50182010-05-14 18:53:44 +010015 *
16 * You may opt to use, copy, modify, merge, publish, distribute and/or sell
17 * copies of the Software, and permit persons to whom the Software is
18 * furnished to do so, under the terms of the COPYING file.
19 *
20 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
21 * KIND, either express or implied.
22 *
23 ***************************************************************************/
24
25#include <curl/curl.h>
26
27/*
Elliott Hughescee03382017-06-23 12:17:18 -070028 * Only "raw" case insensitive strings. This is meant to be locale independent
29 * and only compare strings we know are safe for this.
Kristian Monsen5ab50182010-05-14 18:53:44 +010030 *
Bertrand SIMONNETe6cd7382015-07-01 15:39:44 -070031 * The function is capable of comparing a-z case insensitively even for
32 * non-ascii.
Kristian Monsen5ab50182010-05-14 18:53:44 +010033 */
Elliott Hughescee03382017-06-23 12:17:18 -070034
35#define strcasecompare(a,b) Curl_strcasecompare(a,b)
36#define strncasecompare(a,b,c) Curl_strncasecompare(a,b,c)
37
38int Curl_strcasecompare(const char *first, const char *second);
39int Curl_safe_strcasecompare(const char *first, const char *second);
40int Curl_strncasecompare(const char *first, const char *second, size_t max);
Kristian Monsen5ab50182010-05-14 18:53:44 +010041
42char Curl_raw_toupper(char in);
43
44/* checkprefix() is a shorter version of the above, used when the first
45 argument is zero-byte terminated */
Elliott Hughescee03382017-06-23 12:17:18 -070046#define checkprefix(a,b) curl_strnequal(a,b,strlen(a))
Kristian Monsen5ab50182010-05-14 18:53:44 +010047
Kristian Monsen5ab50182010-05-14 18:53:44 +010048void Curl_strntoupper(char *dest, const char *src, size_t n);
Elliott Hughescee03382017-06-23 12:17:18 -070049char Curl_raw_toupper(char in);
Bertrand SIMONNETe6cd7382015-07-01 15:39:44 -070050
Elliott Hughescee03382017-06-23 12:17:18 -070051#endif /* HEADER_CURL_STRCASE_H */