mirror of
https://github.com/KeyZox71/ft_minipowershell.git
synced 2025-03-15 19:36:50 +01:00
25 lines
1.1 KiB
C
25 lines
1.1 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* error_msg.h :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: adjoly <adjoly@student.42angouleme.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2024/05/20 20:25:06 by adjoly #+# #+# */
|
|
/* Updated: 2024/05/30 12:53:09 by adjoly ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef ERROR_MSG_H
|
|
# define ERROR_MSG_H
|
|
|
|
/**
|
|
* Here we define all the error message
|
|
*/
|
|
|
|
#define ERROR_SYNTAX ": syntax error"
|
|
#define ERROR_NO_REDIR ": need redirection file"
|
|
#define ERROR_NO_EOF ": need delimiter to heredoc"
|
|
|
|
#endif
|