tgrekov-pipex
HIVE pipex May 2024
|
Definition in file ft_strlcat.c.
#include "libft.h"
Go to the source code of this file.
Functions | |
size_t | ft_strlcat (char *dst, const char *src, size_t dstsize) |
Appends at most dstsize - ft_strlen(dst) - 1 characters of string src to the end of string dst . | |
size_t ft_strlcat | ( | char * | dst, |
const char * | src, | ||
size_t | dstsize | ||
) |
Appends at most dstsize - ft_strlen(dst) - 1
characters of string src
to the end of string dst
.
Null-terminates dst
if dstsize != 0
and ft_strlen(dst) < dstsize
[in,out] | dst | Null-terminated string to append to |
[in] | src | Null terminated string to append from |
[in] | dstsize | Maximum size of the destination after appending |
size_t | Length of the string the function attempted to create |
Definition at line 34 of file ft_strlcat.c.
References ft_strlen().