-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathft_printf.h
More file actions
28 lines (24 loc) · 1.27 KB
/
ft_printf.h
File metadata and controls
28 lines (24 loc) · 1.27 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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_printf.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: mmounsif <mmounsif@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/12/09 22:23:39 by mmounsif #+# #+# */
/* Updated: 2024/12/11 20:54:49 by mmounsif ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef FT_PRINTF_H
# define FT_PRINTF_H
# include <stdarg.h>
# include <unistd.h>
# include <limits.h>
void ft_putchar(char c, int *count);
void ft_putstr(char *s, int *count);
void ft_putnbr(int n, int *count);
void ft_puthex(unsigned int n, int i, int *count);
void ft_putunbr(unsigned int n, int *count);
void ft_putptr(unsigned long long ptr, int *count);
int ft_printf(const char *format, ...);
#endif