removed path from non existant commands

This commit is contained in:
mdev9
2024-03-21 16:42:41 +01:00
parent 02cb28b60a
commit 4011934434
5 changed files with 21 additions and 9 deletions

View File

@ -3,10 +3,10 @@
/* ::: :::::::: */
/* ft_strchr.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: tomoron <marvin@42.fr> +#+ +:+ +#+ */
/* By: marde-vr <marde-vr@42angouleme.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/10/30 13:35:44 by tomoron #+# #+# */
/* Updated: 2023/11/02 11:08:17 by tomoron ### ########.fr */
/* Updated: 2024/03/21 16:41:59 by marde-vr ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
@ -17,6 +17,8 @@ char *ft_strchr(const char *s, int c)
char *res;
i = 0;
if (!s)
return (NULL);
res = (char *)s;
while (res[i])
{