-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathft_printf.h
More file actions
33 lines (29 loc) · 1.33 KB
/
ft_printf.h
File metadata and controls
33 lines (29 loc) · 1.33 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
31
32
33
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_printf.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: yel-mota <yel-mota@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/11/12 16:44:42 by yel-mota #+# #+# */
/* Updated: 2025/04/09 17:15:23 by yel-mota ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef FT_PRINTF_H
# define FT_PRINTF_H
# include "libft.h"
# include <stdarg.h>
# include <stdint.h>
# include <stdio.h>
# include <stdlib.h>
# include <unistd.h>
int ft_putnbr_base(unsigned int nbr, char *base);
int ft_putchar(const char c);
int ft_putstr(char *str);
int ft_unint(unsigned int n);
int ft_printf(const char *str, ...);
int ft_countnbr(unsigned int n);
int ft_putone(va_list one, const char str);
int ft_nbr(int n);
int ft_putaddress(void *p);
#endif