ack/util/ego/cs/cs_alloc.h

31 lines
750 B
C
Raw Permalink Normal View History

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".
*/
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.
*/
void oldoccur(occur_p ocp); /*
1984-11-26 13:43:22 +00:00
* Release the struct occur ocp points to.
*/
avail_p newavail(void); /*
1984-11-26 13:43:22 +00:00
* Return a pointer to a new struct avail.
*/
void oldavail(avail_p avp); /*
1984-11-26 13:43:22 +00:00
* Release the struct avail avp points to.
*/
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.
*/