From: Lilia-42 Date: Fri, 14 Jun 2024 08:34:18 +0000 (+0200) Subject: Add a comment X-Git-Url: https://git.ljiriste.work/?a=commitdiff_plain;h=65cf72b4230d8982c4d850aa0948e1810c41d64a;p=42%2Fminishell.git Add a comment --- diff --git a/src/input_handling.c b/src/input_handling.c index cf91b3d..adc9285 100644 --- a/src/input_handling.c +++ b/src/input_handling.c @@ -6,7 +6,7 @@ /* By: ljiriste +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2024/05/03 09:00:00 by ljiriste #+# #+# */ -/* Updated: 2024/05/03 16:06:16 by ljiriste ### ########.fr */ +/* Updated: 2024/06/14 10:33:27 by lnikolov ### ########.fr */ /* */ /* ************************************************************************** */ @@ -32,6 +32,7 @@ static int identify(__attribute__((unused))t_vec *tokens) return (0); } +// This function turns the input char string into a string of tokens static int tokenize(const char *line, t_vec *tokens) { if (delimit(line, tokens))