|
|
DataMuseum.dkPresents historical artifacts from the history of: Rational R1000/400 Tapes |
This is an automatic "excavation" of a thematic subset of
See our Wiki for more about Rational R1000/400 Tapes Excavated with: AutoArchaeologist - Free & Open Source Software. |
top - metrics - downloadIndex: T V
Length: 1322 (0x52a)
Types: TextFile
Names: »V«
└─⟦a7d1ea751⟧ Bits:30000550 8mm tape, Rational 1000, !users!projects 94_04_11
└─⟦129cab021⟧ »DATA«
└─⟦this⟧
with Text_Io;
package Fichier_Io is
function At_End (Fichier_Source : in Text_Io.File_Type) return Boolean;
function Get (Fichier_Source : in Text_Io.File_Type) return Character;
procedure Close (Fichier_Source : in out Text_Io.File_Type);
procedure Open (Fichier_Source : in out Text_Io.File_Type;
Name : in String);
procedure Unget (Fichier_Source : in Text_Io.File_Type);
procedure Create (Fichier_Source : in out Text_Io.File_Type;
Mode : Text_Io.File_Mode := Text_Io.Out_File;
Name : in String);
procedure Put (Fichier_Source : in out Text_Io.File_Type; Item : String);
procedure Put (Fichier_Source : in out Text_Io.File_Type; Item : Integer);
procedure Put_Line
(Fichier_Source : in out Text_Io.File_Type; Item : String);
procedure Set_Col (Fichier_Source : in out Text_Io.File_Type;
To : Text_Io.Positive_Count);
procedure Unset_Col (Fichier_Source : in out Text_Io.File_Type;
To : Text_Io.Positive_Count);
private
Current_Char : Character;
Look_A_Head : Boolean := False;
procedure Next (Fichier_Source : in Text_Io.File_Type);
function Value (Fichier_Source : in Text_Io.File_Type) return Character;
end Fichier_Io;