-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathft_printf.h
More file actions
31 lines (26 loc) · 1.27 KB
/
Copy pathft_printf.h
File metadata and controls
31 lines (26 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
28
29
30
31
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_printf.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: ebin-ahm <ebin-ahm@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2025/12/17 13:08:50 by ebin-ahm #+# #+# */
/* Updated: 2025/12/17 18:29:32 by ebin-ahm ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef FT_PRINTF_H
# define FT_PRINTF_H
# include <stdarg.h>
# include <unistd.h>
# include <stddef.h>
int ft_printf(const char *format, ...);
int ft_write(const void *buf, size_t n);
int print_char(int c);
int print_hex(unsigned int n, int uppercase);
int print_int(int n);
int print_percent(void);
int print_pointer(void *ptr);
int print_string(char *s);
int print_unsigned(unsigned int n);
#endif