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 6.02~pre8+dfsg.
[syslinux-debian/hramrach.git]
/
com32
/
lib
/
strcat.c
blob
91bdb32b1cbb6af6d3f5bcbd1df62f8346389801
1
/*
2
* strcat.c
3
*/
4
5
#include <string.h>
6
7
char
*
strcat
(
char
*
dst
,
const char
*
src
)
8
{
9
strcpy
(
strchr
(
dst
,
'\0'
),
src
);
10
return
dst
;
11
}