]> pd.if.org Git - pdclib/blob - functions/string/strcat.c
a4eab143b3352907df5f21e6877d9b1dcc083dee
[pdclib] / functions / string / strcat.c
1 /* $Id$ */
2
3 /* Release $Name$ */
4
5 /* strcat( char *, const char * )
6
7    This file is part of the Public Domain C Library (PDCLib).
8    Permission is granted to use, modify, and / or redistribute at will.
9 */
10
11 #include <_PDCLIB_aux.h>
12
13 char * strcat( char * _PDCLIB_restrict s1, const char * _PDCLIB_restrict s2 )
14 {
15     char * rc = s1;
16     if ( *s1 )
17     {
18         while ( *++s1 );
19     }
20     while ( (*s1++ = *s2++) );
21     return rc;
22 }
23
24 #warning Test driver missing.
25
26 #ifdef TEST
27 int main()
28 {
29     return 0;
30 }
31 #endif