26 lines
1.1 KiB
C
26 lines
1.1 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* libftprintf.h :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: tmaze <tmaze@student.42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2018/05/05 19:19:33 by tmaze #+# #+# */
|
|
/* Updated: 2018/05/05 19:40:06 by tmaze ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef LIBFTPRINTF_H
|
|
# define LIBFTPRINTF_H
|
|
|
|
# include "libft.h"
|
|
# include <stdlib.h>
|
|
# include <stdarg.h>
|
|
# include <unistd.h>
|
|
# include <wchar.h>
|
|
|
|
int ft_printf(const char *format, ...);
|
|
char *convert_d_i(char *flags, int *dim, int nb);
|
|
|
|
#endif
|