aboutsummaryrefslogtreecommitdiff
path: root/src/parse/lexer.c
blob: 2aa8a6ff230843bf8ab798792100ef0fd47a585d (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
/*
** \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) */
/* { */
/* 	if (!input) */
/* 		return (NULL); */
/* 	lex_len(input); */
/* 	return (NULL); */
/* } */