-
Notifications
You must be signed in to change notification settings - Fork 1
/
ft_printf.h
22 lines (18 loc) · 1.06 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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_printf.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: eschirni <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2021/08/16 12:42:04 by eschirni #+# #+# */
/* Updated: 2021/08/24 16:49:35 by eschirni ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef FT_PRINTF_H
# define FT_PRINTF_H
# include "libft/libft.h"
char *ft_uitoa(unsigned int n);
char *ft_hexitoa(unsigned long n, char cha);
int ft_printf(const char *s, ...);
#endif