2 Copyright © 1995-2012, The AROS Development Team. All rights reserved.
8 /*****************************************************************************
20 Concatenates two strings.
23 dest - src is appended to this string. Make sure that there
24 is enough room for src.
25 src - This string is appended to dest
31 The routine makes no checks if dest is large enough.
36 strcpy (buffer, "Hello ");
37 strcat (buffer, "World.");
39 // Buffer now contains "Hello World."
47 ******************************************************************************/
54 while ((*dest
++ = *src
++));