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 g

⟦994a01933⟧ TextFile

    Length: 1029 (0x405)
    Types: TextFile
    Names: »glyph.h«

Derivation

└─⟦52210d11f⟧ Bits:30007239 EUUGD2: TeX 3 1992-12
    └─⟦c319c2751⟧ »unix3.0/TeX3.0.tar.Z« 
        └─⟦036c765ac⟧ 
            └─⟦this⟧ »TeX3.0/TeXcontrib/salkind/src/glyph.h« 
└─⟦060c9c824⟧ Bits:30007080 DKUUG TeX 2/12/89
    └─⟦this⟧ »./tex82/TeXcontrib/salkind/src/glyph.h« 
└─⟦52210d11f⟧ Bits:30007239 EUUGD2: TeX 3 1992-12
    └─⟦63303ae94⟧ »unix3.14/TeX3.14.tar.Z« 
        └─⟦c58930e5c⟧ 
            └─⟦this⟧ »TeX3.14/TeXcontrib/salkind/src/glyph.h« 

TextFile

/*	@(#)font.h	1.1	*/
struct Fontheader
  {
	short		f_magic ;	/* Should be 0436 */
	unsigned short	f_size ;	/* Total size of raster section
					 * of the font file.
					 */
	short		f_maxx ;	/* Largest x of character */
	short		f_maxy ;	/* Largest y of character */
	short		f_xtnd ;	/* Largest extender */
  } ;

struct Charparam
  {
	unsigned short	c_addr ;	/* Offset in file where character
					 * is located.
					 */
	short		c_size ;	/* Size in bytes of character	*/
	char		c_up ;		/* c_up + c_down = heigth of	*/
	char		c_down ;	/* raster in font file.		*/
	char		c_left ;	/* c_right + c_left = width of	*/
	char		c_right ;	/* raster in font file.		*/
	char		c_width ;	/* Width, including space required
					 * to print character.
					 */
  } ;

/*	RSTRUCTS is the size of the structures at the beginning of a	*/
/*	Versatec raster file.  RSTRUCTS + (long)charparam->c_addr is	*/
/*	the address of the character's raster.				*/

#define	RSTRUCTS	((long)(sizeof(struct Fontheader)+ \
			    256*sizeof(struct Charparam)))