-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_printf.h
33 lines (30 loc) · 1.41 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
28
29
30
31
32
33
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_printf.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: made-ara <made-ara@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/08/03 11:39:37 by made-ara #+# #+# */
/* Updated: 2024/08/08 19:00:32 by made-ara ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef FT_PRINTF_H
# define FT_PRINTF_H
# include <stdarg.h>
# include <string.h>
# include <unistd.h>
# include <stdlib.h>
int ft_toconvert(char format, va_list list_arg);
int ft_printf(char const *format_string, ...);
int ft_putchar(char c);
int ft_strlen(const char *s);
int ft_putstr(char *s);
char *ft_itoa(long int n);
char *ft_itoahexa(unsigned long n, char x);
int ft_puthexa(unsigned long n, char x);
int ft_putptr(void *p);
int ft_putnbr(int n);
int ft_putnbr_unsigned(int n);
int ft_putnbrhexa(unsigned int n, char x);
#endif