From 9c64c9d253fa22b29005ec53dca6fedcead2ae6c Mon Sep 17 00:00:00 2001 From: Dominik Kaiser Date: Fri, 12 Apr 2024 18:51:50 +0200 Subject: Add libft and input handling --- libft/ft_printf.h | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 libft/ft_printf.h (limited to 'libft/ft_printf.h') diff --git a/libft/ft_printf.h b/libft/ft_printf.h new file mode 100644 index 0000000..22f6a2a --- /dev/null +++ b/libft/ft_printf.h @@ -0,0 +1,24 @@ +/* ************************************************************************** */ +/* */ +/* ::: :::::::: */ +/* ft_printf.h :+: :+: :+: */ +/* +:+ +:+ +:+ */ +/* By: dkaiser +# include + +int ft_printf(const char *fmt, ...); +int ft_printnbr(int nbr); +int ft_printunbr(unsigned int nbr); +int ft_printhex(unsigned int nbr, char fmt); +int ft_printaddr(void *addr); +#endif // FT_PRINTF_H -- cgit v1.2.3