-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathft_printf.h
More file actions
30 lines (27 loc) · 1.32 KB
/
ft_printf.h
File metadata and controls
30 lines (27 loc) · 1.32 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
28
29
30
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_printf.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: ktolba <tolbakevin@gmail.com> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2025/06/01 11:56:11 by ktolba #+# #+# */
/* Updated: 2025/07/11 04:10:57 by ktolba ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef FT_PRINTF_H
# define FT_PRINTF_H
# include <stdarg.h>
# include <unistd.h>
# include <stdlib.h>
# include <limits.h>
int ft_printf(const char *fotmat, ...);
int ft_dispatch_args(va_list args, const char *str);
int ft_putchar_pf(char c);
int ft_putstr_pf(char *str);
int ft_putptr_pf(void *ptr);
int ft_putnbr_pf(int nbr);
int ft_put_unsigned_pf(unsigned int nbr);
int ft_puthex_pf(unsigned int nbr, int typecase);
int ft_puthexptr_pf(size_t nbr);
#endif