|
libft
|
#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. | |
| 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.
| dst | String |
| src | String |
| dstsize | Size of the destination |
Definition at line 15 of file ft_strlcat.c.