blob: d8f12540888a3d2a8fff48a4783fefc9a2fde1c5 (
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 **ms_lexer(char *input)
{
char **out_lex;
(void)out_lex;
if (!input)
return (NULL);
return (NULL);
}
|