Rename all ft_vprintf_*.c to ft_va_*.c

This commit is contained in:
gbaconni
2022-04-29 15:18:54 +02:00
parent 1cb8c78ae3
commit 2b5b1de944
18 changed files with 172 additions and 118 deletions

View File

@@ -6,7 +6,7 @@
/* By: gbaconni@student.42lausanne.ch +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/01/20 11:43:52 by gbaconni #+# #+# */
/* Updated: 2022/04/29 08:48:39 by gbaconni ### lausanne.ch */
/* Updated: 2022/04/29 14:19:39 by gbaconni ### ########.fr */
/* */
/* ************************************************************************** */
@@ -22,11 +22,11 @@ int ft_vprintf(char const *format, va_list ap)
if (*format == '%')
{
format++;
ret += ft_vprintf_percent(format, ap);
ret += ft_va_percent(format, ap);
format += ft_eoflags(format);
}
else
ret += ft_vprintf_other(format, ap);
ret += ft_va_other(format, ap);
format++;
}
return (ret);