-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_printf.h
27 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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_printf.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: rd-agost <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/02/22 17:56:14 by rd-agost #+# #+# */
/* Updated: 2024/02/26 15:29:17 by rd-agost ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef FT_PRINTF_H
# define FT_PRINTF_H
# include <unistd.h>
# include <stdio.h>
# include <stdarg.h>
int ft_putchar(char c);
int ft_putstr(char *str);
int ft_putnbr(long long n);
int ft_format(va_list ap, char format);
int ft_printf(const char *format, ...);
int ft_puthex(unsigned long n, int is_uppercs);
int ft_putptr(unsigned long int memory_address);
#endif