cs_entity.h 552 B

1234567891011121314151617181920
  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 lset entities; /* The pseudo-symboltable. */
  7. entity_p find_entity(valnum vn);
  8. /* Tries to find an entity with value number vn.
  9. */
  10. entity_p en_enter(entity_p enp);
  11. /* Enter the entity in enp in the set of
  12. * entities if it was not already there.
  13. */
  14. void clr_entities();
  15. /* Release all space occupied by our
  16. * pseudo-symboltable.
  17. */