|
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 i
Length: 735 (0x2df) Types: TextFile Names: »iff_local.h++«
└─⟦a0efdde77⟧ Bits:30001252 EUUGD11 Tape, 1987 Spring Conference Helsinki └─⟦this⟧ »EUUGD11/euug-87hel/sec1/image/varc++/iff_local.h++«
/* local.h definitions local to UR M. Swain University of Rochester 8-JAN-86 */ # define TRUE 1 # define FALSE 0 # define IN 0 # define OUT 1 # define MAXFNAMELEN 30 static char prog_name [ MAXFNAMELEN ] ; # define MAX(a,b) ((a) > (b) ? (a) : (b)) # define MIN(a,b) ((a) < (b) ? (a) : (b)) # define ABS(a) ((a) > 0 ? (a) : -(a)) # define getimage(ifp,annote,im) { getheader(ifp,annote);\ im = (long *) malloc (ifp->nrows * ifp->ncols * sizeof (long));\ getimg (ifp, im); } /* Copyright (C) 1986, David Sher in the University of Rochester Permission is granted to any individual or institution to use, copy, or redistribute this software so long as it is not sold for profit, provided this copyright notice is retained. */