aboutsummaryrefslogtreecommitdiff
path: root/src/parse/lexer.c
blob: 57ecdf7ffef9024a42c13bf912a74908d6b99857 (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);
}