43 lines
1.2 KiB
C
43 lines
1.2 KiB
C
|
/* ************************************************************************** */
|
||
|
/* */
|
||
|
/* :::::::: */
|
||
|
/* ft_wrdlens.c :+: :+: :+: */
|
||
|
/* +:+ */
|
||
|
/* By: djonker <marvin@codam.nl> +#+ */
|
||
|
/* +#+ */
|
||
|
/* Created: 2020/11/22 12:00:13 by djonker #+# #+# */
|
||
|
/* Updated: 2023/02/07 00:41:46 by houtworm ### ########.fr */
|
||
|
/* */
|
||
|
/* ************************************************************************** */
|
||
|
|
||
|
#include "../libft.h"
|
||
|
|
||
|
int ft_wrdlens(char *s, char *c, int i)
|
||
|
{
|
||
|
int r;
|
||
|
int w;
|
||
|
int is;
|
||
|
|
||
|
r = 0;
|
||
|
w = 0;
|
||
|
is = 0;
|
||
|
while (s[is] != '\0')
|
||
|
{
|
||
|
while (ft_chrstr(s[is], c))
|
||
|
is++;
|
||
|
if (!(ft_chrstr(s[is], c)) && s[is] != '\0')
|
||
|
{
|
||
|
r = 0;
|
||
|
while (!(ft_chrstr(s[is], c)) && s[is] != '\0')
|
||
|
{
|
||
|
is++;
|
||
|
r++;
|
||
|
}
|
||
|
if (w == i)
|
||
|
return (r);
|
||
|
w++;
|
||
|
}
|
||
|
}
|
||
|
return (0);
|
||
|
}
|