Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/pkg
Path: blob/main/external/curl/tests/libtest/lib1301.c
2066 views
1
/***************************************************************************
2
* _ _ ____ _
3
* Project ___| | | | _ \| |
4
* / __| | | | |_) | |
5
* | (__| |_| | _ <| |___
6
* \___|\___/|_| \_\_____|
7
*
8
* Copyright (C) Daniel Stenberg, <[email protected]>, et al.
9
*
10
* This software is licensed as described in the file COPYING, which
11
* you should have received as part of this distribution. The terms
12
* are also available at https://curl.se/docs/copyright.html.
13
*
14
* You may opt to use, copy, modify, merge, publish, distribute and/or sell
15
* copies of the Software, and permit persons to whom the Software is
16
* furnished to do so, under the terms of the COPYING file.
17
*
18
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
19
* KIND, either express or implied.
20
*
21
* SPDX-License-Identifier: curl
22
*
23
***************************************************************************/
24
#include "curlcheck.h"
25
26
CURLcode test(char *URL)
27
{
28
int rc;
29
(void)URL;
30
31
rc = curl_strequal("iii", "III");
32
fail_unless(rc != 0, "return code should be non-zero");
33
34
rc = curl_strequal("iiia", "III");
35
fail_unless(rc == 0, "return code should be zero");
36
37
rc = curl_strequal("iii", "IIIa");
38
fail_unless(rc == 0, "return code should be zero");
39
40
rc = curl_strequal("iiiA", "IIIa");
41
fail_unless(rc != 0, "return code should be non-zero");
42
43
rc = curl_strnequal("iii", "III", 3);
44
fail_unless(rc != 0, "return code should be non-zero");
45
46
rc = curl_strnequal("iiiABC", "IIIcba", 3);
47
fail_unless(rc != 0, "return code should be non-zero");
48
49
rc = curl_strnequal("ii", "II", 3);
50
fail_unless(rc != 0, "return code should be non-zero");
51
52
return CURLE_OK;
53
}
54
55