------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME COMPONENTS -- -- -- -- A D A . T E X T _ I O -- -- -- -- B o d y -- -- -- -- Copyright (C) 1992-2011, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. -- -- -- -- -- -- -- -- -- -- -- -- You should have received a copy of the GNU General Public License and -- -- a copy of the GCC Runtime Library Exception along with this program; -- -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -- -- . -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ -- Version for use with zero foot print run time with System.Text_IO; use System.Text_IO; package body Ada.Text_IO is --------- -- Get -- --------- procedure Get (C : out Character) is begin while not Is_Rx_Ready loop null; end loop; C := System.Text_IO.Get; end Get; -------------- -- New_Line -- -------------- procedure New_Line is begin if Use_Cr_Lf_For_New_Line then Put (ASCII.CR); end if; Put (ASCII.LF); end New_Line; --------- -- Put -- --------- procedure Put (Item : Character) is begin while not Is_Tx_Ready loop null; end loop; System.Text_IO.Put (Item); end Put; procedure Put (Item : String) is begin for J in Item'Range loop Put (Item (J)); end loop; end Put; -------------- -- Put_Line -- -------------- procedure Put_Line (Item : String) is begin Put (Item); New_Line; end Put_Line; begin if not Initialized then Initialize; end if; end Ada.Text_IO;