-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathft_putpointer.c
More file actions
19 lines (17 loc) · 1017 Bytes
/
ft_putpointer.c
File metadata and controls
19 lines (17 loc) · 1017 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_putpointer.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: mboujama <mboujama@student.1337.ma> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/12/24 11:56:17 by mboujama #+# #+# */
/* Updated: 2023/12/26 10:32:55 by mboujama ### ########.fr */
/* */
/* ************************************************************************** */
#include "ft_printf.h"
void ft_putpointer(unsigned long nb, int *len)
{
ft_putstr("0x", len);
ft_puthexa(nb, 'x', len);
}