-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_printf.h
28 lines (24 loc) · 1.22 KB
/
ft_printf.h
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
27
28
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_printf.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: ael-haib <[email protected] +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/03/25 03:13:47 by ael-haib #+# #+# */
/* Updated: 2024/03/29 11:20:21 by ael-haib ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef FT_PRINTF_H
# define FT_PRINTF_H
# include <stdarg.h>
# include <unistd.h>
int ft_printf(const char *str, ...);
int ft_putstr(char *s);
int ft_putchar(int c);
int ft_putnbr(int i);
int ft_put_unsigned_nbr(unsigned int i);
int ft_put_hexa_base(unsigned int num, char formatter);
int ft_put_add(void *ptr);
int ft_checker(char c, va_list ptr);
#endif