-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_printf.h
26 lines (22 loc) · 1.11 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
22
23
24
25
26
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_printf.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: aerrajiy <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/10/23 18:11:06 by aerrajiy #+# #+# */
/* Updated: 2022/10/27 20:47:54 by aerrajiy ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef FT_PRINTF_H
# define FT_PRINTF_H
# include <stdarg.h>
# include <unistd.h>
# include <limits.h>
# include <stdlib.h>
# include <stdio.h>
# include "srcs/fnc_src.h"
int ft_printf(const char *str, ...);
int show(va_list ptr, char c);
#endif