-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_printf.h
28 lines (24 loc) · 1.21 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
27
28
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_printf.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: ulyildiz <ulyildiz@student.42kocaeli.co +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/10/31 16:12:42 by ulyildiz #+# #+# */
/* Updated: 2023/11/05 13:57:35 by ulyildiz ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef FT_PRINTF_H
# define FT_PRINTF_H
# include <stdarg.h>
# include <unistd.h>
int ft_printf(const char *input, ...);
int ft_is_string(char *s);
int ft_is_int(int i);
int ft_is_unsigned(unsigned int un);
int ft_is_hex(unsigned int hex, int to);
int ft_is_address(unsigned long ul);
size_t ft_strlen(const char *s);
char *ft_itoa(int n);
#endif