-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_printf.h
27 lines (23 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: abertran <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/11/15 17:27:24 by abertran #+# #+# */
/* Updated: 2022/11/18 19:51:48 by abertran ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef FT_PRINTF_H
# define FT_PRINTF_H
# include <stdarg.h>
# include <unistd.h>
# include <stdio.h>
int ft_printf(char const *str, ...);
void ft_putcharlen(char c, int *len);
void ft_putstrlen(char *str, int *len);
void ft_putnbrlen(int nb, int *len);
void ft_puthex(unsigned long long nb, char *base, int *len);
void ft_putunsigned(unsigned int nb, int *len);
#endif