Skip to content

Commit

Permalink
ft_printf main function
Browse files Browse the repository at this point in the history
  • Loading branch information
Walid Araissi committed Nov 12, 2022
1 parent 09ad441 commit 1cda0c7
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions ft_printf.c
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
/* By: waraissi <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/11/09 18:43:25 by waraissi #+# #+# */
/* Updated: 2022/11/11 20:19:54 by waraissi ### ########.fr */
/* Updated: 2022/11/12 21:49:02 by waraissi ### ########.fr */
/* */
/* ************************************************************************** */

Expand Down Expand Up @@ -54,7 +54,6 @@ int ft_printf(const char *str, ...)
if (!*str)
{
write(1, "", 1);
break ;
}
else
conditions(str++, &res, args);
Expand Down

0 comments on commit 1cda0c7

Please sign in to comment.