Files
42_INT_01_libft/includes/ft_printf.h
2026-05-02 21:47:33 +02:00

25 lines
1.1 KiB
C

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_printf.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: hulamy <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2020/02/27 12:07:47 by hulamy #+# #+# */
/* Updated: 2020/03/12 20:35:10 by hulamy ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef FT_PRINTF_H
#define FT_PRINTF_H
/*
** ft_printf.c
*/
int ft_dprintf(int fd, const char *string, ...);
int ft_printf(const char *string, ...);
int ft_vdprintf(int fd, const char *string, va_list ap);
#endif