home *** CD-ROM | disk | FTP | other *** search
- #ifndef LISTL2_H
- #define LISTL2_h
-
- /****************************************************************
- * *
- * Filename : ListL2.h *
- * *
- *****************************************************************
- * *
- * Comment : Includedatei für Plotlibrary Level 2 *
- * Alle Funktionen für die Listenverwaltung sind *
- * hier aufgeführt. *
- * *
- * Rev : V1.0 *
- * *
- * History : V1.0 erstellen dieses Files 15/11/89 *
- * *
- * Doc : Plotlibrary User's Guide *
- * *
- * Bugs : keine bekannten *
- * *
- * Autor : Oesch Silvano *
- * *
- * Datum : 10/12/89 *
- * *
- ****************************************************************/
-
- /****************************************************************
- * *
- * Definition der Funktionsparameter *
- * *
- ****************************************************************/
-
- #ifdef PROTOTYPEN
-
- void addlist(struct Curve *);
- void dellist(struct Curve *);
- void sortlist(void);
- struct Curve *slistid(int );
- struct Curve *slistname(char *);
-
- #else
-
- void addlist();
- void dellist();
- void sortlist();
- struct Curve *slistid();
- struct Curve *slistname();
-
- #endif
-
- #endif
-