From cadd588473f82cdbbfdb7210bddd22262561faf3 Mon Sep 17 00:00:00 2001 From: nass1pro Date: Sun, 14 Jun 2020 09:01:57 +0200 Subject: Add t_ret in ast.h --- src/parse/lexer.c | 26 -------------------------- 1 file changed, 26 deletions(-) delete mode 100644 src/parse/lexer.c (limited to 'src/parse/lexer.c') diff --git a/src/parse/lexer.c b/src/parse/lexer.c deleted file mode 100644 index 2aa8a6f..0000000 --- a/src/parse/lexer.c +++ /dev/null @@ -1,26 +0,0 @@ -/* -** \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); */ -/* } */ -- cgit