amath
1.8.5
Simple command line calculator
strcmp.c
Go to the documentation of this file.
1
/*-
2
* Copyright (c) 2014-2018 Carsten Sonne Larsen <cs@innolan.net>
3
* Copyright (c) 1990, 1993 The Regents of the University of California.
4
* All rights reserved.
5
*
6
* This code is derived from software contributed to Berkeley by
7
* Chris Torek.
8
*
9
* Redistribution and use in source and binary forms, with or without
10
* modification, are permitted provided that the following conditions
11
* are met:
12
* 1. Redistributions of source code must retain the above copyright
13
* notice, this list of conditions and the following disclaimer.
14
* 2. Redistributions in binary form must reproduce the above copyright
15
* notice, this list of conditions and the following disclaimer in the
16
* documentation and/or other materials provided with the distribution.
17
*
18
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
19
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
20
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
21
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
22
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
23
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
27
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28
*
29
* Project homepage:
30
* https://amath.innolan.net
31
*
32
*/
33
34
/**
35
* @file strcmp.c
36
* @brief Compare two null terminated strings to each other.
37
*
38
* Code originate from FreeBSD base, revision 229286.
39
*
40
* The original source code can be obtained from:
41
* https://svnweb.freebsd.org/base/head/lib/libc/string/strcmp.c?revision=229286
42
*
43
*/
44
45
#
include
"amathc.h"
46
47
/**
48
* @brief Compare two null terminated strings to each other.
49
*/
50
bool
StrIsEqual
(
const
char
* s1,
const
char
* s2)
51
{
52
int
r;
53
54
while
(*s1 == *s2++)
55
if
(*s1++ ==
'\0'
)
56
return
true
;
57
58
r = (*(
const
unsigned
char
*)s1 - *(
const
unsigned
char
*)(s2 - 1));
59
60
return
r == 0;
61
}
StrIsEqual
bool StrIsEqual(const char *s1, const char *s2)
Compare two null terminated strings to each other.
Definition:
strcmp.c:50
src
clib
strcmp.c
Generated by
1.8.13