typedef struct List { struct List *next; }* Liste; Liste create(){ Liste y,z; y=NULL; while(any){ z=malloc(sizeof(struct List)); z->next=y; y=z; } return z; }