1 ------------------------------------------------------------------------------
3 -- GNAT RUN-TIME COMPONENTS --
5 -- S Y S T E M . I M G _ L L B --
9 -- Copyright (C) 1992-2017, Free Software Foundation, Inc. --
11 -- GNAT is free software; you can redistribute it and/or modify it under --
12 -- terms of the GNU General Public License as published by the Free Soft- --
13 -- ware Foundation; either version 3, or (at your option) any later ver- --
14 -- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
15 -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
16 -- or FITNESS FOR A PARTICULAR PURPOSE. --
18 -- As a special exception under Section 7 of GPL version 3, you are granted --
19 -- additional permissions described in the GCC Runtime Library Exception, --
20 -- version 3.1, as published by the Free Software Foundation. --
22 -- You should have received a copy of the GNU General Public License and --
23 -- a copy of the GCC Runtime Library Exception along with this program; --
24 -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see --
25 -- <http://www.gnu.org/licenses/>. --
27 -- GNAT was originally developed by the GNAT team at New York University. --
28 -- Extensive contributions were provided by Ada Core Technologies Inc. --
30 ------------------------------------------------------------------------------
32 -- Contains the routine for computing the image in based format of signed and
33 -- unsigned integers whose size > Integer'Size for use by Text_IO.Integer_IO
34 -- and Text_IO.Modular_IO.
36 with System
.Unsigned_Types
;
38 package System
.Img_LLB
is
41 procedure Set_Image_Based_Long_Long_Integer
42 (V
: Long_Long_Integer;
47 -- Sets the signed image of V in based format, using base value B (2..16)
48 -- starting at S (P + 1), updating P to point to the last character stored.
49 -- The image includes a leading minus sign if necessary, but no leading
50 -- spaces unless W is positive, in which case leading spaces are output if
51 -- necessary to ensure that the output string is no less than W characters
52 -- long. The caller promises that the buffer is large enough and no check
53 -- is made for this. Constraint_Error will not necessarily be raised if
54 -- this is violated, since it is perfectly valid to compile this unit with
57 procedure Set_Image_Based_Long_Long_Unsigned
58 (V
: System
.Unsigned_Types
.Long_Long_Unsigned
;
63 -- Sets the unsigned image of V in based format, using base value B (2..16)
64 -- starting at S (P + 1), updating P to point to the last character stored.
65 -- The image includes no leading spaces unless W is positive, in which case
66 -- leading spaces are output if necessary to ensure that the output string
67 -- is no less than W characters long. The caller promises that the buffer
68 -- is large enough and no check is made for this. Constraint_Error will not
69 -- necessarily be raised if this is violated, since it is perfectly valid
70 -- to compile this unit with checks off).