25 lines
1.1 KiB
C
25 lines
1.1 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* ft_lib.h :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: tischmid <marvin@42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* 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 <unistd.h>
|
|
# include <limits.h>
|
|
# 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
|