Old stuff/ecole_etude_fac_de_pau/licence_2/struct/tp5/agenda.h
(Deskargatu)
#ifndef AGENDA_H
#define AGENDA_H
#include <stdio.h>
#include <stdlib.h>
struct anniversaire
{
char nom[20];
char date[12];
struct anniversaire *suivant;
};
struct anniversaire creer();
typedef struct elem elemListe;
typedef struct elem *pElemListe;
struct elem
{
struct anniversaire anniv;
struct elem *suivant;
};
void ajouter(struct anniversaire);
void modifier(char* ,char*);
void afficher_agenda();
void supprimer(char*);
int recherche(char*);
#endif