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

⟦bbb62d5a8⟧ TextFile

    Length: 665 (0x299)
    Types: TextFile
    Names: »V«

Derivation

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

TextFile

with Personnal_String;
package Personnal_Array is
    Max : constant := 50;
    subtype Size is Natural range 0 .. Max;
    type Object is private;

    procedure Put (The_Tab : in out Object;
                   The_String : Personnal_String.Object);
    procedure Raz (The_Tab : in out Object);
    function Value (The_Tab : Object; Index : Positive) return String;
    function Last (The_Tab : Object) return Natural;

private  
    type Personnal_String_Array is array (1 .. Max) of Personnal_String.Object;
    type Object is
        record
            Length : Size := 0;
            Contains : Personnal_String_Array;
        end record;

end Personnal_Array;