libft
Loading...
Searching...
No Matches
ft_strlcat.c File Reference
#include "libft.h"

Go to the source code of this file.

Functions

size_t ft_strlcat (char *dst, const char *src, size_t dstsize)
 Adds string to end of a string.
 

Function Documentation

◆ ft_strlcat()

size_t ft_strlcat ( char *  dst,
const char *  src,
size_t  dstsize 
)

Adds string to end of a string.

Adds source to end of the destination limited by the destination size.

Parameters
dstString
srcString
dstsizeSize of the destination
Returns
size_t Sum of the lengths of source and destination

Definition at line 15 of file ft_strlcat.c.