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

  1.  
  2.  
  3.  
  4. -------- SIMTEL20 Ada Software Repository Prologue ------------
  5. --                                                           -*
  6. -- Unit name    : IO_SUPPORT
  7. -- Version      : 1.0
  8. -- Author       : Richard Conn
  9. --              : Texas Instruments, Ada Technology Branch
  10. --              : PO Box 801, MS 8007
  11. --              : McKinney, TX  75069
  12. -- DDN Address  : RCONN at SIMTEL20
  13. -- Copyright    : (c) 1985 Richard Conn
  14. -- Date created : 15 Feb 85
  15. -- Release date : 15 Feb 85
  16. -- Last update  : 15 Feb 85
  17. -- Machine/System Compiled/Run on : DG MV 10000, ROLM ADE
  18. --                                                           -*
  19. ---------------------------------------------------------------
  20. --                                                           -*
  21. -- Keywords     :
  22. ----------------: Input Line Editor, I/O Support
  23. --
  24. -- Abstract     :
  25. ----------------: IO_SUPPORT is a companion package for SYSDEP,
  26. -- a system dependencies package that provides console input and
  27. -- console output without echo on the input and without control
  28. -- character interpretation.  IO_SUPPORT, which employs SYSDEP,
  29. -- provides an input line editor and interfaces to the routines
  30. -- in SYSDEP which provide a greater degree of functionality than
  31. -- SYSDEP itself provides.
  32. --
  33. --      For applications which are embedded and do not require
  34. -- features of TEXT_IO other than simple character or string I/O,
  35. -- IO_SUPPORT with SYSDEP offer an alternative to withing in the
  36. -- entire TEXT_IO package.
  37. --
  38. --      The philosophy behind creating SYSDEP is to provide low-level
  39. -- I/O routines which can be built upon to implement applications which
  40. -- require raw I/O, such as communications servers and character-oriented
  41. -- tools.  IO_SUPPORT goes one step further by providing a set of
  42. -- commonly-used routines around SYSDEP, preventing the need for
  43. -- constantly reinventing the basic wheel.
  44. --                                                           -*
  45. ------------------ Revision history ---------------------------
  46. --                                                           -*
  47. -- DATE         VERSION AUTHOR                  HISTORY
  48. -- 2/15/85      1.0     Richard Conn            Initial Release
  49. --                                                           -*
  50. ------------------ Distribution and Copyright -----------------
  51. --                                                           -*
  52. -- This prologue must be included in all copies of this software.
  53. --
  54. -- This software is copyright by the author.
  55. --
  56. -- This software is released to the Ada community.
  57. -- This software is released to the Public Domain (note:
  58. --   software released to the Public Domain is not subject
  59. --   to copyright protection).
  60. -- Restrictions on use or distribution:  NONE
  61. --                                                           -*
  62. ------------------ Disclaimer ---------------------------------
  63. --                                                           -*
  64. -- This software and its documentation are provided "AS IS" and
  65. -- without any expressed or implied warranties whatsoever.
  66. -- No warranties as to performance, merchantability, or fitness
  67. -- for a particular purpose exist.
  68. --
  69. -- Because of the diversity of conditions and hardware under
  70. -- which this software may be used, no warranty of fitness for
  71. -- a particular purpose is offered.  The user is advised to
  72. -- test the software thoroughly before relying on it.  The user
  73. -- must assume the entire risk and liability of using this
  74. -- software.
  75. --
  76. -- In no event shall any person or organization of people be
  77. -- held responsible for any direct, indirect, consequential
  78. -- or inconsequential damages or lost profits.
  79. --                                                           -*
  80. -------------------END-PROLOGUE--------------------------------
  81.