-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_printf.h
26 lines (23 loc) · 1.15 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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_printf.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: akdemir <[email protected] +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/07/15 21:38:30 by akdemir #+# #+# */
/* Updated: 2023/07/27 15:49:22 by akdemir ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef FT_PRINTF_H
# define FT_PRINTF_H
# include <stdarg.h>
# include <unistd.h>
int ft_printf(const char *str, ...);
int ft_putc(char c);
int ft_puts(char *s);
int ft_putp(void *p);
int ft_putn(int n);
int ft_putu(unsigned int u);
int ft_puth(unsigned long h, char *p);
#endif