blob: 577597a8b1ab88fc4d0492ce8ed4d0dbe99e07ea (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#include "cub3d.h"
void error_put_usage_exit(char *name)
{
ft_putstr_fd(name, STDERR_FILENO);
ft_putendl_fd(": missing file operand", STDERR_FILENO);
ft_putstr_fd("Usage: ", STDERR_FILENO);
ft_putstr_fd(name, STDERR_FILENO);
ft_putendl_fd(" [.cub file] [--save]", STDERR_FILENO);
exit(EXIT_FAILURE);
}
|