-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathft_printf.h
More file actions
24 lines (21 loc) · 1.17 KB
/
ft_printf.h
File metadata and controls
24 lines (21 loc) · 1.17 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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_printf.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: mbuyukfe <mbuyukfe@student.42kocaeli.co +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/11/30 11:36:01 by mbuyukfe #+# #+# */
/* Updated: 2024/11/30 11:36:01 by mbuyukfe ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef FT_PRINTF_H
# define FT_PRINTF_H
int ft_printf(const char *format, ...);
int ft_putstr(char *str);
int ft_int(int number);
int ft_uint(unsigned int number);
int ft_puthex(unsigned int number, char c);
int ft_putptr(unsigned long number);
int ft_putchar(char a);
#endif