typedef struct nodo {
int val;
struct nodo *next;
} NODO_LISTA_SEMPLICE;

NODO_LISTA_SEMPLICE* newLista();
void deleteLista(NODO_LISTA_SEMPLICE*);
int* getLista(NODO_LISTA_SEMPLICE *, int);
int setLista(NODO_LISTA_SEMPLICE *, int, int);
NODO_LISTA_SEMPLICE *addLista(NODO_LISTA_SEMPLICE *, int);
NODO_LISTA_SEMPLICE *addOrderLista(NODO_LISTA_SEMPLICE *, int);
void stampaLista(NODO_LISTA_SEMPLICE *);