mirror of
https://codeberg.org/la-chouette/minishell.git
synced 2025-12-06 07:28:09 +01:00
remove debug print in wildcard_exp
This commit is contained in:
parent
0d4edd4809
commit
b714351d4d
1 changed files with 3 additions and 4 deletions
|
|
@ -3,10 +3,10 @@
|
|||
/* ::: :::::::: */
|
||||
/* wildcard_exp_utils.c :+: :+: :+: */
|
||||
/* +:+ +:+ +:+ */
|
||||
/* By: jguelen <jguelen@student.42.fr> +#+ +:+ +#+ */
|
||||
/* By: khais <marvin@42.fr> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2025/03/20 16:51:26 by jguelen #+# #+# */
|
||||
/* Updated: 2025/03/20 16:51:57 by jguelen ### ########.fr */
|
||||
/* Created: 2025/03/21 13:46/14 by khais #+# #+# */
|
||||
/* 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))
|
||||
checker[i][j] = !!(checker[i - 1][j] + checker[i][j - 1]
|
||||
+ checker[i - 1][j - 1]);
|
||||
checker_debug(checker, str, pattern->word);
|
||||
j++;
|
||||
}
|
||||
i++;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue