home *** CD-ROM | disk | FTP | other *** search
/ Programmer's ROM - The Computer Language Library / programmersrom.iso / ada / misc / list.pro < prev    next >
Encoding:
Text File  |  1988-05-03  |  3.4 KB  |  74 lines

  1.  
  2. -------- SIMTEL20 Ada Software Repository Prologue ------------
  3. --                                                           -*
  4. -- Unit name    : LINKED_LIST
  5. -- Version      : 1.0
  6. -- Author       : Richard Conn
  7. --              : Texas Instruments
  8. --              : PO Box 801, Mail Stop 8007
  9. --              : McKinney, TX  75069
  10. -- DDN Address  : RCONN@SIMTEL20
  11. -- Copyright    : (c) 1984 Richard Conn
  12. -- Date created :  OCTOBER 2, 1984
  13. -- Release date :  NOVEMBER 29, 1984
  14. -- Last update  :  CONN NOVEMBER 29, 1984
  15. -- Machine/System Compiled/Run on: DEC VAX/VMS, DEC Ada
  16. --                                                           -*
  17. ---------------------------------------------------------------
  18. --                                                           -*
  19. -- Keywords     :  DOUBLY-LINKED LIST
  20. ----------------:  LIST MANIPULATION
  21. --
  22. -- Abstract     :  This package provides a number of routines
  23. ----------------:  which can be used to manipulate a doubly-
  24. ----------------:  linked list.  See the visible section for
  25. ----------------:  a rather complete set of documentation on
  26. ----------------:  the routines.
  27. ----------------:  
  28. ----------------:  Each element of the list is of the following
  29. ----------------:  structure:
  30. ----------------:     RECORD
  31. ----------------:      contents: element_object;  -- data
  32. ----------------:      next:     element_pointer; -- ptr
  33. ----------------:    previous: element_pointer; -- ptr
  34. ----------------:     END RECORD;
  35. ----------------:
  36. --                                                           -*
  37. ------------------ Revision history ---------------------------
  38. --                                                           -*
  39. -- DATE         VERSION    AUTHOR                  HISTORY
  40. -- 11/29/84       1.0    Richard Conn        Initial Release
  41. --                                                           -*
  42. ------------------ Distribution and Copyright -----------------
  43. --                                                           -*
  44. -- This prologue must be included in all copies of this software.
  45. --
  46. -- This software is copyright by the author.
  47. --
  48. -- This software is released to the Ada community.
  49. -- This software is released to the Public Domain (note:
  50. --   software released to the Public Domain is not subject
  51. --   to copyright protection).
  52. -- Restrictions on use or distribution:  NONE
  53. --                                                           -*
  54. ------------------ Disclaimer ---------------------------------
  55. --                                                           -*
  56. -- This software and its documentation are provided "AS IS" and
  57. -- without any expressed or implied warranties whatsoever.
  58. -- No warranties as to performance, merchantability, or fitness
  59. -- for a particular purpose exist.
  60. --
  61. -- Because of the diversity of conditions and hardware under
  62. -- which this software may be used, no warranty of fitness for
  63. -- a particular purpose is offered.  The user is advised to
  64. -- test the software thoroughly before relying on it.  The user
  65. -- must assume the entire risk and liability of using this
  66. -- software.
  67. --
  68. -- In no event shall any person or organization of people be
  69. -- held responsible for any direct, indirect, consequential
  70. -- or inconsequential damages or lost profits.
  71. --                                                           -*
  72. -------------------END-PROLOGUE--------------------------------
  73.  
  74.