pragma License (Unrestricted); with Ada.Strings.Unbounded;
package Ada.Text_IO.Unbounded_IO is
procedure Put (File : in File_Type; Item : in Strings.Unbounded.Unbounded_String);
procedure Put (Item : in Strings.Unbounded.Unbounded_String);
procedure Put_Line (File : in Text_IO.File_Type; Item : in Strings.Unbounded.Unbounded_String);
procedure Put_Line (Item : in Strings.Unbounded.Unbounded_String);
function Get_Line (File : in File_Type) return Strings.Unbounded.Unbounded_String;
function Get_Line return Strings.Unbounded.Unbounded_String;
procedure Get_Line (File : in File_Type; Item : out Strings.Unbounded.Unbounded_String);
procedure Get_Line (Item : out Strings.Unbounded.Unbounded_String);
end Ada.Text_IO.Unbounded_IO;