ajout ft_print.c dans ft_print.h

This commit is contained in:
Xamora 2022-11-21 19:04:15 +01:00
parent 5b4b292a53
commit 06647d6034

View file

@ -17,11 +17,12 @@
# include <stdlib.h>
# include <unistd.h>
int ft_printf(const char *str, ...);
void ft_putchar(char c);
int ft_putstr(char *s);
char *ft_itoa(int n);
int ft_power(int nb, int power);
int ft_get_size(long n);
int ft_get_size(long long n);
int ft_putnbr(int n);
int ft_putunbr(unsigned int n);
int ft_putnbrhex(int v);