home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / gnat-2.06-src.tgz / tar.out / fsf / gnat / ada / a-tiocst.adb < prev    next >
Text File  |  1996-09-28  |  3KB  |  75 lines

  1. ------------------------------------------------------------------------------
  2. --                                                                          --
  3. --                         GNAT RUNTIME COMPONENTS                          --
  4. --                                                                          --
  5. --                A D A . T E X T _ I O . C _ S T R E A M S                 --
  6. --                                                                          --
  7. --                                 B o d y                                  --
  8. --                                                                          --
  9. --                            $Revision: 1.1 $                              --
  10. --                                                                          --
  11. --        Copyright (c) 1992,1993,1994,1995 NYU, All Rights Reserved        --
  12. --                                                                          --
  13. -- The GNAT library is free software; you can redistribute it and/or modify --
  14. -- it under terms of the GNU Library General Public License as published by --
  15. -- the Free Software  Foundation; either version 2, or (at your option) any --
  16. -- later version.  The GNAT library is distributed in the hope that it will --
  17. -- be useful, but WITHOUT ANY WARRANTY;  without even  the implied warranty --
  18. -- of MERCHANTABILITY  or  FITNESS FOR  A PARTICULAR PURPOSE.  See the  GNU --
  19. -- Library  General  Public  License for  more  details.  You  should  have --
  20. -- received  a copy of the GNU  Library  General Public License  along with --
  21. -- the GNAT library;  see the file  COPYING.LIB.  If not, write to the Free --
  22. -- Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.        --
  23. --                                                                          --
  24. ------------------------------------------------------------------------------
  25.  
  26. with Interfaces.C_Streams; use Interfaces.C_Streams;
  27. with System.File_IO;
  28. with System.File_Control_Block;
  29. with Unchecked_Conversion;
  30.  
  31. package body Ada.Text_IO.C_Streams is
  32.  
  33.    package FIO renames System.File_IO;
  34.    package FCB renames System.File_COntrol_Block;
  35.  
  36.    subtype AP is FCB.AFCB_Ptr;
  37.  
  38.    function To_FCB is new Unchecked_Conversion (File_Mode, FCB.File_Mode);
  39.  
  40.    --------------
  41.    -- C_Stream --
  42.    --------------
  43.  
  44.    function C_Stream (F : File_Type) return FILEs is
  45.    begin
  46.       FIO.Check_File_Open (AP (F));
  47.       return F.Stream;
  48.    end C_Stream;
  49.  
  50.    ----------
  51.    -- Open --
  52.    ----------
  53.  
  54.    procedure Open
  55.      (File     : in out File_Type;
  56.       Mode     : in File_Mode;
  57.       C_Stream : in FILEs;
  58.       Form     : in String := "")
  59.    is
  60.       File_Control_Block : Text_AFCB;
  61.  
  62.    begin
  63.       FIO.Open (File_Ptr  => AP (File),
  64.                 Dummy_FCB => File_Control_Block,
  65.                 Mode      => To_FCB (Mode),
  66.                 Name      => "",
  67.                 Form      => Form,
  68.                 Amethod   => 'T',
  69.                 Creat     => False,
  70.                 Text      => True,
  71.                 C_Stream  => C_Stream);
  72.    end Open;
  73.  
  74. end Ada.Text_IO.C_Streams;
  75.