-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_printf.h
27 lines (23 loc) · 1.16 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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_printf.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: zjaddad <zjaddad@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/11/07 01:15:59 by zjaddad #+# #+# */
/* Updated: 2022/11/08 21:15:15 by zjaddad ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef FT_PRINTF_H
# define FT_PRINTF_H
# include<unistd.h>
# include<stdarg.h>
# include<stdio.h>
int ft_putchar(char c);
int ft_putstr(char *s);
int ft_putnbr(int nb);
int ft_unsnbr(unsigned int nb);
int ft_hexdecimal(unsigned long nb, char *base);
int ft_printf(const char *arg, ...);
#endif