(C) 1998 AROS - The Amiga Research OS


NAME
#include <string.h>

char * strcat ()

SYNOPSIS
char * dest
const char * src

FUNCTION
Concatenates two strings.

INPUTS
dest
src is appended to this string. Make sure that there is enough room for src.
src
This string is appended to dest

RESULT
dest.

EXAMPLE
char buffer[64];

strcpy (buffer, "Hello ");
strcat (buffer, "World.");

// Buffer now contains "Hello World."
SEE ALSO

NOTES
The routine makes no checks if dest is large enough.

BUGS

INTERNALS

HISTORY
20.10.1998 hkiel
Amiga Research OS
11.12.1996 aros
New functions