-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathft_printf.h
More file actions
23 lines (20 loc) · 1.16 KB
/
ft_printf.h
File metadata and controls
23 lines (20 loc) · 1.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_printf.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: lbiasuz <lbiasuz@student.42sp.org.br> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/05/30 22:56:31 by lbiasuz #+# #+# */
/* Updated: 2023/01/31 10:00:07 by lbiasuz ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef FT_PRINTF_H
# define FT_PRINTF_H
# include "libft.h"
# include <stdarg.h>
int ft_printf(const char *str, ...);
int handle_print_conversion(va_list list, int converter);
char *ft_ultob(unsigned long long nb, char *base);
char *alloc_char_or_string(va_list list, int type_flag);
#endif