/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* printing.h :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: tischmid +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* 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