-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Walid Araissi
committed
Nov 10, 2022
1 parent
89a6656
commit 6d0d2eb
Showing
1 changed file
with
5 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 |