-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathft_printf.h
More file actions
26 lines (24 loc) · 1.27 KB
/
Copy pathft_printf.h
File metadata and controls
26 lines (24 loc) · 1.27 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_printf.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: admansar <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/10/26 16:39:40 by admansar #+# #+# */
/* Updated: 2022/10/28 00:02:57 by admansar ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef FT_PRINTF_H
# define FT_PRINTF_H
# include <unistd.h>
# include <stdarg.h>
int ft_printf(const char *fprint, ...);
void ft_putchar(char c, int *i);
void ft_putstr(char *c, int *i);
void ft_putnbr(int n, int *i);
void ft_putnbr_ui(unsigned int n, int *i);
void ft_putnbr_hexa(unsigned int nb, int *i);
void ft_putadres(unsigned long n, int *i);
void ft_putnbr_hexa_up(unsigned int nb, int *i);
#endif