1. NAME

strcat - Append one NUL-terminated string to another

2. SYNOPSIS

char * strcat(char *  dest , const char *  src );

3. ARGUMENTS

dest
    The string to be appended to

src
    The string to append to it

4. COPYRIGHT