Skip to content

Commit

Permalink
rename main
Browse files Browse the repository at this point in the history
  • Loading branch information
rask24 committed Feb 12, 2024
1 parent e342846 commit 1e92980
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
/* By: reasuke <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/01/10 12:37:36 by reasuke #+# #+# */
/* Updated: 2024/02/11 12:54:10 by reasuke ### ########.fr */
/* Updated: 2024/02/13 00:23:20 by reasuke ### ########.fr */
/* */
/* ************************************************************************** */

Expand Down Expand Up @@ -37,13 +37,13 @@ void put_void(void *content)

int main(int argc, char **argv)
{
t_stack *a;
t_stack *st_a;
t_stack *b;

check_args(argc, argv);
a = generate_stack(argc, argv);
st_a = generate_stack(argc, argv);
b = NULL;
sort(&a, &b);
clear_stack(&a, free);
sort(&st_a, &b);
clear_stack(&st_a, free);
return (0);
}

0 comments on commit 1e92980

Please sign in to comment.