|
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 m
Length: 709 (0x2c5) Types: TextFile Names: »mf.h«
└─⟦060c9c824⟧ Bits:30007080 DKUUG TeX 2/12/89 └─⟦this⟧ »./tex82/mfware/CMFware/mf.h«
#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();