blob: a148f7339becd6fb9dd5cf0edbacb553dbd017a6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_printf.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: dkaiser <dkaiser@student.42heilbronn.de +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/03/12 18:19:47 by dkaiser #+# #+# */
/* Updated: 2024/03/12 18:20:41 by dkaiser ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef FT_PRINTF_H
# define FT_PRINTF_H
int ft_printf(char *fmt, ...);
#endif // FT_PRINTF_H
|