Chameleon

Chameleon Svn Source Tree

Root/branches/xZenu/src/modules/klibc/strcat.c

Source at commit 1297 created 12 years 9 months ago.
By meklort, Removed libsaioh from all modules. Removed i386 includes from modules.
1/*
2 * strcat.c
3 */
4
5#include <string.h>
6
7char *strcat(char *dst, const char *src)
8{
9strcpy(strchr(dst, '\0'), src);
10return dst;
11}
12

Archive Download this file

Revision: 1297