-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_printf.h
26 lines (22 loc) · 1.17 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: stales <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/04/11 17:58:26 by stales #+# #+# */
/* Updated: 2022/04/19 21:30:18 by stales ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef FT_PRINTF_H
# define FT_PRINTF_H
# include <stdarg.h>
int ft_putchar(char c);
int ft_putstr(char const *str, char end);
int ft_putnbr(int n);
int ft_putnbu(unsigned int n);
int ft_puthex(unsigned long n, char fmt);
int ft_va(char *fmt, va_list a);
int ft_printf(const char *format, ...);
#endif