-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_fdprintf.c
24 lines (21 loc) · 1.06 KB
/
ft_fdprintf.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_fdprintf.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: gmelisan <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2019/01/28 14:40:32 by gmelisan #+# #+# */
/* Updated: 2019/01/28 14:40:43 by gmelisan ### ########.fr */
/* */
/* ************************************************************************** */
#include "ft_printf.h"
int ft_fdprintf(int fd, const char *format, ...)
{
int ret;
va_list ap;
va_start(ap, format);
ret = ft_vfdprintf(fd, format, ap);
va_end(ap);
return (ret);
}