ReactOS
0.4.16-dev-300-g2aadf2e
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
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
_
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
mbspbrk.c
Go to the documentation of this file.
1
#include <stdlib.h>
2
#include <mbstring.h>
3
4
int
isleadbyte
(
int
byte
);
5
6
/*
7
* not correct
8
*
9
* @implemented
10
*/
11
unsigned
char
*
_mbspbrk
(
const
unsigned
char
*
s1
,
const
unsigned
char
*
s2
)
12
{
13
const
unsigned
char
*
p
;
14
15
while
(*
s1
)
16
{
17
for
(
p
=
s2
; *
p
;
p
+= (
isleadbyte
(*
p
) ? 2 : 1))
18
{
19
if
(*
p
== *
s1
)
20
if
(!
isleadbyte
(*
p
) || (*(
p
+1) == *(
s1
+ 1)))
21
return
(
unsigned
char
*)
s1
;
22
}
23
s1
+= (
isleadbyte
(*
s1
) ? 2 : 1);
24
}
25
return
NULL
;
26
}
NULL
#define NULL
Definition:
types.h:112
p
GLfloat GLfloat p
Definition:
glext.h:8902
isleadbyte
#define isleadbyte(_c)
Definition:
wchar.h:598
_mbspbrk
unsigned char * _mbspbrk(const unsigned char *s1, const unsigned char *s2)
Definition:
mbspbrk.c:11
s1
struct S1 s1
s2
struct S2 s2
sdk
lib
crt
mbstring
mbspbrk.c
Generated on Thu Nov 28 2024 06:13:23 for ReactOS by
1.9.6