diff --git a/includes/Requete.h b/includes/Requete.h
index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..f729b0a5f67d7c92ff95736b33d4226a9ad6f35b 100644
--- a/includes/Requete.h
+++ b/includes/Requete.h
@@ -0,0 +1,14 @@
+struct cell
+{
+  char * val;
+  struct cell * suiv;
+};
+/*Prototype*/
+
+void ajout_tete(struct cell **p, char *al);
+int recherche(struct cell* liste,char* x);
+void affiche_airport(char* IATACODE,struct cellule_airport *Airports);
+void affiche_airline(char* IATACODE,struct cellule_airline *Airlines);
+void show_airport(char* IATACODE,Hashtable Vols);
+void show_airlines(char* IATACODE,Hashtable Vols);
+void show_flight(char * IATACODE,int month,int day,int weekday,Hashtable Vols);