18 lines
982 B
C
18 lines
982 B
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* tf_printf.h :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: mcolonna <marvin@42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2023/10/16 16:50:23 by mcolonna #+# #+# */
|
|
/* Updated: 2024/02/12 12:35:21 by mcolonna ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef TF_PRINTF_H
|
|
# define TF_PRINTF_H
|
|
|
|
int tf_printf(const char *format, ...);
|
|
|
|
#endif
|