-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_printf.h
30 lines (26 loc) · 1.29 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: elel-yak <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/11/02 18:05:57 by elel-yak #+# #+# */
/* Updated: 2022/12/23 20:35:01 by elel-yak ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef FT_PRINTF_H
# define FT_PRINTF_H
# define HEX_LOWER "0123456789abcdef"
# define HEX_UPPER "0123456789ABCDEF"
# include<stdarg.h>
# include<unistd.h>
# include<stdio.h>
int ft_putchar(char c);
int ft_putstr(char *str);
int ft_putnbr_base(unsigned long nb, char *base);
int ft_putnbr(long n);
int ft_printf_fucker(va_list q, char c, int *i);
int ft_printf(const char *fmt, ...);
size_t ft_strlen(char *str);
#endif