mirror of
https://github.com/guezoloic/libft.git
synced 2026-01-25 09:34:16 +00:00
fix: update function name
This commit is contained in:
@@ -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;
|
||||||
|
|
||||||
|
|||||||
6
libft.h
6
libft.h
@@ -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
|
||||||
|
|||||||
Reference in New Issue
Block a user