42-archive/libft/srcs/str/ft_strcspn.c
2017-03-31 18:21:20 +02:00

14 lines
191 B
C

#include "libft.h"
size_t ft_strcspn(char *s, const char *delim)
{
char *str;
str = s;
while(*str)
if(ft_strchr(delim,*str))
return (str - s);
else
str++;
return (str - s);
}