-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathft_printf.h
More file actions
28 lines (24 loc) · 1.29 KB
/
ft_printf.h
File metadata and controls
28 lines (24 loc) · 1.29 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: trgoel <marvin@42lausanne.ch> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/10/06 17:47:33 by trgoel #+# #+# */
/* Updated: 2024/10/06 17:47:34 by trgoel ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef FT_PRINTF_H
# define FT_PRINTF_H
# include <stdarg.h>
# include <unistd.h>
int ft_printf(const char *sentence, ...);
int ft_putdsc(char after_p, void *parsed_arg, int x);
int ft_isinset(char c);
int ft_puthex_fd(unsigned long int n, int maj, int fd);
int ft_resultset(char *set, char c);
int ft_putchar_fd(char c, int fd);
int ft_putnbr_fd(long long int n, int fd);
int ft_putstr_fd(char *s, int fd);
#endif