STRCAT

Section: C Library Functions (3)
Index Return to Main Contents

BSD mandoc
 

NAME

strcat - concatenate strings  

SYNOPSIS

Fd #include <string.h> Ft char * Fn strcat char *s const char *append Ft char * Fn strncat char *s const char *append size_t count  

DESCRIPTION

The Fn strcat and Fn strncat functions append a copy of the null-terminated string Fa append to the end of the null-terminated string Fa s , then add a terminating `\0' The string Fa s must have sufficient space to hold the result.

The Fn strncat function appends not more than Fa count characters.  

RETURN VALUES

The Fn strcat and Fn strncat functions return the pointer Fa s .  

SEE ALSO

bcopy(3), memccpy(3), memcpy(3), memmove(3), strcpy(3)  

STANDARDS

The Fn strcat and Fn strncat functions conform to St -ansiC .


 

Index

NAME
SYNOPSIS
DESCRIPTION
RETURN VALUES
SEE ALSO
STANDARDS

This document was created by man2html, using the manual pages.
Time: 21:44:08 GMT, August 05, 2022