-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathft_printf.h
More file actions
27 lines (24 loc) · 1.22 KB
/
Copy pathft_printf.h
File metadata and controls
27 lines (24 loc) · 1.22 KB
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: wkabat <wkabat@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/04/03 10:53:32 by wkabat #+# #+# */
/* Updated: 2024/04/08 18:03:55 by wkabat ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef FT_PRINTF_H
# define FT_PRINTF_H
# include <unistd.h>
# include <stdarg.h>
int ft_print_char(int c);
int ft_print_str(char *str);
int ft_print_percent(void);
int ft_print_nbr(int n);
int ft_print_hex(unsigned int n, const char format);
int ft_print_unsigned(unsigned int n);
int ft_print_ptr(void *str);
int ft_printf(const char *str, ...);
#endif