#ifndef TYPES #define TYPES #include "types.h" #endif #ifndef STDIO #define STDIO #include #endif #ifndef STDLIB #define STDLIB #include #endif #include "liste_chainee_biblio.h" void main(){ Cell *l,*liste_triee,*new=NULL,*p; void *var; l=NULL; ajg(&l,2); ajg(&l,123); ajg(&l,5); var = (Cell*) l; p =l; ajg(&l,-8); ajg(&l,34); ajg(&l,47); ajg(&l,7); affiche_liste(l); affiche_liste((Cell*)var); p->data=147; affiche_liste(l); liste_triee = quicksort(l); affiche_liste(liste_triee); concat(&liste_triee,l); affiche_liste(liste_triee); retire_element(&liste_triee,34); affiche_liste(liste_triee); return; }