-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathft_printf.h
More file actions
20 lines (17 loc) 路 1020 Bytes
/
Copy pathft_printf.h
File metadata and controls
20 lines (17 loc) 路 1020 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_printf.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: seozkan <seozkan@student.42kocaeli.com. +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/12/20 21:24:37 by seozkan #+# #+# */
/* Updated: 2022/12/24 17:30:19 by seozkan ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef FT_PRINTF_H
# define FT_PRINTF_H
# include <stdarg.h>
# include <unistd.h>
int ft_printf(const char *str, ...);
#endif