-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathft_printf.h
More file actions
31 lines (27 loc) · 1.27 KB
/
ft_printf.h
File metadata and controls
31 lines (27 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: sabahass <sabahass@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2025/09/17 22:26:43 by sabahass #+# #+# */
/* Updated: 2025/10/21 19:10:24 by sabahass ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef FT_PRINTF_H
# define FT_PRINTF_H
# include <stdarg.h>
# include <stdint.h>
# include <unistd.h>
# include <stdio.h>
# include <limits.h>
# include "libft/libft.h"
int ft_printf(const char *format, ...);
int ft_print_c(int c);
int ft_print_s(const char *s);
int ft_print_d(int n);
int ft_print_u(unsigned int n);
int ft_print_x(unsigned long n, int upper);
int ft_print_p(const void *p);
#endif