-
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: bhielsch <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/10/20 10:28:28 by bhielsch #+# #+# */
/* Updated: 2022/10/20 13:58:03 by bhielsch ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef FT_PRINTF_H
# define FT_PRINTF_H
# include <unistd.h>
# include <stdlib.h>
# include <stdio.h>
# include <stdarg.h>
int ft_print_c(char c);
int ft_print_p(void *ptr);
int ft_print_int(long long int nb, int count);
int ft_print_hexup(unsigned int nb, int count);
int ft_print_hexlow(unsigned int nb, int count);
int ft_print_str(char *s);
int ft_printf(const char *str, ...);
int ft_print_u(unsigned int nb);
#endif