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

⟦c78512e5e⟧ TextFile

    Length: 709 (0x2c5)
    Types: TextFile
    Names: »mf.h«

Derivation

└─⟦060c9c824⟧ Bits:30007080 DKUUG TeX 2/12/89
    └─⟦this⟧ »./tex82/mfware/CMFware/mf.h« 

TextFile


#include <stdio.h>

/* General routines and things */
#define	true	1		/* Pascal constants */
#define	false	0
#define	null			/* Empty statement inserted by pxp */
#define	chr(c)	(c)		/* These three are easy */
#define	round(f)	((int) (f + (f >= 0 ? 0.5 : -0.5)))
#define	ord(c)	(c)
#define	eof(f)	feof(f)
#define	odd(x)	((x) & 1)	/* Assuming x is an integer, which it is */
#define	free	free_array	/* Avoid conflict with free/malloc */
typedef int	integer;	/* Emulate Pascal types */
typedef	int	boolean;
typedef	double	real;
#define	maxint	(1<<30)

/* I/O */
/* Read is only used on byte (ascii/binary) files */
#define	read(f,c)	c=getc(f)
#define	inputln		input_ln()

/* Forwards/externs */
boolean eoln();