hidden norm cleanup
This commit is contained in:
@@ -6,7 +6,7 @@
|
||||
/* By: tmaze <marvin@42.fr> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2018/04/05 11:35:03 by tmaze #+# #+# */
|
||||
/* Updated: 2018/04/08 15:28:28 by tmaze ### ########.fr */
|
||||
/* Updated: 2019/03/16 15:52:25 by tmaze ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
@@ -25,7 +25,7 @@ char *ft_strnstr(const char *haystack, const char *needle, size_t len)
|
||||
while ((++i == 0 || tmp[i - 1]) && i < (int)len)
|
||||
if (tmp[i] == needle[0] && (j = 1))
|
||||
{
|
||||
while (tmp[i + j] == needle[j] && needle[j] && tmp[i + j]\
|
||||
while (tmp[i + j] == needle[j] && needle[j] && tmp[i + j]
|
||||
&& (i + j) < (int)len)
|
||||
j++;
|
||||
if (needle[j] == '\0')
|
||||
|
Reference in New Issue
Block a user