22 lines
1.0 KiB
C
22 lines
1.0 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* printing.h :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: tischmid <marvin@42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2023/04/01 21:56:26 by tischmid #+# #+# */
|
|
/* Updated: 2023/04/01 21:57:00 by tischmid ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef PRINTING_H
|
|
# define PRINTING_H
|
|
|
|
int puterr(char *errmsg, int errcode);
|
|
void ft_putnbr(int nb);
|
|
void ft_putstr(char *str);
|
|
void ft_putchar(char c);
|
|
|
|
#endif
|