Libft
 
Loading...
Searching...
No Matches
ft_printf.h
Go to the documentation of this file.
1/* ************************************************************************** */
2/* */
3/* ::: :::::::: */
4/* ft_printf.h :+: :+: :+: */
5/* +:+ +:+ +:+ */
6/* By: ppontet <ppontet@student.42lyon.fr> +#+ +:+ +#+ */
7/* +#+#+#+#+#+ +#+ */
8/* Created: 2024/11/19 14:33:31 by ppontet #+# #+# */
9/* Updated: 2025/05/10 12:20:33 by ppontet ### ########lyon.fr */
10/* */
11/* ************************************************************************** */
12
13#ifndef FT_PRINTF_H
14# define FT_PRINTF_H
15
16# include "libft.h"
17# include <stddef.h>
18# include <unistd.h>
19
20int ft_printf(const char *str, ...);
21int ft_dprintf(int fd, const char *str, ...);
22
23#endif
int ft_printf(const char *str,...)
Works similarly as printf without handling size format.
Definition ft_printf.c:27
int ft_dprintf(int fd, const char *str,...)
Works similarly as printf without handling size format.
Definition ft_printf.c:56