fix: update function name

This commit is contained in:
2025-09-30 19:01:09 +02:00
parent 421a91d4de
commit afc50a3718
2 changed files with 23 additions and 23 deletions

View File

@@ -1,6 +1,6 @@
#include "libft.h" #include "libft.h"
size_t strlen(const char *s) size_t ft_strlen(const char *s)
{ {
size_t i; size_t i;

View File

@@ -42,9 +42,9 @@ int ft_isascii(int c);
int ft_isprint(int c); int ft_isprint(int c);
/* /*
The strlen() function computes the The ft_strlen() function computes
length of the string s. the length of the string s.
*/ */
size_t strlen(const char *s); size_t ft_strlen(const char *s);
#endif #endif