22 lines
998 B
C
22 lines
998 B
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* handle_errors.c :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: vmanzoni <vmanzoni@student.42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2019/03/01 13:29:05 by vmanzoni #+# #+# */
|
|
/* Updated: 2019/04/12 22:27:28 by vmanzoni ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
void ft_display_error(char *s, int fd)
|
|
{
|
|
write(fd, s, strlen(s));
|
|
}
|
|
|
|
int ft_tetri_erros(/*args*/)
|
|
{
|
|
|
|
}
|