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: ┃ B T

⟦a25ebf601⟧ TextFile

    Length: 628 (0x274)
    Types: TextFile
    Names: »B«

Derivation

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

TextFile

separate (Motor)
procedure Normaliser (Source : Standard_String.Object;
                      Destination : in out String) is
begin
    if Standard_String.Length (Source) /= Destination'Length then
        for I in 1 .. (Destination'Length -
                       Standard_String.Length (Source)) loop
            Destination (I) := '0';
        end loop;
        Destination
           ((Destination'Length - Standard_String.Length (Source) + 1) ..
               Destination'Last) := Standard_String.Get_Contents (Source);
    else
        Destination := Standard_String.Get_Contents (Source);  
    end if;
end Normaliser;