-
Notifications
You must be signed in to change notification settings - Fork 1
/
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: phelebra <xhelp00@gmail.com> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/02/06 18:09:42 by phelebra #+# #+# */
/* Updated: 2023/02/10 12:45:57 by phelebra ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef FT_PRINTF_H
# define FT_PRINTF_H
# include <stdarg.h>
# include <stdint.h>
# include "./libft/libft.h"
int ft_printf(const char *s, ...);
int ft_putchar(char c);
int ft_putstr(char *s);
int ft_putnbr(int i);
int ft_putptr(uintptr_t u);
int ft_puthex(unsigned int ui, char xchar);
int ft_putunsign(unsigned int ui);
#endif