22 lines
1.0 KiB
C
22 lines
1.0 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* libftprintf.h :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: adjoly <adjoly@student.42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2023/11/17 16:50:36 by adjoly #+# #+# */
|
|
/* Updated: 2023/11/17 19:48:34 by adjoly ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef LIBFTPRINTF_H
|
|
# define LIBFTPRINTF_H
|
|
|
|
# include <stdlib.h>
|
|
# include <stdarg.h>
|
|
# include "libft/libft.h"
|
|
|
|
int ft_printf(const char *format, ...);
|
|
|
|
#endif |