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

  1. ------------------------------------------------------------------------------
  2. --                                                                          --
  3. --                         GNAT RUNTIME COMPONENTS                          --
  4. --                                                                          --
  5. --                       S Y S T E M . I M G _ L L U                        --
  6. --                                                                          --
  7. --                                 S p e c                                  --
  8. --                                                                          --
  9. --                            $Revision: 1.6 $                              --
  10. --                                                                          --
  11. --           Copyright (c) 1992,1993,1994 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 supporting the Image attribute for
  27. --  unsigned (modular) integer types larger than Size Unsigned'Size, and also
  28. --  for conversion operations required in Text_IO.Modular_IO for such types.
  29.  
  30. with System.Unsigned_Types;
  31.  
  32. package System.Img_LLU is
  33. pragma Preelaborate (Img_LLU);
  34.  
  35.    function Image_Long_Long_Unsigned
  36.      (V :    System.Unsigned_Types.Long_Long_Unsigned)
  37.       return String;
  38.    --  Computes Long_Long_Unsigned'Image (V) and returns the result.
  39.  
  40.    procedure Set_Image_Long_Long_Unsigned
  41.      (V : System.Unsigned_Types.Long_Long_Unsigned;
  42.       S : out String;
  43.       P : in out Natural);
  44.    --  Sets the image of V starting at S (P + 1) with no leading spaces (i.e.
  45.    --  Text_IO format where Width = 0), starting at S (P + 1), updating P
  46.    --  to point to the last character stored. The caller promises that the
  47.    --  buffer is large enough and no check is made for this (Constraint_Error
  48.    --  will not be necessarily raised if this is violated since it is perfectly
  49.    --  valid to compile this unit with checks off).
  50.  
  51. end System.Img_LLU;
  52.