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-tideau.ads < prev    next >
Text File  |  1996-09-28  |  4KB  |  91 lines

  1. ------------------------------------------------------------------------------
  2. --                                                                          --
  3. --                         GNAT RUNTIME COMPONENTS                          --
  4. --                                                                          --
  5. --              A D A . T E X T _ I O . D E C I M A L _ 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.Decimal_IO that are
  27. --  shared among separate instantiations of this package. The routines in
  28. --  the package are identical semantically to those declared in Text_IO,
  29. --  except that default values have been supplied by the generic, and the
  30. --  Num parameter has been replaced by Integer or Long_Long_Integer, with
  31. --  an additional Scale parameter giving the value of Num'Scale. In addition
  32. --  the Get routines return the value rather than store it in an Out parameter.
  33.  
  34. private package Ada.Text_IO.Decimal_Aux is
  35.  
  36.    function Get_Dec
  37.      (File  : in File_Type;
  38.       Width : in Field;
  39.       Scale : Integer)
  40.       return  Integer;
  41.  
  42.    function Get_LLD
  43.      (File  : in File_Type;
  44.       Width : in Field;
  45.       Scale : Integer)
  46.       return  Long_Long_Integer;
  47.  
  48.    procedure Put_Dec
  49.      (File  : File_Type;
  50.       Item  : Integer;
  51.       Fore : in Field;
  52.       Aft  : in Field;
  53.       Exp  : in Field;
  54.       Scale : Integer);
  55.  
  56.    procedure Put_LLD
  57.      (File  : in File_Type;
  58.       Item  : in Long_Long_Integer;
  59.       Fore : in Field;
  60.       Aft  : in Field;
  61.       Exp  : in Field;
  62.       Scale : Integer);
  63.  
  64.    function Gets_Dec
  65.      (From  : in String;
  66.       Last  : access Positive;
  67.       Scale : Integer)
  68.       return  Integer;
  69.  
  70.    function Gets_LLD
  71.      (From  : in String;
  72.       Last  : access Positive;
  73.       Scale : Integer)
  74.       return  Long_Long_Integer;
  75.  
  76.    procedure Puts_Dec
  77.      (To    : out String;
  78.       Item  : in Integer;
  79.       Aft   : in Field;
  80.       Exp   : in Field;
  81.       Scale : Integer);
  82.  
  83.    procedure Puts_LLD
  84.      (To    : out String;
  85.       Item  : in Long_Long_Integer;
  86.       Aft   : in Field;
  87.       Exp   : in Field;
  88.       Scale : Integer);
  89.  
  90. end Ada.Text_IO.Decimal_Aux;
  91.