Chameleon

Chameleon Svn Source Tree

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

Source at commit 1292 created 12 years 8 months ago.
By meklort, Add additional functions to klibc. Remove duplicates from libsa
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: 1292