|
DataMuseum.dkPresents historical artifacts from the history of: DKUUG/EUUG Conference tapes |
This is an automatic "excavation" of a thematic subset of
See our Wiki for more about DKUUG/EUUG Conference tapes Excavated with: AutoArchaeologist - Free & Open Source Software. |
top - metrics - downloadIndex: T m
Length: 634 (0x27a) Types: TextFile Names: »memory.h«
└─⟦52210d11f⟧ Bits:30007239 EUUGD2: TeX 3 1992-12 └─⟦c319c2751⟧ »unix3.0/TeX3.0.tar.Z« └─⟦036c765ac⟧ └─⟦this⟧ »TeX3.0/tex/memory.h«
/* * Global data structures too hard to translate automatically from * Pascal. This file is included from the change file in the change for * section 8.113. */ typedef union { struct { halfword RH, LH; } v; struct { halfword junk_space; /* Make B0,B1 overlap LH in memory */ quarterword B0, B1; } u; } twohalves; #define b0 u.B0 #define b1 u.B1 #define b2 u.B2 #define b3 u.B3 typedef struct { struct { quarterword B0; quarterword B1; quarterword B2; quarterword B3; } u; } fourquarters; typedef union { integer cint; glueratio gr; twohalves hh; fourquarters qqqq; } memoryword;