ReactOS
0.4.16-dev-942-g91fadeb
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
memccpy.c
Go to the documentation of this file.
1
/***
2
*memccpy.c - copy bytes until a character is found
3
*
4
* Copyright (c) Microsoft Corporation. All rights reserved.
5
*
6
*Purpose:
7
* defines _memccpy() - copies bytes until a specifed character
8
* is found, or a maximum number of characters have been copied.
9
*
10
*******************************************************************************/
11
12
#include <string.h>
13
14
/***
15
*char *_memccpy(dest, src, c, count) - copy bytes until character found
16
*
17
*Purpose:
18
* Copies bytes from src to dest until count bytes have been
19
* copied, or up to and including the character c, whichever
20
* comes first.
21
*
22
*Entry:
23
* void *dest - pointer to memory to receive copy
24
* void *src - source of bytes
25
* int c - character to stop copy at
26
* size_t count - max number of bytes to copy
27
*
28
*Exit:
29
* returns pointer to byte immediately after c in dest
30
* returns NULL if c was never found
31
*
32
*Exceptions:
33
*
34
*******************************************************************************/
35
36
void
*
__cdecl
_memccpy
(
37
void
*
dest
,
38
const
void
*
src
,
39
int
c
,
40
size_t
count
41
)
42
{
43
while
(
count
&& (*((
char
*)(
dest
= (
char
*)
dest
+ 1) - 1) =
44
*((
char
*)(
src
= (
char
*)
src
+ 1) - 1)) != (
char
)
c
)
45
count
--;
46
47
return
(
count
?
dest
:
NULL
);
48
}
__cdecl
#define __cdecl
Definition:
accygwin.h:79
_memccpy
void *__cdecl _memccpy(void *to, const void *from, int c, size_t count)
Definition:
memccpy.c:7
NULL
#define NULL
Definition:
types.h:112
count
GLuint GLuint GLsizei count
Definition:
gl.h:1545
src
GLenum src
Definition:
glext.h:6340
c
const GLubyte * c
Definition:
glext.h:8905
dest
static char * dest
Definition:
rtl.c:135
sdk
lib
ucrt
string
memccpy.c
Generated on Thu Apr 3 2025 06:14:59 for ReactOS by
1.9.6