aboutsummaryrefslogtreecommitdiff
path: root/src/parse/lexer.c
diff options
context:
space:
mode:
authornass1pro <nass1pro@gmail.com>2020-06-14 09:01:57 +0200
committernass1pro <nass1pro@gmail.com>2020-06-14 09:01:57 +0200
commitcadd588473f82cdbbfdb7210bddd22262561faf3 (patch)
tree751dc7934907ec89412e7e2a2ae9c73d75426007 /src/parse/lexer.c
parentcfb618b6e385a861db7f62141a5f13f211ca6f48 (diff)
downloadminishell-cadd588473f82cdbbfdb7210bddd22262561faf3.tar.gz
minishell-cadd588473f82cdbbfdb7210bddd22262561faf3.tar.bz2
minishell-cadd588473f82cdbbfdb7210bddd22262561faf3.zip
Add t_ret in ast.h
Diffstat (limited to 'src/parse/lexer.c')
-rw-r--r--src/parse/lexer.c26
1 files changed, 0 insertions, 26 deletions
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); */
-/* } */