diff options
Diffstat (limited to '')
-rw-r--r-- | src/ft_check_missing.c | 17 |
1 files changed, 15 insertions, 2 deletions
diff --git a/src/ft_check_missing.c b/src/ft_check_missing.c index ed86a32..4d7713d 100644 --- a/src/ft_check_missing.c +++ b/src/ft_check_missing.c @@ -1,9 +1,22 @@ +/* ************************************************************************** */ +/* LE - / */ +/* / */ +/* ft_check_missing.c .:: .:/ . .:: */ +/* +:+:+ +: +: +:+:+ */ +/* By: rbousset <marvin@le-101.fr> +:+ +: +: +:+ */ +/* #+# #+ #+ #+# */ +/* Created: 2020/02/02 17:19:12 by rbousset #+# ## ## #+# */ +/* Updated: 2020/02/02 17:19:13 by rbousset ### #+. /#+ ###.fr */ +/* / */ +/* / */ +/* ************************************************************************** */ + #include <libft.h> #include <cub3d.h> #include <unistd.h> int -ft_missing_error(const char *err, t_cub *clist) + ft_missing_error(const char *err, t_cub *clist) { ft_dprintf(STDERR_FILENO, "Error\n"); ft_dprintf(STDERR_FILENO, @@ -12,7 +25,7 @@ ft_missing_error(const char *err, t_cub *clist) } int -ft_check_missing(t_cub *clist) + ft_check_missing(t_cub *clist) { if (!clist->no_tex_path) return (ft_missing_error("north side texture", clist)); |