-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_printf.h
28 lines (25 loc) · 1.42 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_lib.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: arepsa <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/05/16 10:05:37 by arepsa #+# #+# */
/* Updated: 2023/05/16 10:05:40 by arepsa ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef FT_PRINTF_H
# define FT_PRINTF_H
# include <stdio.h>
# include <stdarg.h>
# include <unistd.h>
void ft_putchar_pf(char c, int *count);
void ft_putstr_pf(char *str, int *count);
void ft_check(va_list args, char *string, int i, int *count);
int ft_printf(const char *format, ...);
void ft_putnbr_pf(int nbr, int *count);
void ft_putnbr_pf_base(unsigned int nbr, char *base, int *count);
void ft_print_ptr(unsigned long long ptr, char *base, int *count);
void ft_putnbr_ptr(unsigned long long ptr, char *base, int *count);
#endif