/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_check_ext.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: rbousset +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2020/02/17 15:33:28 by rbousset #+# #+# */ /* Updated: 2020/02/17 15:33:29 by rbousset ### ########lyon.fr */ /* */ /* ************************************************************************** */ #include #include int8_t ft_check_ext(const char *filep, const char *ext) { const uint8_t extlen = ft_strlen(ext); if (ft_strncmp(filep + (ft_strlen(filep) - extlen), ext, extlen)) return (-1); else return (0); }