/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_printf.h :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: gvoelkne +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2026/04/29 09:07:17 by gvoelkne #+# #+# */ /* Updated: 2026/05/07 09:27:49 by gvoelkne ### ########.fr */ /* */ /* ************************************************************************** */ #ifndef FT_PRINTF_H # define FT_PRINTF_H # include # include # include # include # include void *ft_calloc(size_t nmemb, size_t size); unsigned int ft_calc_digits(unsigned long num, int base); size_t ft_strlen(const char *str); char *ft_strlower(char *str); char *ft_strdup(const char *str); int ft_strcontains(const char *str, char c); char *ft_ntoa(long num, int base); char *ft_untoa(unsigned long num, int base); int ft_putptr(void *ptr); int ft_printf(const char *s, ...); #endif