/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_dprintx.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: cchauvet <cchauvet@student.42angoulem +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2022/10/23 17:44:38 by cchauvet #+# #+# */ /* Updated: 2022/10/23 18:04:56 by cchauvet ### ########.fr */ /* */ /* ************************************************************************** */ #include "ft_printf.h" int ft_dprintx(int fd, unsigned int n) { return (ft_dprintul_base(fd, n, "0123456789abcdef")); }