// couple.h // << Algorithmique du texte >> // Maxime Crochemore, Christophe Hancart et Thierry Lecroq // Vuibert, 2001. struct _couple { void *comp1, *comp2; }; typedef struct _couple *Couple; Couple nouveauCouple(void *comp1, void *comp2);