-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathft_printf.h
More file actions
25 lines (22 loc) · 1.16 KB
/
ft_printf.h
File metadata and controls
25 lines (22 loc) · 1.16 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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_printf.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: bschwitz <marvin@42lausanne.ch> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2021/11/29 17:02:21 by bschwitz #+# #+# */
/* Updated: 2021/12/07 17:12:12 by bschwitz ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef FT_PRINTF_H
# define FT_PRINTF_H
int ft_printf(const char *format, ...);
int ft_putchar(char c);
int ft_putnbr(int nb);
int ft_putstr(char *str);
int ft_strlen(char *str);
int ft_putunsignednbr(unsigned int nb);
int ft_hex(unsigned int nbr, char *base);
int ft_ptrhex(void *ptr);
#endif