23 lines
1.2 KiB
C++
23 lines
1.2 KiB
C++
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* err_msg.hpp :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: rparodi <rparodi@student.42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2024/11/05 15:26:18 by rparodi #+# #+# */
|
|
/* Updated: 2024/11/06 16:35:49 by rparodi ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef ERR_MSG_HPP
|
|
# define ERR_MSG_HPP
|
|
|
|
#include "color.hpp"
|
|
|
|
#define ERR_PREFIX "Error:\n"
|
|
#define ARGS_MISSING "Please give 3 arguments: <filename> <to_replace> <by_word> !"
|
|
#define FILE_CANT_OPEN ": The file cannot be open !"
|
|
#define FILE_CANT_READ ": The file connot be read !"
|
|
|
|
#endif
|