il3_aux.h 484 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. /* I N L I N E S U B S T I T U T I O N
  7. *
  8. * I L 3 _ A U X . H
  9. */
  10. line_p last_line(line_p lines);
  11. /* Find the last line of a list.
  12. */
  13. void app_list(line_p list, line_p l);
  14. /* Put list after l
  15. */
  16. void rem_line(line_p l);
  17. /* Remove a line from a (doubly linked)
  18. * list.
  19. */