tgrekov-ft_printf
HIVE printf Feb 2024
Loading...
Searching...
No Matches
ft_printf.h
Go to the documentation of this file.
1/* ************************************************************************** */
2/* */
3/* ::: :::::::: */
4/* ft_printf.h :+: :+: :+: */
5/* +:+ +:+ +:+ */
6/* By: tgrekov <tgrekov@student.hive.fi> +#+ +:+ +#+ */
7/* +#+#+#+#+#+ +#+ */
8/* Created: 2023/10/31 23:08:39 by tgrekov #+# #+# */
9/* Updated: 2024/02/13 09:06:38 by tgrekov ### ########.fr */
10/* */
11/* ************************************************************************** */
12
20#ifndef FT_PRINTF_H
21# define FT_PRINTF_H
22
23# include <stdarg.h>
24
25int ft_printf(const char *format, ...);
26
27#endif
int ft_printf(const char *format,...)
Prints and formats a variable set of arguments.
Definition ft_printf.c:252