home *** CD-ROM | disk | FTP | other *** search
/ The Fred Fish Collection 1.5 / ffcollection-1-5-1992-11.iso / ff_progs / libs / plotlib.lha / Plot_1.lzh / Header / ListL2.h < prev    next >
Encoding:
C/C++ Source or Header  |  1990-01-07  |  1.6 KB  |  53 lines

  1. #ifndef LISTL2_H
  2. #define LISTL2_h
  3.  
  4. /****************************************************************
  5. *                                                                                                                                *
  6. *     Filename : ListL2.h                                                                                    *
  7. *                                                                                                                                *
  8. *****************************************************************
  9. *                                                                                                                                *
  10. *        Comment : Includedatei für Plotlibrary Level 2                            *
  11. *                            Alle Funktionen für die Listenverwaltung sind            *
  12. *                            hier aufgeführt.                                                                    *
  13. *                                                                                                                                *
  14. *                Rev : V1.0                                                                                            *
  15. *                                                                                                                                *
  16. *        History : V1.0 erstellen dieses Files                            15/11/89    *
  17. *                                                                                                                                *
  18. *                Doc : Plotlibrary User's Guide                                                    *
  19. *                                                                                                                                *
  20. *             Bugs : keine bekannten                                                                        *
  21. *                                                                                                                                *
  22. *            Autor : Oesch Silvano                                                                            *
  23. *                                                                                                                                *
  24. *            Datum : 10/12/89                                                                                    *
  25. *                                                                                                                                *
  26. ****************************************************************/
  27.  
  28. /****************************************************************
  29. *                                                                                                                                *
  30. *    Definition der Funktionsparameter                                                            *
  31. *                                                                                                                                *
  32. ****************************************************************/
  33.  
  34. #ifdef PROTOTYPEN
  35.  
  36. void addlist(struct Curve *);
  37. void dellist(struct Curve *);
  38. void sortlist(void);
  39. struct Curve *slistid(int );
  40. struct Curve *slistname(char *);
  41.  
  42. #else
  43.  
  44. void addlist();
  45. void dellist();
  46. void sortlist();
  47. struct Curve *slistid();
  48. struct Curve *slistname();
  49.  
  50. #endif
  51.  
  52. #endif
  53.