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-tiinau.ads < prev    next >
Text File  |  1996-09-28  |  3KB  |  78 lines

  1. ------------------------------------------------------------------------------
  2. --                                                                          --
  3. --                         GNAT RUNTIME COMPONENTS                          --
  4. --                                                                          --
  5. --              A D A . T E X T _ I O . I N T E G E R _ A U X               --
  6. --                                                                          --
  7. --                                 S p e c                                  --
  8. --                                                                          --
  9. --                            $Revision: 1.2 $                              --
  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. --  This package contains the routines for Ada.Text_IO.Integer_IO that are
  27. --  shared among separate instantiations of this package. The routines in
  28. --  this package are identical semantically to those in Integer_IO itself,
  29. --  except that the generic parameter Num has been replaced by Integer or
  30. --  Long_Long_Integer, and the default parameters have been removed because
  31. --  they are supplied explicitly by the calls from within the generic template.
  32.  
  33. private package Ada.Text_IO.Integer_Aux is
  34.  
  35.    procedure Get_Int
  36.      (File  : in File_Type;
  37.       Item  : out Integer;
  38.       Width : in Field);
  39.  
  40.    procedure Get_LLI
  41.      (File  : in File_Type;
  42.       Item  : out Long_Long_Integer;
  43.       Width : in Field);
  44.  
  45.    procedure Put_Int
  46.      (File  : in File_Type;
  47.       Item  : in Integer;
  48.       Width : in Field;
  49.       Base  : in Number_Base);
  50.  
  51.    procedure Put_LLI
  52.      (File  : in File_Type;
  53.       Item  : in Long_Long_Integer;
  54.       Width : in Field;
  55.       Base  : in Number_Base);
  56.  
  57.    procedure Gets_Int
  58.      (From : in String;
  59.       Item : out Integer;
  60.       Last : out Positive);
  61.  
  62.    procedure Gets_LLI
  63.      (From : in String;
  64.       Item : out Long_Long_Integer;
  65.       Last : out Positive);
  66.  
  67.    procedure Puts_Int
  68.      (To   : out String;
  69.       Item : in Integer;
  70.       Base : in Number_Base);
  71.  
  72.    procedure Puts_LLI
  73.      (To   : out String;
  74.       Item : in Long_Long_Integer;
  75.       Base : in Number_Base);
  76.  
  77. end Ada.Text_IO.Integer_Aux;
  78.