42_cube3D/libftx/printf/ft_eprintf.c

27 lines
1.1 KiB
C

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_eprintf.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: cchauvet <cchauvet@student.42angoulem +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/10/06 22:01:28 by cchauvet #+# #+# */
/* Updated: 2023/04/26 11:17:15 by cchauvet ### ########.fr */
/* */
/* ************************************************************************** */
#include "ft_printf.h"
int ft_eprintf(const char *format, ...)
{
va_list va;
int i;
ft_putstr_fd_p(2, "cub3d: ");
va_start(va, format);
i = ft_vdprintf(2, format, va);
va_end(va);
ft_putchar_fd_p(2, '\n');
return (i);
}