#ifndef __LISTVETH #define __LISTVETH /* Lista: começa com o numero de elementos e um array deles. */ typedef struct List { int size; int * elem; } List; void Listinit( List * ); void Listinsert( List * , int ); int Listremove( List * ); void Listprint( List ); #endif