source:
bootcd/isolinux/syslinux-6.03/com32/lib/strcat.c
Last change on this file was e16e8f2, checked in by , 3 years ago | |
---|---|
|
|
File size: 138 bytes |
Line | |
---|---|
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.