Files
Printf42/ft_puthex_pf.c
Hugo Manuel Tamayo Olea 17681f5124 Version Final
2026-01-11 17:57:21 +01:00

23 lines
1.0 KiB
C

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_puthex_pf.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: htamayo- <htamayo-@student.42malaga.c +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2025/12/20 18:42:38 by htamayo- #+# #+# */
/* Updated: 2025/12/20 18:44:47 by htamayo- ### ########.fr */
/* */
/* ************************************************************************** */
#include "ft_printf.h"
void ft_puthex_pf(unsigned int num, size_t *counter, char *base)
{
char *str;
str = ft_aux_pf(num, base);
ft_putstr_pf(str, counter);
free(str);
}