mirror of
https://github.com/guezoloic/libft.git
synced 2026-01-25 10:34:16 +00:00
feat(ft_strlcat.c): comply to 42 school norm
This commit is contained in:
@@ -23,6 +23,5 @@ size_t ft_strlcat(char *dst, const char *src, size_t dstsize)
|
|||||||
if (dlen + i < dstsize)
|
if (dlen + i < dstsize)
|
||||||
dst[dlen + i] = '\0';
|
dst[dlen + i] = '\0';
|
||||||
}
|
}
|
||||||
|
|
||||||
return (dlen + slen);
|
return (dlen + slen);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user