ReactOS
0.4.16-dev-927-g467dec4
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
strset.c
Go to the documentation of this file.
1
/***
2
*strset.c - sets all characters of string to given character
3
*
4
* Copyright (c) Microsoft Corporation. All rights reserved.
5
*
6
*Purpose:
7
* defines _strset() - sets all of the characters in a string (except
8
* the '\0') equal to a given character.
9
*
10
*******************************************************************************/
11
12
#include <string.h>
13
14
#if defined _M_X64 || defined _M_ARM || defined _M_ARM64 || _M_HYBRID
15
#pragma function(_strset)
16
#endif
17
18
/***
19
*char *_strset(string, val) - sets all of string to val
20
*
21
*Purpose:
22
* Sets all of characters in string (except the terminating '/0'
23
* character) equal to val.
24
*
25
*
26
*Entry:
27
* char *string - string to modify
28
* char val - value to fill string with
29
*
30
*Exit:
31
* returns string -- now filled with val's
32
*
33
*Uses:
34
*
35
*Exceptions:
36
*
37
*******************************************************************************/
38
39
char
*
__cdecl
_strset
(
40
char
*
string
,
41
int
val
42
)
43
{
44
char
*
start
=
string
;
45
46
while
(*
string
)
47
*
string
++ = (
char
)
val
;
48
49
return
(
start
);
50
}
__cdecl
#define __cdecl
Definition:
accygwin.h:79
char
unsigned char
Definition:
typeof.h:29
start
GLuint start
Definition:
gl.h:1545
val
GLuint GLfloat * val
Definition:
glext.h:7180
string
char string[160]
Definition:
util.h:11
_strset
_strset
Definition:
string.h:424
sdk
lib
ucrt
string
strset.c
Generated on Sun Mar 30 2025 06:14:53 for ReactOS by
1.9.6