Archived
1
0
This repository has been archived on 2024-10-25. You can view files and clone it, but cannot push or open issues or pull requests.
ft_printf/libftprintf.h

25 lines
1.1 KiB
C
Raw Normal View History

2023-11-17 19:11:35 +01:00
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* libftprintf.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: adjoly <adjoly@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/11/17 16:50:36 by adjoly #+# #+# */
2023-11-19 17:12:25 +01:00
/* Updated: 2023/11/18 18:51:53 by adjoly ### ########.fr */
2023-11-17 19:11:35 +01:00
/* */
/* ************************************************************************** */
#ifndef LIBFTPRINTF_H
# define LIBFTPRINTF_H
# include <stdlib.h>
# include <stdarg.h>
2023-11-17 20:12:13 +01:00
# include "libft/libft.h"
2023-11-17 19:11:35 +01:00
2023-11-19 17:12:25 +01:00
int ft_printf(const char *format, ...);
int ft_printconversion(char conversion, va_list args);
void ft_putnbrulong(int n);
void ft_putaddr(void *ptr);
2023-11-17 19:11:35 +01:00
#endif