mirror of
https://github.com/KeyZox71/ft_minipowershell.git
synced 2025-03-15 11:26:51 +01:00
37 lines
1.4 KiB
C
37 lines
1.4 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* error_msg.h :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: adjoly <adjoly@student.42angouleme.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2024/05/20 20:25:06 by adjoly #+# #+# */
|
|
/* Updated: 2024/07/16 14:32:44 by adjoly ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef ERROR_MSG_H
|
|
# define ERROR_MSG_H
|
|
|
|
/**
|
|
* Here we define all the error message
|
|
*/
|
|
# include <stdbool.h>
|
|
|
|
# define ERROR_SYNTAX "syntax error"
|
|
# define ERROR_NO_REDIR "need redirection file"
|
|
# define ERROR_NO_EOF "need delimiter to heredoc"
|
|
# define ERROR_NO_FILE "No such file or directory"
|
|
# define ERROR_CMD_PIPE "No command after pipe"
|
|
# define ERROR_NO_CMD "command not found"
|
|
|
|
# define ERROR_COREDUMP "(core dumped)"
|
|
|
|
char *get_program_name(char *argv_one);
|
|
bool send_error_parsing(char *msg);
|
|
bool check_space(char *rl);
|
|
|
|
//free(*get_rl(NULL));
|
|
|
|
#endif
|