DataMuseum.dk

Presents historical artifacts from the history of:

DKUUG/EUUG Conference tapes

This is an automatic "excavation" of a thematic subset of
artifacts from Datamuseum.dk's BitArchive.

See our Wiki for more about DKUUG/EUUG Conference tapes

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - metrics - download
Index: T m

⟦7a228d5c3⟧ TextFile

    Length: 644 (0x284)
    Types: TextFile
    Names: »memory.h«

Derivation

└─⟦52210d11f⟧ Bits:30007239 EUUGD2: TeX 3 1992-12
    └─⟦c6be2784f⟧ »web2c-5.84b.tar.Z« 
        └─⟦5800b1b62⟧ 
            └─⟦this⟧ »src-5.84b/tex/memory.h« 
└─⟦52210d11f⟧ Bits:30007239 EUUGD2: TeX 3 1992-12
    └─⟦63303ae94⟧ »unix3.14/TeX3.14.tar.Z« 
        └─⟦c58930e5c⟧ 
            └─⟦this⟧ »TeX3.14/tex/memory.h« 

TextFile

/* memory.h: types that are 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.  */
    quarterword B0, B1;
  } u;
} twohalves;


/* TeX want to call the following fields `b0', etc.  */
#define	b0	u.B0
#define	b1	u.B1
#define	b2	u.B2
#define	b3	u.B3

typedef struct
{
  struct
  {
    quarterword B0, B1, B2, B3;
  } u;
} fourquarters;


typedef union
{
  integer cint;
  glueratio gr;
  twohalves hh;
  fourquarters qqqq;
} memoryword;