-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathft_printf.h
More file actions
22 lines (18 loc) · 1.06 KB
/
Copy pathft_printf.h
File metadata and controls
22 lines (18 loc) · 1.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_printf.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: hhamza <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2021/12/22 09:30:41 by hhamza #+# #+# */
/* Updated: 2021/12/23 19:46:47 by hhamza ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef FT_PRINTF_H
# define FT_PRINTF_H
# include "./include/libft.h"
# include <stdarg.h>
int ft_printf(const char *format, ...);
int ft_parse_conversion(char conversion, va_list *ap);
#endif