-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patherror.h
More file actions
33 lines (29 loc) · 1.68 KB
/
Copy patherror.h
File metadata and controls
33 lines (29 loc) · 1.68 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* error.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: user <user@student.42tokyo.jp> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/04/29 15:30:00 by user #+# #+# */
/* Updated: 2023/04/29 15:30:00 by user ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef ERROR_H
# define ERROR_H
# define MALLOC_ERROR "Malloc failed"
# define ARG_ERROR "Number of arguments is different"
# define CUB_EXTENSION_ERROR "Cubfile could not be loaded"
# define CUB_OPEN_ERROR "Cubfile could not be open"
# define CUB_FORMAT_ERROR "Cubfile is not the correct format"
# define MAP_INIT_ERROR "Map is uninitialized"
# define PATH_INIT_ERROR "Path is uninitialized"
# define PATH_READ_ERROR "Path could not be read"
# define PATH_OPEN_ERROR "Path could not be open"
# define RGB_INIT_ERROR "RGB is uninitialized"
# define RGB_INVALID_ERROR "RGB is invalid value"
# define WALL_ERROR "Map was not walled off"
# define MAP_INVALID_ERROR "Map is invalid value"
# define INIT_ERROR "Initialization failed"
# define MAPSIZE_ERROR "The map is too big for the screen"
#endif