Tfe

Ongi etorri tfe-ren webgunera...

Old stuff/ecole_etude_fac_de_pau/licence_2/struct/tp5/agenda.h~

(Deskargatu)
#include <stdio.h>
#include <stdlib.h>
#ifndef AGENDA_H
#define AGENDA_H

struct anniversaire
{
  char nom[20];
  char date[12];
  struct anniversaire *suivant;
};

struct anniversaire *agenda;
struct anniversaire creer()
{
  agenda = NULL;
};



struct elem
{
  struct anniversaire anniv;
  struct elem *suivant;

};
typedef struct elem elemListe;
typedef struct elem *pElemListe;



void ajouter(struct anniversaire);
void modifier(char* ,char*);
void afficher_agenda();
void supprimer(char*);
int recherche(char*);



#endif