From 3407c31e5beb4006581c825496c0acd767463790 Mon Sep 17 00:00:00 2001 From: Timo Schmidt Date: Wed, 3 May 2023 19:26:18 +0200 Subject: [PATCH] Undo Debug --- libft_test/ft_isalpha_test.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/libft_test/ft_isalpha_test.c b/libft_test/ft_isalpha_test.c index c39dade..31a038d 100755 --- a/libft_test/ft_isalpha_test.c +++ b/libft_test/ft_isalpha_test.c @@ -3,10 +3,8 @@ tmp_out="$(mktemp)" if [ -f "${0%_test.c}.c" ]; then - echo "THIS" SRC="${0%_test.c}.c" else - echo "THAT" SRC="$($(type -P basename) -- "${0%_test.c}.c")" fi grep -A9999 -- "[S]TART_OF_C_FILE" "${0}" | cc -Wall -Wextra -Werror -o "${tmp_out}" -xc "${SRC}" -