-
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.16 KB
/
Copy pathft_printf.h
File metadata and controls
27 lines (23 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
24
25
26
27
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_printf.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: moben-ta <moben-ta@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/12/02 13:20:43 by moben-ta #+# #+# */
/* Updated: 2024/12/05 16:09:43 by moben-ta ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef FT_PRINTF_H
# define FT_PRINTF_H
# include <unistd.h>
# include <stdarg.h>
int ft_printf(const char *format, ...);
int ft_putchar(int c);
int ft_putunbr(unsigned int nbr);
int ft_putnbr(int nbr);
int ft_putstr(char *s);
int ft_puthex(unsigned int n, char c);
int ft_putp(void *ptr);
#endif