-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathft_printf.h
More file actions
27 lines (24 loc) · 1.31 KB
/
Copy pathft_printf.h
File metadata and controls
27 lines (24 loc) · 1.31 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: mmeier <mmeier@student.hive.fi> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/11/03 12:39:08 by mmeier #+# #+# */
/* Updated: 2023/12/18 12:08:51 by mmeier ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef FT_PRINTF_H
# define FT_PRINTF_H
# include <unistd.h>
# include <stdarg.h>
int ft_putchar_count(const char c, int *cmp);
int ft_putnbr_count(int n, int *cmp);
int ft_putstr_count(char *s, int *cmp);
int ft_printf(const char *str, ...);
int ft_unsigned_int_count(unsigned int n, int *cmp);
int ft_hexconvert_upper(unsigned int n, int *cmp);
int ft_hexconvert_lower(unsigned long long int n, int *cmp);
int ft_putptr(void *s, int *cmp);
#endif