-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_printf.h
21 lines (17 loc) · 1 KB
/
ft_printf.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_printf.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: jeshin <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/11/25 17:01:41 by jeshin #+# #+# */
/* Updated: 2023/12/07 17:54:19 by jeshin ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef FT_PRINTF_H
# define FT_PRINTF_H
# include <stdarg.h>
# include "./libft/libft.h"
int ft_printf(const char *str, ...);
#endif