-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathft_printf.h
More file actions
27 lines (23 loc) · 1.27 KB
/
Copy pathft_printf.h
File metadata and controls
27 lines (23 loc) · 1.27 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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_printf.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: hutzig <hutzig@student.hive.fi> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/05/08 10:56:58 by hutzig #+# #+# */
/* Updated: 2024/05/13 11:53:29 by hutzig ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef FT_PRINTF_H
# define FT_PRINTF_H
# include <stdarg.h>
# include <unistd.h>
int ft_printf(const char *format, ...);
int ft_printf_char(char c);
int ft_printf_string(char *s);
int ft_printf_int(int n, int total_length);
int ft_printf_unsigned_int(unsigned int n, int total_length);
int ft_printf_hexadecimal(unsigned int n, char format, int total_length);
int ft_printf_pointer(void *ptr);
#endif