cs_alloc.h 603 B

123456789101112131415161718192021222324
  1. extern occur_p newoccur(); /* (line_p l1, l2; bblock_p b)
  2. * Returns a pointer to a new struct occur
  3. * and initializes it.
  4. */
  5. extern oldoccur(); /* (occur_p ocp)
  6. * Release the struct occur ocp points to.
  7. */
  8. extern avail_p newavail(); /* ()
  9. * Return a pointer to a new struct avail.
  10. */
  11. extern oldavail(); /* (avail_p avp)
  12. * Release the struct avail avp points to.
  13. */
  14. extern entity_p newentity(); /* ()
  15. * Return a pointer to a new struct entity.
  16. */
  17. extern oldentity(); /* (entity_p enp)
  18. * Release the struct entity enp points to.
  19. */