source:
bootcd/isolinux/syslinux-6.03/com32/lib/strcat.c
@
dd1be7c
Last change on this file since dd1be7c was e16e8f2, checked in by , 3 years ago | |
---|---|
|
|
File size: 138 bytes |
Rev | Line | |
---|---|---|
[e16e8f2] | 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 | } |
Note: See TracBrowser
for help on using the repository browser.