repo.or.cz
/
syslinux.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
hdt: Removing builting sleep support in say
[syslinux.git]
/
com32
/
lib
/
strncat.c
blob
71cdb35f3a270b8430b50a9e9bbbe8d98867648e
1
/*
2
* strncat.c
3
*/
4
5
#include <string.h>
6
7
char
*
strncat
(
char
*
dst
,
const char
*
src
,
size_t
n
)
8
{
9
strncpy
(
strchr
(
dst
,
'\0'
),
src
,
n
);
10
return
dst
;
11
}