/* Informationsdatei zum Datentyp "adresse" */
/* Datei: adress.h */

struct adresse
  {
  char vorname[30];
  char nachname[40];
  char plz[6];
  char ort[40];
  char strasse[40];
  };

typedef struct adresse adresse;	/* Typdefinition */

void A_holen (const adresse * ap);
void A_ausgeben (const adresse * ap);
