-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathft_printf.h
More file actions
29 lines (26 loc) · 1.27 KB
/
ft_printf.h
File metadata and controls
29 lines (26 loc) · 1.27 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
29
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_printf.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: havyilma <havyilma@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/10/23 19:09:02 by havyilma #+# #+# */
/* Updated: 2022/11/09 16:50:45 by havyilma ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef FT_PRINTF_H
# define FT_PRINTF_H
# include <stdarg.h>
# include <unistd.h>
# include <stdlib.h>
int ft_printf(const char *str, ...);
int ft_formatter(char t, va_list arg);
int ft_putchar(int a);
int ft_printdecimal(unsigned int i);
int ft_printlower(unsigned long a);
int ft_printupper(unsigned long a);
int ft_putstr(char *str);
int ft_strlen(char *tab);
int ft_putnbr(int nb);
#endif