-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_printf.h
35 lines (31 loc) · 1.44 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
31
32
33
34
35
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_printf.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: ttavares <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/11/29 12:31:44 by ttavares #+# #+# */
/* Updated: 2022/12/05 16:49:56 by ttavares ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef FT_PRINTF_H
# define FT_PRINTF_H
# include<stdarg.h>
# include<stdio.h>
# include<unistd.h>
# include<stdlib.h>
int ft_printf(const char *text, ...);
int ft_putchar(char c);
int ft_putnbr(int n);
int ft_putstr(char *str);
char *ft_strchr(const char *str, int c);
char *ft_itoa(int n);
char *ft_strchr(const char *str, int c);
size_t ft_strlen(const char *s);
int ft_putnbr_unsigned(unsigned int n);
char *ft_itoa_unsigned(unsigned int n);
int ft_puthex_lower(unsigned int num);
int ft_puthex_upper(unsigned int num);
int ft_putptr(unsigned long long num);
#endif