-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_printf.h
31 lines (26 loc) · 1.37 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
/* ************************************************************************** */
/* */
/* :::::::: */
/* ft_printf.h :+: :+: */
/* +:+ */
/* By: splattje <splattje@student.codam.nl> +#+ */
/* +#+ */
/* Created: 2023/11/06 15:19:07 by splattje #+# #+# */
/* Updated: 2023/11/15 16:39:21 by splattje ######## odam.nl */
/* */
/* ************************************************************************** */
#ifndef FT_PRINTF_H
# define FT_PRINTF_H
# include <stdarg.h>
# include "./libft/libft.h"
int ft_printf(const char *string, ...);
int ft_data_sort(va_list ap, const char *string, int i);
char *ptr_to_hex(void *ptr);
char *uint_to_hex_uplow(unsigned int num, int uplow);
char *uitostr(unsigned int num);
int ft_putchar(va_list ap, char c, int inputplace);
int ft_putstring(va_list ap);
int ft_put_ptr_to_str(va_list ap);
int ft_putnumber(va_list ap);
int ft_uint_to_str(va_list ap, char c);
#endif