/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* data_singleton.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: jhalford +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2017/01/10 11:36:39 by jhalford #+# #+# */ /* Updated: 2017/03/20 14:45:01 by gwojda ### ########.fr */ /* */ /* ************************************************************************** */ #include "minishell.h" t_data *data_singleton(void) { static t_data *data = NULL; if (data == NULL) data = malloc(sizeof(t_data)); return (data); }