-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_printf.h
28 lines (24 loc) · 1.24 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: ghuertas <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/04/21 05:37:27 by ghuertas #+# #+# */
/* Updated: 2022/05/15 19:29:08 by ghuertas ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef FT_PRINTF_H
# define FT_PRINTF_H
# include <stdarg.h>
# include <stdio.h>
# include <unistd.h>
int ft_printf(char const *format, ...);
int ft_print_char(int c);
int ft_printn_base(int n, char *base);
int ft_printnu_base(unsigned int n, char *base);
int ft_print_hex(unsigned long n, char *base);
int ft_print_str(char *s);
size_t ft_strlenv2(const char *s);
#endif