/* Informationsdatei für Listen */ /* Datei: lifo.h */ struct elever { struct elever * ep; /* int type; */ /* int size; */ }; typedef struct elever Elever; struct lifokopf { Elever *first; /* int anzahl; */ }; typedef struct lifokopf LifoKopf; void LifoInit (LifoKopf *lp); void LifoEin (LifoKopf *lp, void *tp); void * LifoAus (LifoKopf *lp); struct ltext { Elever ev; char text[128]; }; typedef struct ltext Ltext; void LtextInit (Ltext * s, char *t);