-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_printf.h
30 lines (26 loc) · 1.3 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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_printf.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: azaher <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/10/30 13:51:18 by azaher #+# #+# */
/* Updated: 2022/10/31 17:20:43 by azaher ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef FT_PRINTF_H
# define FT_PRINTF_H
# include <stdarg.h>
# include <unistd.h>
# include <stdio.h>
int ft_putchar(char c);
int ft_putstr(char *str);
int print_params(va_list ap, char s, int *i);
unsigned int ft_unsigned_putnbr(unsigned int n);
int ft_puthexa_low(unsigned int n);
int ft_puthexa_up(unsigned int n);
int ft_put_ptr(unsigned long n);
int ft_printf(const char *s, ...);
int ft_putnbr(int n);
#endif