#include #include int main(void) { char s[10] = "aaaa"; printf("%d\n", ft_strlcat(s, "xyz", 16)); printf("%s\n", s); return (0); }