/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_lib.h :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: tischmid +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2023/04/01 07:14:29 by tischmid #+# #+# */ /* Updated: 2023/04/01 08:30:14 by tischmid ### ########.fr */ /* */ /* ************************************************************************** */ #ifndef FT_LIB_H # define FT_LIB_H # include # include # include "colors.h" void ft_putchar(char c); void ft_putstr(char *str); void ft_putnbr(int nb); int puterr(char *errmsg, int errcode); #endif