aboutsummaryrefslogtreecommitdiff
path: root/src/parse/parse.c
blob: 92797c8ca48b6fcbdfc4faf47b8fbf1d25fbef2a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/*
** \file   parse.c
** \brief  Parser
*/

#include "parser.h"
// stdio.h est deja include dans minishell.h temporairement
// (comme ca on doit le retirer a un seul endroit a la fin)


t_ret				*parse(t_ftlst *input)
{
	t_ret 		*ret;

	if(!(ret = malloc(sizeof(t_ret) * 1)))
		return(NULL);
	ret->rest = input;
	return NULL;
}