-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathft_printf.h
More file actions
27 lines (24 loc) · 1.21 KB
/
Copy pathft_printf.h
File metadata and controls
27 lines (24 loc) · 1.21 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: yamzil <yamzil@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2021/12/13 13:39:39 by yamzil #+# #+# */
/* Updated: 2021/12/15 18:53:54 by yamzil ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef FT_PRINTF_H
# define FT_PRINTF_H
# include <stdarg.h>
# include <unistd.h>
int ft_printf(const char *format, ...);
int ft_puthexalow(unsigned int nb);
int ft_puthexaupper(unsigned int nb);
int ft_putcent(unsigned long nb);
int ft_putnbr(int nbr);
int ft_putun(unsigned int nbr);
int ft_putstr(char *str);
int ft_putchar(char c);
#endif