42_minishell/libftx/printf/ft_eprintf.c

25 lines
1.0 KiB
C
Raw Normal View History

2023-02-01 11:28:38 -05:00
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_eprintf.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: cchauvet <cchauvet@student.42angoulem +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/10/06 22:01:28 by cchauvet #+# #+# */
/* Updated: 2023/02/01 16:18:46 by cchauvet ### ########.fr */
/* */
/* ************************************************************************** */
#include "ft_printf.h"
2023-02-02 11:27:26 -05:00
int ft_eprintf(const char *format, ...)
2023-02-01 11:28:38 -05:00
{
va_list va;
int i;
va_start(va, format);
i = ft_vdprintf(2, format, va);
va_end(va);
return (i);
}