-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_printf.h
29 lines (25 loc) · 1.23 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
/* ************************************************************************** */
/* */
/* :::::::: */
/* ft_printf.h :+: :+: */
/* +:+ */
/* By: dreijans <[email protected]> +#+ */
/* +#+ */
/* Created: 2022/11/23 19:56:37 by dreijans #+# #+# */
/* Updated: 2022/11/30 20:21:37 by dreijans ######## odam.nl */
/* */
/* ************************************************************************** */
#ifndef FT_PRINTF_H
# define FT_PRINTF_H
# include "./Libft/libft.h"
# include <unistd.h>
# include <stdarg.h>
int ft_printf(const char *format, ...);
int print_nbr(int n);
int print_char(char c);
int print_hexlow(unsigned int n);
int print_hexup(unsigned int n);
int print_str(char *s);
int print_unsigned(unsigned int n);
int print_ptr(unsigned long int n);
#endif