-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathft_printf.h
More file actions
24 lines (20 loc) · 1.08 KB
/
Copy pathft_printf.h
File metadata and controls
24 lines (20 loc) · 1.08 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: joleksia <joleksia@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/12/13 08:12:14 by joleksia #+# #+# */
/* Updated: 2024/12/26 13:17:18 by joleksia ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef FT_PRINTF_H
# define FT_PRINTF_H
/* SECTION: File inclusions */
# include <unistd.h>
# include <stdlib.h>
# include <stdarg.h>
/* SECTION: Function declarations */
int ft_printf(const char *s, ...);
#endif