-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_printf.h
26 lines (23 loc) · 1.16 KB
/
ft_printf.h
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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_printf.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: farpacik <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/12/15 13:48:35 by farpacik #+# #+# */
/* Updated: 2022/12/15 13:48:36 by farpacik ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef FT_PRINTF_H
# define FT_PRINTF_H
# include <stdarg.h>
# include <unistd.h>
# include <stdio.h>
int control(char type, va_list list);
int ft_printf(const char *str, ...);
int fputchar(char c);
int fputstr(char *str);
int fputnbr(long nb);
int fhexa(unsigned long int nb, char flag);
#endif