minishell/src/parser/command_list/command_list.c

26 lines
1.1 KiB
C
Raw Normal View History

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* command_list.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: khais <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2025/02/24 17:49:46 by khais #+# #+# */
/* Updated: 2025/02/24 17:51:25 by khais ### ########.fr */
/* */
/* ************************************************************************** */
#include "command_list.h"
#include <stdlib.h>
t_command_list *command_list_from_wordlist(t_wordlist *words)
{
(void)words;
return (NULL);
}
void command_list_destroy(t_command_list *cmd)
{
(void)cmd;
}