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
mbsrev.c
Go to the documentation of this file.
1
#include <mbstring.h>
2
3
/*
4
* @implemented
5
*/
6
unsigned
char
*
_mbsrev
(
unsigned
char
*
s
)
7
{
8
unsigned
char
*
e
;
9
unsigned
char
a
;
10
unsigned
char
*e2;
11
e
=
s
;
12
while
(*
e
) {
13
if
(
_ismbblead
(*
e
) ) {
14
a
= *
e
;
15
e2 =
e
;
16
*e2 = *++
e
;
17
if
( *
e
== 0 )
18
break
;
19
*
e
=
a
;
20
}
21
e
++;
22
}
23
while
(
s
<
e
) {
24
a
=*
s
;
25
*
s
=*
e
;
26
*
e
=
a
;
27
s
++;
28
e
--;
29
}
30
31
32
return
s
;
33
}
s
GLdouble s
Definition:
gl.h:2039
a
GLboolean GLboolean GLboolean GLboolean a
Definition:
glext.h:6204
e
#define e
Definition:
ke_i.h:82
a
#define a
Definition:
ke_i.h:78
_mbsrev
unsigned char * _mbsrev(unsigned char *s)
Definition:
mbsrev.c:6
_ismbblead
int __cdecl _ismbblead(unsigned int)
Definition:
ismblead.c:20
sdk
lib
crt
mbstring
mbsrev.c
Generated on Thu Nov 28 2024 06:13:23 for ReactOS by
1.9.6