-
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: sasano <sasano.stu> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/09/26 12:31:45 by sasano #+# #+# */
/* Updated: 2023/11/17 18:46:33 by sasano ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef FT_PRINTF_H
# define FT_PRINTF_H
# include <stdarg.h>
# include <stdio.h>
# include <stdlib.h>
# include <unistd.h>
int ft_printf(const char *format, ...);
int ft_putchar(unsigned char c);
int ft_putstr(char *str);
int ft_putptr(uintptr_t ptr, const char format);
int ft_putnbr(int nb);
int ft_putnbr_unsigned(unsigned int nb);
int ft_putnbr_hex(unsigned int nb, const char format);
#endif