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

  1. ------------------------------------------------------------------------------
  2. --                                                                          --
  3. --                         GNAT RUNTIME COMPONENTS                          --
  4. --                                                                          --
  5. --                      S Y S T E M . I M G _ R E A L                       --
  6. --                                                                          --
  7. --                                 S p e c                                  --
  8. --                                                                          --
  9. --                            $Revision: 1.9 $                              --
  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. --  Image for fixed and float types (also used for Float_IO/Fixed_IO output)
  27.  
  28. package System.Img_Real is
  29. pragma Preelaborate (Img_Real);
  30.  
  31.    function Image_Ordinary_Fixed_Point
  32.      (V    : Long_Long_Float;
  33.       Aft  : Natural)
  34.       return String;
  35.    --  Computes the image of V and returns the result according to the rules
  36.    --  for image for fixed-point types (RM 3.5(34)), where Aft is the value of
  37.    --  the Aft attribute for the fixed-point type. This function is used only
  38.    --  for ordinary fixed point (see package System.Img_Dec for handling of
  39.    --  decimal fixed-point).
  40.  
  41.    function Image_Floating_Point
  42.      (V    : Long_Long_Float;
  43.       Digs : Natural)
  44.       return String;
  45.    --  Computes the image of V and returns the result according to the rules
  46.    --  for image for foating-point types (RM 3.5(33)), where Digs is the value
  47.    --  of the Digits attribute for the floating-point type.
  48.  
  49.    procedure Set_Image_Real
  50.      (V    : Long_Long_Float;
  51.       S    : out String;
  52.       P    : in out Natural;
  53.       Fore : Natural;
  54.       Aft  : Natural;
  55.       Exp  : Natural);
  56.    --  Sets the image of V starting at S (P + 1), updating P to point to the
  57.    --  last character stored, the caller promises that the buffer is large
  58.    --  enough and no check is made for this. Constraint_Error will not
  59.    --  necessarily be raised if this is violated, since it is perfectly valid
  60.    --  to compile this unit with checks off). The Fore, Aft and Exp values
  61.    --  can be set to any valid values for the case of use from Text_IO.
  62.  
  63. end System.Img_Real;
  64.