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 - metrics - download
Index: B T

⟦cded86b3d⟧ TextFile

    Length: 826 (0x33a)
    Types: TextFile
    Names: »B«

Derivation

└─⟦180fe333a⟧ Bits:30000405 8mm tape, Rational 1000, SW CATALOG, 10_20_0
└─⟦180fe333a⟧ Bits:30000537 8mm tape, Rational 1000, SW Catalog 10_20_0
    └─⟦5cb1d1d7f⟧ »DATA« 
        └─⟦3b1ee7bd8⟧ 
            └─⟦this⟧ 

TextFile

separate (Database_Interface.Get_Record)
function V_Decode (Ch : Character) return Version_Type is
begin
    case Ch is
        when '0' =>
            return All_Versions;
        when '1' =>
            return Control;
        when '2' =>
            return Test;
        when '3' =>
            return Suppress;
        when '4' =>
            return Optimize;
        when '5' =>
            return Other;
        when '?' =>
            return Other;  -- place holder
        when others =>
            return All_Versions;
            Put ("*** Error in Version: ");
            Put (Ch);
            New_Line;
            raise Consistency_Error;
    end case;
end V_Decode;
--**********************************************************************
-- if the string is short enough, return it as is,
-- else truncate it.