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,13 +6,13 @@
/* By: kcolin <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/10/14 15:12:02 by kcolin #+# #+# */
/* Updated: 2024/10/15 10:17:25 by kcolin ### ########.fr */
/* Updated: 2024/10/16 15:17:50 by kcolin ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
t_size ft_strlen(const char *s)
size_t ft_strlen(const char *s)
{
int i;