1994-06-24 11:31:16 +00:00
|
|
|
/* $Id$ */
|
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".
|
|
|
|
*/
|
2017-11-15 01:35:18 +00:00
|
|
|
occur_p newoccur(line_p l1, line_p l2, bblock_p b);
|
|
|
|
/*
|
1984-11-26 13:43:22 +00:00
|
|
|
* Returns a pointer to a new struct occur
|
|
|
|
* and initializes it.
|
|
|
|
*/
|
|
|
|
|
2017-11-15 01:35:18 +00:00
|
|
|
void oldoccur(occur_p ocp); /*
|
1984-11-26 13:43:22 +00:00
|
|
|
* Release the struct occur ocp points to.
|
|
|
|
*/
|
|
|
|
|
2017-11-15 01:35:18 +00:00
|
|
|
avail_p newavail(void); /*
|
1984-11-26 13:43:22 +00:00
|
|
|
* Return a pointer to a new struct avail.
|
|
|
|
*/
|
|
|
|
|
2017-11-15 01:35:18 +00:00
|
|
|
void oldavail(avail_p avp); /*
|
1984-11-26 13:43:22 +00:00
|
|
|
* Release the struct avail avp points to.
|
|
|
|
*/
|
|
|
|
|
2017-11-15 01:35:18 +00:00
|
|
|
entity_p newentity(void); /*
|
1984-11-26 13:43:22 +00:00
|
|
|
* Return a pointer to a new struct entity.
|
|
|
|
*/
|
|
|
|
|
2017-11-17 20:46:24 +00:00
|
|
|
void oldentity(entity_p enp); /*
|
1984-11-26 13:43:22 +00:00
|
|
|
* Release the struct entity enp points to.
|
|
|
|
*/
|