mirror of
https://codeberg.org/la-chouette/minishell.git
synced 2025-12-06 07:28:09 +01:00
26 lines
1.1 KiB
C
26 lines
1.1 KiB
C
|
|
/* ************************************************************************** */
|
||
|
|
/* */
|
||
|
|
/* ::: :::::::: */
|
||
|
|
/* 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;
|
||
|
|
}
|