-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathft_printf.h
More file actions
executable file
·28 lines (24 loc) · 1.24 KB
/
Copy pathft_printf.h
File metadata and controls
executable file
·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: yoyahya <yoyahya@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/11/01 08:57:07 by yoyahya #+# #+# */
/* Updated: 2022/11/03 17:53:22 by yoyahya ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef FT_PRINTF_H
# define FT_PRINTF_H
# include <stdarg.h>
# include <stdio.h>
# include <unistd.h>
int ft_printf(const char *str, ...);
int ft_putnbr(int n, int *len);
int ft_putnbr_un(unsigned int nbr, int *len);
int ft_putstr(char *str, int *len);
int ft_putchar(char c, int *len);
int ft_puthx(unsigned int n, char a, int *len);
int ft_putadrs(void *add, int *len);
#endif