Package: Ada.Text_IO.Integer_Aux

Description

This package contains the routines for Ada.Text_IO.Integer_IO that are shared among separate instantiations of this package. The routines in this package are identical semantically to those in Integer_IO itself, except that the generic parameter Num has been replaced by Integer or Long_Long_Integer, and the default parameters have been removed because they are supplied explicitly by the calls from within the generic template.

Header

package Ada.Text_IO.Integer_Aux is
 

Other Items:

procedure Get_Int
  (File  : in File_Type;
   Item  : out Integer;
   Width : in Field);

procedure Get_LLI
  (File  : in File_Type;
   Item  : out Long_Long_Integer;
   Width : in Field);

procedure Put_Int
  (File  : in File_Type;
   Item  : in Integer;
   Width : in Field;
   Base  : in Number_Base);

procedure Put_LLI
  (File  : in File_Type;
   Item  : in Long_Long_Integer;
   Width : in Field;
   Base  : in Number_Base);

procedure Gets_Int
  (From : in String;
   Item : out Integer;
   Last : out Positive);

procedure Gets_LLI
  (From : in String;
   Item : out Long_Long_Integer;
   Last : out Positive);

procedure Puts_Int
  (To   : out String;
   Item : in Integer;
   Base : in Number_Base);

procedure Puts_LLI
  (To   : out String;
   Item : in Long_Long_Integer;
   Base : in Number_Base);
end Ada.Text_IO.Integer_Aux;