repo.or.cz
/
syslinux-debian
/
hramrach.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Adding upstream version 3.50~pre5.
[syslinux-debian/hramrach.git]
/
com32
/
lib
/
strncat.c
blob
99d957594cfd07507d800edd867d06dc7625a285
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
}