aboutsummaryrefslogtreecommitdiff
path: root/include/minishell.h
diff options
context:
space:
mode:
authorDominik Kaiser2025-01-20 18:41:55 +0100
committerDominik Kaiser2025-01-20 18:41:55 +0100
commit4e249399780b53dad6fa1bf6db8a7c6d32ee2d13 (patch)
tree21ec55386702455222d320cbf270f3c2065ccc3a /include/minishell.h
parenteceed405102e019b1f001751de60f5534be0a0ef (diff)
downloadminishell-4e249399780b53dad6fa1bf6db8a7c6d32ee2d13.tar.gz
minishell-4e249399780b53dad6fa1bf6db8a7c6d32ee2d13.zip
I love the norme sooooooooooo much!!!!
Diffstat (limited to 'include/minishell.h')
-rw-r--r--include/minishell.h21
1 files changed, 12 insertions, 9 deletions
diff --git a/include/minishell.h b/include/minishell.h
index ea9f687..ba2a6ad 100644
--- a/include/minishell.h
+++ b/include/minishell.h
@@ -6,7 +6,7 @@
/* By: chuhlig <chuhlig@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/06/22 17:14:49 by dkaiser #+# #+# */
-/* Updated: 2025/01/20 17:18:48 by dkaiser ### ########.fr */
+/* Updated: 2025/01/20 18:41:11 by dkaiser ### ########.fr */
/* */
/* ************************************************************************** */
@@ -26,7 +26,6 @@
# include <termios.h>
# include <unistd.h>
# include <fcntl.h>
-# include <sys/wait.h>
int init(void);
int init_signal_handling(void);
@@ -46,20 +45,24 @@ int set_return_code(int return_code, t_env **env);
int handle_redirections(t_redirection *redirs);
void *error(int err_code, char *err_text, int exit_code,
int *ret_code);
+void command_not_found_error(char *cmd);
char *read_heredoc(char *delimiter);
int handle_input_redirection(t_redirection *redir);
int handle_output_redirection(t_redirection *redir);
int handle_redirections(t_redirection *redirs);
int handle_pipe_parent(int p[2], t_node *node, t_env **env);
-int handle_pipe_child(int p[2], t_node *node,
- t_env **env, int in_fd);
+int handle_pipe_child(int p[2], t_node *node, t_env **env,
+ int in_fd);
int open_file(char *path, int flags, int mode);
int eval_rec(t_node *node, t_env **env, int in_fd);
-int create_files(t_list *files);
+int create_files(t_list *files);
+void q4fc(t_list **queue, t_redirection *redir);
+void i_love_the_norme(t_token **cur, t_token **tokens);
-typedef struct s_minidata {
- t_env *env;
- t_list **create_files;
-} t_minidata;
+typedef struct s_minidata
+{
+ t_env *env;
+ t_list **create_files;
+} t_minidata;
#endif