-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathft_printf.h
More file actions
31 lines (27 loc) · 1.32 KB
/
ft_printf.h
File metadata and controls
31 lines (27 loc) · 1.32 KB
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
31
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_printf.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: ikgonzal <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2021/09/20 18:44:52 by ikgonzal #+# #+# */
/* Updated: 2021/09/28 18:42:50 by ikgonzal ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef FT_PRINTF_H
# define FT_PRINTF_H
# include <stdarg.h>
# include <unistd.h>
# include <stdint.h>
int ft_printf(const char *format, ...);
int ft_put_nb(int nb);
int ft_count_nb(int nb);
int ft_putstr(char *str);
int ft_check_conditions(char c, va_list args);
int ft_putchar(char c);
int ft_put_unsigned_nb(unsigned int nb);
int ft_count_unsigned_nb(unsigned int nb);
int ft_put_hexadecimal(uintptr_t nb, char c);
int ft_put_pointer(uintptr_t nb);
#endif