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 - download
Index: ┃ T m

⟦a2a7182e3⟧ TextFile

    Length: 544 (0x220)
    Types: TextFile
    Names: »mem.h«

Derivation

└─⟦a0efdde77⟧ Bits:30001252 EUUGD11 Tape, 1987 Spring Conference Helsinki
    └─ ⟦this⟧ »EUUGD11/euug-87hel/sec8/mcp/src/mem.h« 

TextFile

#define SHORT_BUF	16
#define MEDIUM_BUF	48
#define	LONG_BUF	256
#define NIL		((addr)0)
#define NOMORE		-1
#define	UNDEFINED	-1

#define	bcopy(dest, source, n)				\
	{						\
		register char *from = (char *)source;	\
		register char *to = (char *) dest;	\
		register int ii;			\
		int nn = n;				\
		for (ii=0; ii<nn; ii++)			\
			*to++ = *from++;		\
	}

typedef	int 		addr_t;
typedef	addr_t *	addr;	/* general purpose pointer type */
typedef union {
		addr	p_ap;
		char	*p_cp;
	} flexaddr;		/* to make lint shut UP! */

addr	MEM(), DELTAMEM();