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
Allow specifying * instead of any of the MENU COLOR fields.
[syslinux.git]
/
com32
/
lib
/
strncpy.c
blob
a8fe45fcbb588bccb28c9fadaf821adef5e0df10
1
/*
2
* strncpy.c
3
*
4
* strncpy()
5
*/
6
7
#include <string.h>
8
9
char
*
strncpy
(
char
*
dst
,
const char
*
src
,
size_t
n
)
10
{
11
char
*
q
=
dst
;
12
const char
*
p
=
src
;
13
char
ch
;
14
15
while
(
n
-- ) {
16
*
q
++ =
ch
= *
p
++;
17
if
( !
ch
)
18
break
;
19
}
20
21
return
dst
;
22
}