-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_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: aarbaoui <aarbaoui@student.1337.ma> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/10/19 14:21:40 by aarbaoui #+# #+# */
/* Updated: 2022/10/24 16:06:45 by aarbaoui ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef FT_PRINTF_H
# define FT_PRINTF_H
# include <unistd.h>
# include <stdarg.h>
int ft_printf(const char *str, ...);
void ft_putchar(char c, int *len);
void ft_putstr(char *s, int *len);
void ft_putnbr(int nbr, int *len);
void ft_putnbr_u(unsigned int nbr, int *len);
void ft_putnbr_b(unsigned int nbr, char *base, int *len);
void ft_putmem(void *p, int *len);
#endif