commit
15b4b3db9a
@ -0,0 +1,11 @@
|
|||||||
|
PHONY : clean doc all
|
||||||
|
all : prog
|
||||||
|
|
||||||
|
prog :
|
||||||
|
Make -C src all
|
||||||
|
|
||||||
|
doc :
|
||||||
|
Make -C src doc
|
||||||
|
|
||||||
|
clean :
|
||||||
|
Make -C src clean
|
Binary file not shown.
@ -1 +1,42 @@
|
|||||||
|
<<<<<<< HEAD
|
||||||
void menu(void);
|
void menu(void);
|
||||||
|
=======
|
||||||
|
//Pile
|
||||||
|
|
||||||
|
typedef struct pile
|
||||||
|
{
|
||||||
|
int tlogi;
|
||||||
|
int tmax;
|
||||||
|
int* tab;
|
||||||
|
} pile;
|
||||||
|
typedef struct pile* Pile;
|
||||||
|
|
||||||
|
Pile creerpile(int tmax);
|
||||||
|
|
||||||
|
void empiler(Pile p, int x);
|
||||||
|
|
||||||
|
void afficherPileEntier(Pile p);
|
||||||
|
|
||||||
|
int depiler(Pile p);
|
||||||
|
|
||||||
|
|
||||||
|
//File
|
||||||
|
typedef struct file
|
||||||
|
{
|
||||||
|
Pile pEntry;
|
||||||
|
Pile pExit;
|
||||||
|
int* tab;
|
||||||
|
} file;
|
||||||
|
typedef struct file* File;
|
||||||
|
|
||||||
|
|
||||||
|
File creerfile(int tmax);
|
||||||
|
|
||||||
|
void enfiler(File f, int x);
|
||||||
|
|
||||||
|
void afficherFileEntier(File f);
|
||||||
|
|
||||||
|
int defiler(File f);
|
||||||
|
|
||||||
|
void vider_file(File f);
|
||||||
|
>>>>>>> edff24b7dc149a06522db6248ac41a7c23354fb6
|
||||||
|
@ -1 +1,13 @@
|
|||||||
|
typedef struct MaillonDep
|
||||||
|
{
|
||||||
|
char departement[31];
|
||||||
|
int nbp;
|
||||||
|
char resp[51]
|
||||||
|
struct MaillonDep* suivant;
|
||||||
|
}MaillonDep;
|
||||||
|
|
||||||
|
typedef struct
|
||||||
|
{
|
||||||
|
char Ville[31];
|
||||||
|
MaillonDep* ldept;
|
||||||
|
}VilleIUT;
|
||||||
|
Loading…
Reference in new issue