DataMuseum.dk

Presents historical artifacts from the history of:

Rational R1000/400 Tapes

This is an automatic "excavation" of a thematic subset of
artifacts from Datamuseum.dk's BitArchive.

See our Wiki for more about Rational R1000/400 Tapes

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - download
Index: ┃ T V

⟦ab43edc30⟧ TextFile

    Length: 1034 (0x40a)
    Types: TextFile
    Names: »V«

Derivation

└─⟦a7d1ea751⟧ Bits:30000550 8mm tape, Rational 1000, !users!projects 94_04_11
    └─ ⟦129cab021⟧ »DATA« 
        └─⟦this⟧ 

TextFile

with Text_Io;

package Tiny_File is

    procedure Open (The_File : in out Text_Io.File_Type;
                    With_Name : String;
                    Input_Mode : Boolean := True);
    procedure Create (The_File : in out Text_Io.File_Type;
                      With_Name : String;
                      Output_Mode : Boolean := True);
    function Get (The_File : Text_Io.File_Type) return Character;
    procedure Unget (The_File : Text_Io.File_Type);
    procedure Put (The_File : Text_Io.File_Type; The_Char : Character);
    procedure Put (The_File : Text_Io.File_Type; The_String : String);
    procedure Put_Line (The_File : Text_Io.File_Type; The_String : String);
    procedure Set_Col (The_File : Text_Io.File_Type; To : Natural);
    procedure Set_Line (The_File : Text_Io.File_Type; To : Natural);
    procedure New_Line (The_File : Text_Io.File_Type; Spacing : Natural := 1);
    function At_End (The_File : Text_Io.File_Type) return Boolean;
    procedure Close (The_File : in out Text_Io.File_Type);

end Tiny_File;