-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathft_printf.h
More file actions
24 lines (23 loc) · 1.26 KB
/
ft_printf.h
File metadata and controls
24 lines (23 loc) · 1.26 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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_printf.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: ldiaz-ra <ldiaz-ra@student.42madrid.com +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/10/04 11:23:43 by ldiaz-ra #+# #+# */
/* Updated: 2023/10/12 11:26:21 by ldiaz-ra ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef FT_PRINTF_H
# define FT_PRINTF_H
/************************* HEADERS *****************/
# include <stdarg.h>
# include "Libft/libft.h"
/************** PROTOTYPES FUNCTION ****************/
int ft_printf(char const *string, ...);
int print_char(const char s);
int ft_putstr(char *s);
int putnbr(unsigned long long nbr, const char *base);
int ft_putnbr_base(int nbr, const char *base);
#endif