-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_printf.h
27 lines (25 loc) · 1.23 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: deryacar <[email protected]. +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/07/25 14:02:25 by deryacar #+# #+# */
/* Updated: 2023/07/25 14:02:32 by deryacar ### ########.tr */
/* */
/* ************************************************************************** */
#ifndef FT_PRINTF_H
# define FT_PRINTF_H
# include <unistd.h>
# include <stdarg.h>
int ft_printf(const char *str, ...);
int ft_putchar(char x);
int ft_format(va_list *args, char w);
int ft_int(int w);
int ft_unsigned(unsigned int w);
int ft_string(char *str);
int ft_hex(unsigned int d, char w);
int ft_point(unsigned long w, int i);
int ft_check(char str);
#endif