#include <stddef.h>
Functions | |
size_t | ft_strlcpy (char *dst, char *src, size_t size) |
Copy of src into dst, up to size bytes. | |
size_t ft_strlcpy | ( | char * | dst, |
char * | src, | ||
size_t | size ) |
Copy of src into dst, up to size bytes.
dst | destination string |
src | source string |
size | size of the destination string |