-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_printf.h
26 lines (23 loc) · 1.26 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: agoksu <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/11/27 17:34:04 by agoksu #+# #+# */
/* Updated: 2022/11/27 17:34:07 by agoksu ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef FT_PRINTF_H
# define FT_PRINTF_H
# include <stdarg.h>
# include <unistd.h>
int ft_printf(const char *str, ...);
void ft_printf_char(char c, int *i);
void ft_printf_int(int nb, int *i);
void ft_printf_str(char *str, int *i);
void ft_printf_hex(unsigned long long nb, int *i);
void ft_printf_nb(unsigned int nb, int *i);
void ft_printf_base(unsigned int n, char *base, int *i);
#endif