ReactOS
0.4.16-dev-1025-gd3456f5
Toggle main menu visibility
Main Page
Related Pages
Modules
Namespaces
Namespace List
Namespace Members
All
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
w
x
Functions
_
a
b
c
d
e
f
g
h
i
l
m
o
p
r
s
t
u
v
w
Variables
_
c
d
e
f
g
h
i
l
m
n
o
p
s
t
u
x
Typedefs
_
a
b
c
d
e
f
g
h
i
l
m
o
p
r
s
t
u
v
w
x
Enumerations
_
a
b
c
d
f
i
l
m
o
p
s
t
w
x
Enumerator
a
b
c
d
e
f
g
h
i
m
n
o
p
r
s
t
u
v
w
x
Classes
Class List
Class Index
Class Hierarchy
Class Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Enumerations
_
a
b
c
d
e
f
h
i
k
l
m
n
o
p
r
s
t
u
v
w
z
Enumerator
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Properties
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Related Functions
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
q
r
s
t
v
x
Files
File List
File Members
All
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Functions
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Variables
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Enumerations
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Enumerator
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Macros
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Examples
streql.c
Go to the documentation of this file.
1
/* @(#)streql.c 1.10 09/06/07 Copyright 1985, 1995-2009 J. Schilling */
2
/*
3
* Check if two strings are equal
4
*
5
* Copyright (c) 1985, 1995-2009 J. Schilling
6
*/
7
/*
8
* The contents of this file are subject to the terms of the
9
* Common Development and Distribution License, Version 1.0 only
10
* (the "License"). You may not use this file except in compliance
11
* with the License.
12
*
13
* See the file CDDL.Schily.txt in this distribution for details.
14
*
15
* When distributing Covered Code, include this CDDL HEADER in each
16
* file and include the License file CDDL.Schily.txt from this distribution.
17
*/
18
19
#include <
schily/standard.h
>
20
#include <
schily/schily.h
>
21
22
EXPORT
int
23
streql
(
a
,
b
)
24
const
char
*
a
;
25
const
char
*
b
;
26
{
27
register
const
char
*
s1
=
a
;
28
register
const
char
*
s2
=
b
;
29
30
if
(
s1
==
NULL
||
s2
==
NULL
)
31
return
(
FALSE
);
32
33
if
(
s1
==
s2
)
34
return
(
TRUE
);
35
36
while
(*
s1
== *
s2
++)
37
if
(*
s1
++ ==
'\0'
)
38
return
(
TRUE
);
39
40
return
(
FALSE
);
41
}
NULL
#define NULL
Definition:
types.h:112
TRUE
#define TRUE
Definition:
types.h:120
FALSE
#define FALSE
Definition:
types.h:117
b
GLboolean GLboolean GLboolean b
Definition:
glext.h:6204
a
GLboolean GLboolean GLboolean GLboolean a
Definition:
glext.h:6204
a
#define a
Definition:
ke_i.h:78
b
#define b
Definition:
ke_i.h:79
s1
struct S1 s1
schily.h
s2
PCWSTR s2
Definition:
shell32_main.h:38
standard.h
streql
EXPORT int streql(char *a, const char *b) const
Definition:
streql.c:23
EXPORT
Definition:
spec2def.c:21
sdk
tools
mkisofs
schilytools
libschily
streql.c
Generated on Tue Apr 22 2025 06:16:26 for ReactOS by
1.9.6