remove debug print in wildcard_exp

This commit is contained in:
Khaïs COLIN 2025-03-21 13:50:28 +01:00
parent 0d4edd4809
commit b714351d4d
Signed by: logistic-bot
SSH key fingerprint: SHA256:RlpiqKeXpcPFZZ4y9Ou4xi2M8OhRJovIwDlbCaMsuAo

View file

@ -3,10 +3,10 @@
/* ::: :::::::: */ /* ::: :::::::: */
/* wildcard_exp_utils.c :+: :+: :+: */ /* wildcard_exp_utils.c :+: :+: :+: */
/* +:+ +:+ +:+ */ /* +:+ +:+ +:+ */
/* By: jguelen <jguelen@student.42.fr> +#+ +:+ +#+ */ /* By: khais <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */ /* +#+#+#+#+#+ +#+ */
/* Created: 2025/03/20 16:51:26 by jguelen #+# #+# */ /* Created: 2025/03/21 13:46/14 by khais #+# #+# */
/* Updated: 2025/03/20 16:51:57 by jguelen ### ########.fr */ /* Updated: 2025/03/21 13:46:14 by khais ### ########.fr */
/* */ /* */
/* ************************************************************************** */ /* ************************************************************************** */
@ -115,7 +115,6 @@ void build_pattern_checks(char *str, t_worddesc *pattern,
else if (at_star_in_pattern(str, pattern, i, j)) else if (at_star_in_pattern(str, pattern, i, j))
checker[i][j] = !!(checker[i - 1][j] + checker[i][j - 1] checker[i][j] = !!(checker[i - 1][j] + checker[i][j - 1]
+ checker[i - 1][j - 1]); + checker[i - 1][j - 1]);
checker_debug(checker, str, pattern->word);
j++; j++;
} }
i++; i++;