-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathft_printf.h
More file actions
28 lines (24 loc) · 1.24 KB
/
Copy pathft_printf.h
File metadata and controls
28 lines (24 loc) · 1.24 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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_printf.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: mpedraza <mpedraza@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2025/11/18 14:48:12 by mpedraza #+# #+# */
/* Updated: 2025/11/26 19:58:10 by mpedraza ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef FT_PRINTF_H
# define FT_PRINTF_H
# include <stdarg.h>
# include <unistd.h>
# include <stdint.h>
int ft_printf(const char *f, ...);
int print_chr(char ch, int count);
int print_hex(int n, char f, int count);
int print_nbr(int n, int count);
int print_ptr(uintptr_t nb, int count);
int print_str(char *str, int count);
int print_uns(unsigned int n, int count);
#endif