-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_printf.h
28 lines (24 loc) · 1.2 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
28
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_printf.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: daxferab <[email protected] +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/03/14 03:57:16 by daxferab #+# #+# */
/* Updated: 2024/05/24 13:50:09 by daxferab ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef FT_PRINTF_H
# define FT_PRINTF_H
# include <stdarg.h>
# include <stdint.h>
# include "libft/libft.h"
int ft_printf(char const *str, ...);
int ft_printchar(int c);
int ft_printnbr(int num);
int ft_printstr(char *c);
int ft_printptr(size_t ptr);
int ft_printhex(size_t num, char *hexchain);
int ft_printuns(int num);
#endif