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 s

⟦6151a64c8⟧ TextFile

    Length: 748 (0x2ec)
    Types: TextFile
    Names: »skip.c«

Derivation

└─⟦52210d11f⟧ Bits:30007239 EUUGD2: TeX 3 1992-12
    └─⟦af5ba6c8e⟧ »unix3.0/DVIWARE.tar.Z« 
        └─⟦ca79c7339⟧ 
            └─⟦this⟧ »DVIware/laser-setters/mctex/lib/skip.c« 

TextFile

/*
 * Copyright (c) 1987, 1989 University of Maryland
 * Department of Computer Science.  All rights reserved.
 * Permission to copy for any purpose is hereby granted
 * so long as this copyright notice remains intact.
 */

#ifndef lint
static char rcsid[] = "$Header: /usr/src/local/tex/local/mctex/lib/RCS/skip.c,v 3.1 89/08/22 21:45:13 chris Exp $";
#endif

#include <stdio.h>
#include "types.h"
#include "fio.h"

/*
 * Skip a font definition.  The font number has already been consumed.
 */
SkipFontDef(fp)
	register FILE *fp;
{
	register int i;

	(void) GetLong(fp);	/* checksum */
	(void) GetLong(fp);	/* mag */
	(void) GetLong(fp);	/* designsize */
	i = UnSign8(GetByte(fp)) + UnSign8(GetByte(fp));
	while (--i >= 0)
		(void) GetByte(fp);
}