1987-03-09 19:15:41 +00:00
|
|
|
/*
|
|
|
|
* (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.
|
|
|
|
* See the copyright notice in the ACK home directory, in the file "Copyright".
|
|
|
|
*/
|
1994-06-24 11:31:16 +00:00
|
|
|
/* $Id$ */
|
1985-01-10 13:35:39 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Offsets of the pieces of the input module in core.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define IND_HEAD ((ind_t)0)
|
|
|
|
#define IND_SECT(x) (IND_HEAD + sizeof(struct outhead))
|
|
|
|
#define IND_NAME(x) (IND_SECT(x) + (x).oh_nsect * sizeof(struct outsect))
|
|
|
|
#define IND_CHAR(x) (IND_NAME(x) + (x).oh_nname * sizeof(struct outname))
|
|
|
|
#ifdef SYMDBUG
|
|
|
|
#define OFF_DBUG(x) (OFF_CHAR(x) + (x).oh_nchar)
|
1991-12-17 15:49:18 +00:00
|
|
|
#endif /* SYMDBUG */
|