-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_printf.h
28 lines (24 loc) · 1.23 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: cyferrei <cyferrei@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/11/19 17:02:12 by cyferrei #+# #+# */
/* Updated: 2023/11/23 10:49:45 by cyferrei ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef FT_PRINTF_H
# define FT_PRINTF_H
# include "./libft/libft.h"
# include <stdarg.h>
int ft_printf(const char *input, ...);
int print_char(char c);
int print_int(int nb);
int print_string(char *str);
int print_pointer(unsigned long long ptr);
int print_unsigned(unsigned int nb);
int print_hexa(unsigned int nb, const char form);
int print_percent(void);
#endif