/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* utils.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: achubuko +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2023/12/02 21:56:30 by achubuko #+# #+# */ /* Updated: 2023/12/02 22:41:05 by achubuko ### ########.fr */ /* */ /* ************************************************************************** */ #include "ft_utils.h" uint32_t ft_atoui32(char *str) { return (*str - '0'); }