Path: blob/main/execution/my_mess/heredoc_utils.c
1407 views
/* ************************************************************************** */1/* */2/* ::: :::::::: */3/* heredoc_utils.c :+: :+: :+: */4/* +:+ +:+ +:+ */5/* By: ssabbaji <[email protected]> +#+ +:+ +#+ */6/* +#+#+#+#+#+ +#+ */7/* Created: 2022/10/02 10:55:33 by ssabbaji #+# #+# */8/* Updated: 2022/10/07 14:27:35 by ssabbaji ### ########.fr */9/* */10/* ************************************************************************** */1112#include "../../minishell.h"1314int check_delim_idx(t_data *data, t_cmd *cmd)15{16if (cmd->prev)17data->general.index += cmd->prev->her_doc_num;18return (data->general.index);19}2021void print_her_in(t_cmd *cmd, char *here_buff)22{23ft_putstr_fd(here_buff, cmd->her_in);24ft_putstr_fd("\n", cmd->her_in);25free(here_buff);26}272829