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