19 lines
1020 B
C
19 lines
1020 B
C
|
/* ************************************************************************** */
|
||
|
/* */
|
||
|
/* ::: :::::::: */
|
||
|
/* ft_dprintX.c :+: :+: :+: */
|
||
|
/* +:+ +:+ +:+ */
|
||
|
/* By: cchauvet <cchauvet@student.42angoulem +#+ +:+ +#+ */
|
||
|
/* +#+#+#+#+#+ +#+ */
|
||
|
/* Created: 2022/10/23 17:44:38 by cchauvet #+# #+# */
|
||
|
/* Updated: 2022/10/23 18:22:43 by cchauvet ### ########.fr */
|
||
|
/* */
|
||
|
/* ************************************************************************** */
|
||
|
|
||
|
#include "ft_printf.h"
|
||
|
|
||
|
int ft_dprint_upperx(int fd, unsigned int n)
|
||
|
{
|
||
|
return (ft_dprintul_base(fd, n, "0123456789ABCDEF"));
|
||
|
}
|