Sign in
cobalt
/
cobalt.git
/
25902c6cb1ab9cfd8ae2ee6b0fb52953f73deda5
/
.
/
third_party
/
musl
/
src
/
string
/
strncat.c
blob: 01ca2a2317c6f29ecc1289e94b76b72c69698ea8 [
file
]
#include
<string.h>
char
*
strncat
(
char
*
restrict d
,
const
char
*
restrict s
,
size_t
n
)
{
char
*
a
=
d
;
d
+=
strlen
(
d
);
while
(
n
&&
*
s
)
n
--,
*
d
++
=
*
s
++;
*
d
++
=
0
;
return
a
;
}