/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_strslen.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: erey-bet +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2022/07/26 14:25:30 by erey-bet #+# #+# */ /* Updated: 2023/01/12 16:51:53 by erey-bet ### ########.fr */ /* */ /* ************************************************************************** */ #include "libft.h" int ft_strslen(char **src) { int i; i = 0; while (src[i]) i++; return (i); }