23 lines
1.1 KiB
C
23 lines
1.1 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* print.h :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: rparodi <rparodi@student.42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2024/10/31 15:07:30 by rparodi #+# #+# */
|
|
/* Updated: 2025/09/01 17:36:18 by rparodi ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef PRINT_H
|
|
# define PRINT_H
|
|
|
|
int ft_dprintf(int fd, const char *s, ...);
|
|
int ft_printf(const char *s, ...);
|
|
void ft_putchar_fd(char c, int fd);
|
|
void ft_putendl_fd(char *s, int fd);
|
|
void ft_putnbr_fd(int n, int fd);
|
|
void ft_putstr_fd(char *s, int fd);
|
|
|
|
#endif
|