adding labs

This commit is contained in:
hugogogo
2026-05-07 11:46:03 +02:00
parent 36379f56b0
commit 413e149003
7 changed files with 31 additions and 14 deletions

View File

@@ -11,12 +11,12 @@
/* ************************************************************************** */
/*
** return length of of string
** return length of of string, excluding the terminal '\0'
*/
#include "libft.h"
size_t ft_strlen(const char *str)
size_t ft_strlen(const char *str)
{
size_t i;