chore: use correct size_t instead of t_size

This commit is contained in:
Khaïs COLIN 2024-10-16 15:20:28 +02:00
parent aad909fe23
commit b81ad331b5
10 changed files with 40 additions and 40 deletions

View file

@ -6,17 +6,17 @@
/* By: kcolin <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/10/15 16:00:39 by kcolin #+# #+# */
/* Updated: 2024/10/15 16:17:34 by kcolin ### ########.fr */
/* Updated: 2024/10/16 15:19:17 by kcolin ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
t_size ft_strlcat(char *dst, const char *src, t_size size)
size_t ft_strlcat(char *dst, const char *src, size_t size)
{
t_size dst_len;
t_size src_len;
t_size i;
size_t dst_len;
size_t src_len;
size_t i;
dst_len = 0;
while (dst[dst_len] != '\0')