-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathft_printf.h
More file actions
27 lines (23 loc) · 1.31 KB
/
Copy pathft_printf.h
File metadata and controls
27 lines (23 loc) · 1.31 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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_printf.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: rrebois <rrebois@student.42lyon.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/11/22 12:29:24 by rrebois #+# #+# */
/* Updated: 2022/11/25 17:08:00 by rrebois ### ########lyon.fr */
/* */
/* ************************************************************************** */
#ifndef FT_PRINTF_H
# define FT_PRINTF_H
# include <stdarg.h>
# include <unistd.h>
int ft_printf(const char *f, ...);
void ft_putchar(char c, unsigned int *ptr);
void ft_putstr(char *s, unsigned int *ptr);
void ft_convert_address(size_t i, char c, unsigned int *ptr);
void ft_putnbr(int i, unsigned int *ptr);
void ft_convert_nbr(unsigned int i, char c, unsigned int *ptr);
void ft_putnbr_unsigned(unsigned int i, unsigned int *ptr);
#endif