-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_printf.h
27 lines (23 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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_printf.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: jikarunw <jikarunw@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/09/16 01:40:14 by jikarunw #+# #+# */
/* Updated: 2023/09/18 15:47:53 by jikarunw ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef FT_PRINTF_H
# define FT_PRINTF_H
# include "./libft/libft.h"
# include <stdarg.h>
int ft_printf(const char *s, ...);
int ft_printf_char(int c);
int ft_printf_hex(unsigned int n, int x_sw);
int ft_printf_string(char *str);
int ft_printf_nbr(int num);
int ft_printf_ptr(void *ptr);
int ft_printf_unit(unsigned int n);
#endif