-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathft_printf.h
More file actions
30 lines (26 loc) · 1.29 KB
/
ft_printf.h
File metadata and controls
30 lines (26 loc) · 1.29 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
29
30
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_printf.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: erigolon <erigolon@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/01/09 12:39:22 by erigolon #+# #+# */
/* Updated: 2023/01/19 09:40:10 by erigolon ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef FT_PRINTF_H
# define FT_PRINTF_H
# include <stdlib.h>
# include <stdio.h>
# include <unistd.h>
# include <stdarg.h>
int ft_printf(char const *str, ...);
int ft_putcharf(char c);
int ft_check_percentage(char convert, va_list args, int count);
int ft_putstrf(char *str);
char *ft_itoa_u(unsigned int n);
char *ft_hex(unsigned long decimal, int mayus);
char *ft_itoa(int n);
size_t ft_strlen(const char *s);
#endif