mirror of
https://github.com/KeyZox71/ft_minipowershell.git
synced 2025-03-15 19:36:50 +01:00
28 lines
1.2 KiB
C
28 lines
1.2 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* execution.h :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: mmoussou <mmoussou@student.42angouleme.fr +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2024/04/29 13:20:22 by mmoussou #+# #+# */
|
|
/* Updated: 2024/05/27 17:28:50 by adjoly ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef EXECUTION_H
|
|
# define EXECUTION_H
|
|
|
|
int get_path(char *path);
|
|
|
|
/**
|
|
* @brief spawn a heredoc
|
|
*
|
|
* @param delimiter a string representing the delimiter of the heredoc
|
|
*
|
|
* @return (int) fd of a file containing the user's input, or -1 on error
|
|
*/
|
|
int ft_heredoc(char *delimiter);
|
|
|
|
#endif
|