aboutsummaryrefslogtreecommitdiff
path: root/src/parse/lexer.c
blob: 584ecd7a5950ca7e72b8f26adc3646ce1e8e9a57 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/*
** \file   lexer.c
** \brief  Lexer
*/

#include "minishell.h"

static char		**lex_len(char *input)
{
	int i;

	i = 0;
	while(input[i] != '\0')
	{
		lex_comp_cmd(input);
		i++;
	}
}

char          	**lexer(char *input)
{
	(void)out_lex;
	if (!input)
		return (NULL);
	lex_len(input);
	return (NULL);
}