diff options
Diffstat (limited to 'Build/source/texk/seetexk/skip.c')
-rw-r--r-- | Build/source/texk/seetexk/skip.c | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/Build/source/texk/seetexk/skip.c b/Build/source/texk/seetexk/skip.c new file mode 100644 index 00000000000..54366b331ab --- /dev/null +++ b/Build/source/texk/seetexk/skip.c @@ -0,0 +1,30 @@ +/* + * 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); +} |