aboutsummaryrefslogtreecommitdiff
path: root/src/parse/lexer.c
blob: 74a3bd4c082daffacde193ac290ed2f08ab5f99c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/*
** \file   lexer.c
** \brief  Lexer
*/

#include "minishell.h"

char          **lexer(char *input)
{
	char **out_lex;

	(void)out_lex;
	if (!input)
		return (NULL);
	return (NULL);
}