-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathft_printf.h
More file actions
22 lines (19 loc) · 1.09 KB
/
ft_printf.h
File metadata and controls
22 lines (19 loc) · 1.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_printf.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: elopin <elopin@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/11/29 22:49:24 by elopin #+# #+# */
/* Updated: 2024/12/01 20:41:25 by elopin ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef FT_PRINTF_H
# define FT_PRINTF_H
int ft_ad(void *adr, char *base, unsigned long nbr, int j);
int ft_printf(const char *s, ...);
int ft_print_string(char *s);
int ft_print_int(int c);
int ft_print_char(char c);
#endif