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 / s-io.adb < prev    next >
Text File  |  1996-09-28  |  3KB  |  79 lines

  1. ------------------------------------------------------------------------------
  2. --                                                                          --
  3. --                         GNAT RUNTIME COMPONENTS                          --
  4. --                                                                          --
  5. --                            S Y S T E M . I O                             --
  6. --                                                                          --
  7. --                                 B o d y                                  --
  8. --                                                                          --
  9. --                            $Revision: 1.5 $                              --
  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. package body System.IO is
  27.  
  28.    --------------
  29.    -- New_Line --
  30.    --------------
  31.  
  32.    procedure New_Line (Spacing : Positive := 1) is
  33.    begin
  34.       for J in 1 .. Spacing loop
  35.          Put (Ascii.LF);
  36.       end loop;
  37.    end New_Line;
  38.  
  39.    ---------
  40.    -- Put --
  41.    ---------
  42.  
  43.    procedure Put (X : Integer) is
  44.  
  45.       procedure Put_Int (X : Integer);
  46.       pragma Import (C, Put_Int, "put_int");
  47.  
  48.    begin
  49.       Put_Int (X);
  50.    end Put;
  51.  
  52.    procedure Put (C : Character) is
  53.  
  54.       procedure Put_Char (C : Character);
  55.       pragma Import (C, Put_Char, "put_char");
  56.  
  57.    begin
  58.       Put_Char (C);
  59.    end Put;
  60.  
  61.    procedure Put (S : String) is
  62.    begin
  63.       for J in S'Range loop
  64.          Put (S (J));
  65.       end loop;
  66.    end Put;
  67.  
  68.    --------------
  69.    -- Put_Line --
  70.    --------------
  71.  
  72.    procedure Put_Line (S : String) is
  73.    begin
  74.       Put (S);
  75.       New_Line;
  76.    end Put_Line;
  77.  
  78. end System.IO;
  79.