Remplace all write with ft_putchar and ft_puts

This commit is contained in:
gbaconni
2022-04-16 00:53:16 +02:00
parent d7d3f39e54
commit 5aa3e848e9
14 changed files with 107 additions and 70 deletions

View File

@@ -6,7 +6,7 @@
/* By: gbaconni@student.42lausanne.ch +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/01/20 11:43:52 by gbaconni #+# #+# */
/* Updated: 2022/04/15 20:44:24 by gbaconni ### lausanne.ch */
/* Updated: 2022/04/15 22:15:16 by gbaconni ### lausanne.ch */
/* */
/* ************************************************************************** */
@@ -17,7 +17,7 @@ int ft_vprintf(char const *format, va_list ap)
int ret;
ret = 0;
while (*format)
while (*format != 0)
{
if (*format == '%')
{