-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_printf.h
28 lines (24 loc) · 1.31 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: waraissi <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/11/09 18:43:39 by waraissi #+# #+# */
/* Updated: 2022/11/10 18:20:59 by waraissi ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef FT_PRINTF_H
# define FT_PRINTF_H
# include<unistd.h>
# include<stdarg.h>
void ft_putchar(char c, int *res);
void ft_putstr(char *s, int *res);
void ft_putnbr(int n, int *res);
void ft_putnbr_unsigned(unsigned int nbr, int *res);
void ft_putnbr_base(unsigned long long nbr, int *res);
void ft_putnbr_base_lower(unsigned int nbr, int *res);
void ft_putnbr_base_upper(unsigned int nbr, int *res);
int ft_printf(const char *str, ...);
#endif