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

  1. -------- SIMTEL20 Ada Software Repository Prologue ------------
  2. --                                                           -*
  3. -- Unit name    : CHARACTER_SET
  4. -- Version      : 2.0
  5. -- Author       : Joseph M. Orost
  6. --              : Concurrent Computer Corporation
  7. --              : 106 Apple Street
  8. --              : Tinton Falls, NJ 07724
  9. -- DDN Address  : vax135!petsd!joe@BERKELEY.ARPA
  10. -- Copyright    :
  11. -- Date created : 15 Feb 85
  12. -- Release date : 15 Feb 85
  13. -- Last update  : 12 Mar 87
  14. -- Machine/System Compiled/Run on : CCUR 3200MPS, C3ADA R00-01/BETA
  15. --                                                           -*
  16. ---------------------------------------------------------------
  17. --                                                           -*
  18. -- Keywords     : character, character set
  19. --
  20. -- Abstract     : CHARACTER_SET provides a number of test routines
  21. ----------------: which determine if a given character falls into
  22. -- a particular class of characters.  See the visible section for
  23. -- details.  It also provides routines for character and string
  24. -- letter case conversion (to lower case, to upper case) and for
  25. -- naming control characters.
  26. --                                                           -*
  27. ------------------ Revision history ---------------------------
  28. --                                                           -*
  29. -- DATE         VERSION AUTHOR               HISTORY
  30. -- 2/15/85      1.0     Richard Conn         Initial Release
  31. -- 2/25/85      1.1     Richard Conn         Cosmetic, Readability Changes
  32. -- 3/12/87      2.0     Joseph M. Orost      Rewrite for better performance.
  33. --                                           Replaced functions with arrays.
  34. --                                           Source compatible unless
  35. --                                           named notation was used for
  36. --                                           function calls:
  37. --                                           IS_LOWER(CH => C) no longer works,
  38. --                                           but IS_LOWER(C) is OK.
  39. --                                                           -*
  40. ------------------ Distribution and Copyright -----------------
  41. --                                                           -*
  42. -- This software is released to the Ada community.
  43. -- This software is released to the Public Domain (note:
  44. --   software released to the Public Domain is not subject
  45. --   to copyright protection).
  46. -- Restrictions on use or distribution:  NONE
  47. --                                                           -*
  48. ------------------ Disclaimer ---------------------------------
  49. --                                                           -*
  50. -- This software and its documentation are provided "AS IS" and
  51. -- without any expressed or implied warranties whatsoever.
  52. -- No warranties as to performance, merchantability, or fitness
  53. -- for a particular purpose exist.
  54. --
  55. -- Because of the diversity of conditions and hardware under
  56. -- which this software may be used, no warranty of fitness for
  57. -- a particular purpose is offered.  The user is advised to
  58. -- test the software thoroughly before relying on it.  The user
  59. -- must assume the entire risk and liability of using this
  60. -- software.
  61. --
  62. -- In no event shall any person or organization of people be
  63. -- held responsible for any direct, indirect, consequential
  64. -- or inconsequential damages or lost profits.
  65. --                                                           -*
  66. -------------------END-PROLOGUE--------------------------------
  67.