/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_atof.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: charles +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2020/05/10 21:03:50 by charles #+# #+# */ /* Updated: 2020/05/10 21:04:54 by charles ### ########.fr */ /* */ /* ************************************************************************** */ #include "libft_str.h" float ft_atof(const char *nptr) { return (ft_strtof(nptr, NULL)); }