ReactOS
0.4.16-dev-1946-g52006dd
Functions
strncat.c File Reference
#include <string.h>
Include dependency graph for strncat.c:
Go to the source code of this file.
Functions
char
*
__cdecl
strncat
(
char
*
front
,
const
char
*back,
size_t
count
)
Function Documentation
◆
strncat()
char
*
__cdecl
strncat
(
char
*
front
,
const
char
*
back
,
size_t
count
)
Definition at line
38
of file
strncat.c
.
43
{
44
char
*
start
=
front
;
45
46
while
(*
front
++)
47
;
48
front
--;
49
50
while
(
count
--)
51
if
((*
front
++ = *back++) == 0)
52
return
(
start
);
53
54
*
front
=
'\0'
;
55
return
(
start
);
56
}
start
GLuint start
Definition:
gl.h:1545
count
GLuint GLuint GLsizei count
Definition:
gl.h:1545
front
static struct address_cache * front
Definition:
rpcb_clnt.c:83
sdk
lib
ucrt
string
strncat.c
Generated on Thu Dec 4 2025 06:26:50 for ReactOS by
1.9.6