-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_printf.h
30 lines (26 loc) · 1.27 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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_printf.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: fmorenil <fmorenil@student.42madrid> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/03/27 18:33:24 by fmorenil #+# #+# */
/* Updated: 2024/04/05 18:37:42 by fmorenil ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef FT_PRINTF_H
# define FT_PRINTF_H
# include <stdlib.h>
# include <unistd.h>
# include <stdarg.h>
int ft_printf(char const *str, ...);
int ft_putstr(char *s);
int ft_putchar(char c);
int ft_paramtype(va_list vargs, const char c);
int ft_putpercentage(void);
int ft_putnbr(int n);
int ft_putuint(unsigned int n);
int ft_puthex(long int n, const char c);
int ft_putptr(unsigned long long ptr);
#endif