From 0ead59ac7e4cb9622db2ee9c5c5d407b755046a4 Mon Sep 17 00:00:00 2001
From: Leo Poumaer <leo.poumaer.etu@univ-lille.fr>
Date: Sun, 30 May 2021 18:53:53 +0200
Subject: [PATCH] Update Requete.h

---
 includes/Requete.h | 14 ++++++++++++++
 1 file changed, 14 insertions(+)

diff --git a/includes/Requete.h b/includes/Requete.h
index e69de29..f729b0a 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);
-- 
GitLab