42_minishell/utils/ft_strnchr.c

16 lines
167 B
C
Raw Normal View History

2023-02-01 11:28:38 -05:00
#include "utils.h"
ssize_t ft_strnchr(char *str, char c)
{
size_t i;
i = 0;
while (str[i] != '\0')
{
if (str[i] == c)
return (i);
i++;
}
return (-1);
}