|
|
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 f
Length: 902 (0x386)
Types: TextFile
Names: »fio.c«
└─⟦060c9c824⟧ Bits:30007080 DKUUG TeX 2/12/89
└─⟦this⟧ »./DVIware/laser-setters/umd-dvi/lib/fio.c«
/*
* Copyright (c) 1987 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: fio.c,v 2.3 87/06/16 18:27:54 chris Exp $";
#endif
/*
* File I/O subroutines for getting bytes, words, 3bytes, and longwords.
*/
#include <stdio.h>
#include "types.h"
#include "fio.h"
static char eofmsg[] = "unexpected EOF";
/* for symmetry: */
#define fGetByte(fp, r) ((r) = getc(fp))
#define Sign32(i) (i)
#define make(name, func, signextend) \
i32 \
name(fp) \
register FILE *fp; \
{ \
register i32 n; \
\
func(fp, n); \
if (feof(fp)) \
error(1, 0, eofmsg); \
return (signextend(n)); \
}
make(GetByte, fGetByte, Sign8)
make(GetWord, fGetWord, Sign16)
make(Get3Byte, fGet3Byte, Sign24)
make(GetLong, fGetLong, Sign32)