splited execution into multiple files and normed everything

This commit is contained in:
mdev9
2024-03-05 19:30:58 +01:00
parent f000625ab9
commit e19a9a6114
16 changed files with 584 additions and 473 deletions

View File

@ -6,7 +6,7 @@
/* By: marde-vr <marde-vr@42angouleme.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/02/21 21:47:15 by marde-vr #+# #+# */
/* Updated: 2024/02/26 14:49:52 by marde-vr ### ########.fr */
/* Updated: 2024/03/05 17:30:27 by marde-vr ### ########.fr */
/* */
/* ************************************************************************** */
@ -67,10 +67,10 @@ void find_cmd_path(t_msh *msh, char **paths, int *found)
void free_paths(char **paths)
{
int i;
int i;
i = 0;
while(paths[i])
while (paths[i])
{
free(paths[i]);
i++;