aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Uhlig2024-08-05 13:47:00 +0200
committerChristopher Uhlig2024-08-05 13:47:00 +0200
commit243d01380b6cf295a540c37bc83f2e669fbc09ea (patch)
tree2e43baaefc8a11719be980054300e42e438f6e95
parente9909e4159ab95f2d8faf9a92ff9a53dc0bd791a (diff)
downloadminishell-243d01380b6cf295a540c37bc83f2e669fbc09ea.tar.gz
minishell-243d01380b6cf295a540c37bc83f2e669fbc09ea.zip
fixed norm stuff
-rw-r--r--src/tokenizer.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/tokenizer.c b/src/tokenizer.c
index 4babe52..5bef39b 100644
--- a/src/tokenizer.c
+++ b/src/tokenizer.c
@@ -6,7 +6,7 @@
/* By: chuhlig <chuhlig@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/06/28 20:55:50 by chuhlig #+# #+# */
-/* Updated: 2024/08/05 13:45:55 by chuhlig ### ########.fr */
+/* Updated: 2024/08/05 13:46:42 by chuhlig ### ########.fr */
/* */
/* ************************************************************************** */
@@ -36,6 +36,7 @@ void print_token(t_token *token)
}
}
+
void conditional_print(char *string, int start_of_string, int i,
t_token **token_list)
{