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

  1. -------- SIMTEL20 Ada Software Repository Prologue ------------
  2. --                                                           -*
  3. -- Unit name    : Dynamic String Package    
  4. -- Version      : 1.1
  5. -- Author       : R. G. Cleaveland        
  6. --              : WIS JPMO
  7. --              : Washington, D.C.  20330
  8. --              : Contact: Lt. Colonel Falgiano
  9. --              : ESD/SCW
  10. --              : Hanscom AFB, MA  01731
  11. -- DDN Address  : cleave@dca-ems
  12. -- Copyright    : (c) 1985 R. G. Cleaveland    
  13. -- Date created : 18 Mar 1985
  14. -- Release date : 1985
  15. -- Last update  : R.G. Cleaveland  February, 1986
  16. -- Machine/System Compiled/Run on : VAX 8600 / Ultrix / VERDIX 
  17. --                                                           -*
  18. ---------------------------------------------------------------
  19. --                                                           -*
  20. -- Keywords     : 
  21. ----------------:
  22. --
  23. -- Abstract     : This is a package of several string manipulation   
  24. ----------------: functions based on a built-in dynamic string type
  25. ----------------: DYN_STRING.  It is an adaptation and extension of
  26. ----------------: the package proposed by Sylvan Rubin of Ford     
  27. ----------------: Aerospace and Communications Corporation in the 
  28. ----------------: Nov/Dec 1984 issue of the Journal of Pascal, Ada and
  29. ----------------: Modula-2.  Some new functions have been added, and 
  30. ----------------: much of the body code has been rewritten.   
  31. ----------------:
  32. ----------------: This tool was developed as a precursor for 
  33. ----------------: the WMCCS Information System (WIS).  An
  34. ----------------: executable version of the tool has been 
  35. ----------------: demonstrated.  
  36. ----------------:
  37. ----------------: Additions and Fixes:
  38. ----------------: 06 Feb 85: CHAR changed to add the optional parameter POSIT.
  39. ----------------: 06 Feb 85: procedure SUBSTITUTE added.
  40. ----------------: 05 Apr 85: procedures UPPERCASE and CHECKBYTE added.
  41. ----------------: 04 Feb 86: style and formatting changes made, some 
  42. ----------------:            comments fixed.  Ported to VERDIX VADS 
  43. ----------------:            (VAX Ultrix version 5.1).
  44. ----------------: 10 Feb 86: Several bugs fixed, SIZE constrained, exception 
  45. ----------------:            for '&' generating too long a string added, 
  46. ----------------:            error in integer conversion fixed.  Functions 
  47. ----------------:            EQUALS, ">", "<=" and ">=" added.  Subtype 
  48. ----------------:            DS_POS incorporated.  
  49. ----------------:
  50. --                                                           -*
  51. ------------------ Revision history ---------------------------
  52. --                                                           -*
  53. -- DATE         VERSION AUTHOR                  HISTORY 
  54. -- 03/18/85     1.0     Richard G. Cleaveland   Initial Release
  55. -- 03/14/86     1.1     Richard G. Cleaveland   Update
  56. --                                                           -*
  57. ------------------ Distribution and Copyright -----------------
  58. --                                                           -*
  59. -- This prologue must be included in all copies of this software.
  60. -- 
  61. -- This software is copyright by the author.
  62. -- 
  63. -- This software is released to the Ada community.
  64. -- This software is released to the Public Domain (note:
  65. --   software released to the Public Domain is not subject
  66. --   to copyright protection).
  67. -- Restrictions on use or distribution:  NONE
  68. --                                                           -*
  69. ----------------- Disclaimer ----------------------------------
  70. --                                                           -*
  71. -- This software and its documentation are provided "AS IS" and
  72. -- without any expressed or implied warranties whatsoever.
  73. --
  74. -- No warranties as to performance, merchantability, or fitness
  75. -- for a particular purpose exist.
  76. --
  77. -- Because of the diversity of conditions and hardware under
  78. -- which this software may be used, no warranty of fitness for
  79. -- a particular purpose is offered.  The user is advised to 
  80. -- test the software thoroughly before relying on it.  The user
  81. -- must assume the entire risk and liability of using this 
  82. -- software.
  83. --
  84. -- In no event shall any person or organization of people be
  85. -- held responsible for any direct, indirect, consequential
  86. -- or inconsequential damages or lost profits.
  87. --                                                          -*
  88. ----------------- END-PROLOGUE -------------------------------
  89.  
  90.