/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ftprintf.h :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: lfirmin +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2024/06/19 04:44:27 by lfirmin #+# #+# */ /* Updated: 2024/06/19 07:49:08 by lfirmin ### ########.fr */ /* */ /* ************************************************************************** */ #ifndef FTPRINTF_H # define FTPRINTF_H # include # include # include # include "stdlib.h" void ft_putchar(char c); void ft_put_ptr(unsigned long long num); void ft_conv_ith(unsigned int nbr, const char str); int ft_hex_len(unsigned int nbr); int ft_sorting(va_list list, const char str); int ft_printf(const char *str, ...); int ft_print_ith(unsigned int nbr, const char str); int ft_printchar(int c); int ft_printstr(char *s); int ft_printpercent(void); int ft_print_unsigned(unsigned int nb); int ft_print_nbr(int nb); int ft_print_ptr(unsigned long long ptr); int ft_adrr_len(unsigned long long nbr); int ft_print_null(void); char *ft_itoa(int n); char *ft_unsigned_itoa(unsigned int n); size_t ft_count(long long int n); #endif