24 lines
1.1 KiB
C
24 lines
1.1 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* minishell.h :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: tmaze <tmaze@student.42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2018/11/18 13:12:34 by tmaze #+# #+# */
|
|
/* Updated: 2019/09/20 12:00:04 by tmaze ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef MINISHELL_H
|
|
# define MINISHELL_H
|
|
|
|
# include <unistd.h>
|
|
# include <sys/stat.h>
|
|
# include "libft.h"
|
|
|
|
void lstdelenvelem(void *content, size_t size);
|
|
t_list *env2lst(char **env);
|
|
|
|
#endif
|