Skip to content

Commit

Permalink
header file
Browse files Browse the repository at this point in the history
  • Loading branch information
Walid Araissi committed Nov 10, 2022
1 parent 89a6656 commit 6d0d2eb
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions ft_printf.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,23 +6,23 @@
/* By: waraissi <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/11/09 18:43:39 by waraissi #+# #+# */
/* Updated: 2022/11/10 01:17:22 by waraissi ### ########.fr */
/* Updated: 2022/11/10 18:20:59 by waraissi ### ########.fr */
/* */
/* ************************************************************************** */

#ifndef FT_PRINTF
# define FT_PRINTF
#ifndef FT_PRINTF_H
# define FT_PRINTF_H

# include<unistd.h>
# include<stdarg.h>

void ft_putchar(char c , int *res);
void ft_putchar(char c, int *res);
void ft_putstr(char *s, int *res);
void ft_putnbr(int n, int *res);
void ft_putnbr_unsigned(unsigned int nbr, int *res);
void ft_putnbr_base(unsigned long long nbr, int *res);
void ft_putnbr_base_lower(unsigned int nbr, int *res);
void ft_putnbr_base_upper(unsigned int nbr, int *res);
int ft_printf(const char *str, ...);
int ft_printf(const char *str, ...);

#endif

0 comments on commit 6d0d2eb

Please sign in to comment.