cs_alloc.h 778 B

1234567891011121314151617181920212223242526272829
  1. /* $Id$ */
  2. /*
  3. * (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.
  4. * See the copyright notice in the ACK home directory, in the file "Copyright".
  5. */
  6. extern occur_p newoccur(); /* (line_p l1, l2; bblock_p b)
  7. * Returns a pointer to a new struct occur
  8. * and initializes it.
  9. */
  10. extern oldoccur(); /* (occur_p ocp)
  11. * Release the struct occur ocp points to.
  12. */
  13. extern avail_p newavail(); /* ()
  14. * Return a pointer to a new struct avail.
  15. */
  16. extern oldavail(); /* (avail_p avp)
  17. * Release the struct avail avp points to.
  18. */
  19. extern entity_p newentity(); /* ()
  20. * Return a pointer to a new struct entity.
  21. */
  22. extern oldentity(); /* (entity_p enp)
  23. * Release the struct entity enp points to.
  24. */