Libft(9) - strlcpy
Libft(9) - strlcpy STRLCPY(3) BSD Library Functions Manual STRLCPY(3) NAME strlcpy, strlcat -- size-bounded string copying and concatenation LIBRARY Standard C Library (libc, -lc) SYNOPSIS #include size_t strlcpy(char * restrict dst, const char * restrict src, size_t dstsize); size_t strlcat(char * restrict dst, const char * restrict src, size_t dstsize); DESCRIPTION The strlcpy() and strlcat() ..
2021.06.26