-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_printf.h
28 lines (24 loc) · 1.2 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
27
28
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_printf.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: mcoskune <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/04/28 16:44:45 by mcoskune #+# #+# */
/* Updated: 2024/05/09 17:49:34 by mcoskune ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef FT_PRINTF_H
# define FT_PRINTF_H
# include <stdarg.h>
# include <unistd.h>
# include "libft/libft.h"
int ft_printf_c(int c);
int ft_printf_s(char *s);
int ft_printf_p(void *ptr);
int ft_printf(const char *fmt, ...);
int ft_printf_di(int n);
int ft_printf_xx(unsigned int n, int x_switch);
int ft_printf_u(unsigned int n);
#endif