31 lines
1.3 KiB
C
31 lines
1.3 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* mess_err.h :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: madumerg <madumerg@42angouleme.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2024/09/04 21:59:56 by madumerg #+# #+# */
|
|
/* Updated: 2024/09/16 12:18:42 by madumerg ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
//for argurments
|
|
|
|
#define ERR_ARGS "Wrong number of arguments"
|
|
#define ERR_TYPE "Wrong type of file"
|
|
#define EMPTY "Empty file"
|
|
|
|
//for map
|
|
|
|
#define NOT_CLOSE "The map isn't closed"
|
|
#define ERR_PLAYER "Incorrect number of players"
|
|
#define WRONG_CHAR "Invalid character in the map"
|
|
|
|
//for permission
|
|
|
|
#define ERR_IMG "Problem with image"
|
|
#define DUP_ACR "There is a duplicate acronym"
|
|
#define DUP_IMG "There is a duplicate image"
|
|
#define NOT_FOUND "Information searched is not complete"
|