-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprintf.h
20 lines (16 loc) · 1000 Bytes
/
printf.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* printf.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: agaliste <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2021/08/14 03:29:39 by agaliste #+# #+# */
/* Updated: 2021/08/30 03:51:37 by agaliste ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef PRINTF_H
# define PRINTF_H
# include "libft/libft.h"
int ft_printf(const char *inp, ...);
#endif