cs_alloc.h 720 B

123456789101112131415161718192021222324252627282930
  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. occur_p newoccur(line_p l1, line_p l2, bblock_p b);
  7. /* Returns a pointer to a new struct occur
  8. * and initializes it.
  9. */
  10. void oldoccur(occur_p ocp);
  11. /* Release the struct occur ocp points to.
  12. */
  13. avail_p newavail();
  14. /* Return a pointer to a new struct avail.
  15. */
  16. void oldavail(avail_p avp);
  17. /* Release the struct avail avp points to.
  18. */
  19. entity_p newentity();
  20. /* Return a pointer to a new struct entity.
  21. */
  22. void oldentity(entity_p enp);
  23. /* Release the struct entity enp points to.
  24. */