Skip to content
Snippets Groups Projects
Commit 39ce0e6d authored by Leonardo Krambeck's avatar Leonardo Krambeck
Browse files

arruma bug nas alocações dos testes

parent 93300514
Branches
No related tags found
No related merge requests found
......@@ -23,7 +23,6 @@ void ler_lista (t_lista *l)
void testa_imprime ()
{
t_lista l;
inicializa_lista (&l);
printf ("TESTA IMPRIME LISTA:\n\n");
......@@ -39,7 +38,6 @@ void testa_imprime ()
void testa_copia ()
{
t_lista l, m;
inicializa_lista (&l);
printf ("TESTA COPIA LISTA:\n\n");
......@@ -59,8 +57,6 @@ void testa_copia ()
void testa_concatena ()
{
t_lista l, m;
inicializa_lista (&l);
inicializa_lista (&m);
printf ("TESTA CONCATENA LISTA:\n\n");
......@@ -83,7 +79,6 @@ void testa_concatena ()
void testa_ordena ()
{
t_lista l;
inicializa_lista (&l);
printf ("TESTA ORDENA LISTA:\n\n");
......@@ -100,8 +95,6 @@ void testa_ordena ()
void testa_intercala ()
{
t_lista l, m, u;
inicializa_lista (&l);
inicializa_lista (&m);
printf ("TESTA INTERCALA LISTA:\n\n");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment