-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_printf.h
29 lines (25 loc) · 1.26 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
29
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_printf.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: gyong-si <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/09/28 00:28:51 by gyong-si #+# #+# */
/* Updated: 2023/09/29 14:29:43 by gyong-si ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef FT_PRINTF_H
# define FT_PRINTF_H
# include <stdarg.h>
# include <unistd.h>
# include "libft/libft.h"
int ft_printf(const char *s, ...);
int ft_int_putchar_fd(char c, int fd);
int ft_int_putstr_fd(char *s, int fd);
int ft_int_putnbr_fd(int n);
int ft_putnbr_unsigned(unsigned int n);
int ft_numlen(long num);
int ft_voidtohex(void *p);
int ft_intohex(unsigned int s, char *base);
#endif