-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathft_printf.h
More file actions
27 lines (23 loc) · 1.19 KB
/
ft_printf.h
File metadata and controls
27 lines (23 loc) · 1.19 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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_printf.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: cde-la-r <cde-la-r@student.42madrid> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/09/29 01:39:22 by cde-la-r #+# #+# */
/* Updated: 2023/09/29 03:11:50 by cde-la-r ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef FT_PRINTF_H
# define FT_PRINTF_H
# include <unistd.h>
# include <stdarg.h>
int ft_putchar(char c);
int ft_putstr(const char *str);
int ft_putnbr(long n);
int ft_puthex(unsigned long n, int up);
int ft_putptr(void *ptr);
int ft_format(const char format, va_list args);
int ft_printf(const char *str, ...);
#endif