From 9a915b797a80c2a776027b1fcc37f1e7b8ab1b24 Mon Sep 17 00:00:00 2001 From: JozanLeClerc Date: Tue, 29 Sep 2020 19:50:20 +0200 Subject: Update --- libft/src/ft_strnstr.c | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'libft/src/ft_strnstr.c') diff --git a/libft/src/ft_strnstr.c b/libft/src/ft_strnstr.c index 58e1d0e..615320e 100644 --- a/libft/src/ft_strnstr.c +++ b/libft/src/ft_strnstr.c @@ -14,8 +14,7 @@ #include #include -char - *ft_strnstr(const char *haystack, const char *needle, size_t len) +char *ft_strnstr(const char *haystack, const char *needle, size_t len) { unsigned long i; unsigned long j; @@ -25,14 +24,14 @@ char hay_ptr = (char*)haystack; nee_ptr = (char*)needle; i = 0; - if (!nee_ptr[0]) + if (nee_ptr[0] == '\0') return (hay_ptr); while (hay_ptr[i] && i < len) { j = 0; while (nee_ptr[j] == hay_ptr[i + j] && (i + j) < len) { - if (!nee_ptr[j + 1]) + if (nee_ptr[j + 1] == '\0') return (hay_ptr + i); j++; } -- cgit v1.2.3