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 - downloadIndex: ┃ T V ┃
Length: 1218 (0x4c2) Types: TextFile Names: »V«
└─⟦a7d1ea751⟧ Bits:30000550 8mm tape, Rational 1000, !users!projects 94_04_11 └─ ⟦129cab021⟧ »DATA« └─⟦this⟧
package Etape is -- specifications subtype Temps is Integer; type Action is record Valeur1 : Integer; Valeur2 : Integer; end record; type Celluleetape; type Etape is access Celluleetape; type Celluleetape is record Letemps : Temps; Laction : Action; Lasuite : Etape; end record; Etapeinexistante : constant Etape := null; function Creeruneetape (Untemps : Temps; Uneaction : Action; Uneetape : Etape) return Etape; function Letempsdeletape (Uneetape : Etape) return Temps; function Lactiondeletape (Uneetape : Etape) return Action; function Lasuitedeletape (Uneetape : Etape) return Etape; procedure Changerletempsdeletape (Uneetape : in out Etape; Untemps : Temps); procedure Changerlactiondeletape (Uneetape : in out Etape; Uneaction : Action); procedure Caseruneactiondanslesetapes (T : Temps; A : Action; E : in out Etape); procedure Detruireletape (E : in out Etape); procedure Exclureuneactiondesetapes (E : in out Etape; T : Temps); procedure Afficheruneetape (E : Etape); end Etape;