1
0
cub3d/libft/includes/ft_printf.h
2024-09-10 16:27:06 +02:00

31 lines
1.3 KiB
C

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_printf.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: madumerg <madumerg@student.42angouleme. +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/11/13 14:34:51 by madumerg #+# #+# */
/* Updated: 2024/02/02 14:25:30 by madumerg ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef FT_PRINTF_H
# define FT_PRINTF_H
# include <stddef.h>
# include <stdlib.h>
# include <unistd.h>
# include <stdarg.h>
int ft_printf(const char *str, ...);
int ft_putchar(char c);
int ft_putstr(char *str);
int ft_putnbr(int n);
int ft_putnbr_uns_int(unsigned int n);
int ft_putnbr_hexa_low(size_t n);
int ft_putnbr_hexa_upp(unsigned int n);
int ft_print_ptr(void *ptr);
#endif