-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_printf.h
33 lines (23 loc) · 1.25 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
29
30
31
32
33
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_printf.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: gsilva <gsilva@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/10/15 11:09:59 by gsilva #+# #+# */
/* Updated: 2022/10/17 15:07:55 by gsilva ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef FT_PRINTF_H
# define FT_PRINTF_H
# include <stdarg.h>
# include "42_Libft/libft.h"
int ft_printf(const char *s, ...);
int ft_printf_s(char *s);
int ft_printf_d(int n, char *base);
int ft_printf_u(unsigned int n, char *base);
int ft_printf_p(unsigned long n, char *base);
int ft_printf_x(unsigned long n, char *base);
int ft_print_arg(char c, va_list arg);
#endif