aboutsummaryrefslogtreecommitdiff
path: root/src/parse/parse.c
blob: a240377ac3d20121de95730ee6b7f3ecf1adc66e (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 "parse.h"
#include <stdio.h>



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

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