1994-06-24 11:31:16 +00:00
|
|
|
/* $Id$ */
|
1987-03-09 19:15:41 +00:00
|
|
|
/*
|
|
|
|
* (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.
|
|
|
|
* See the copyright notice in the ACK home directory, in the file "Copyright".
|
|
|
|
*/
|
1984-11-26 14:14:55 +00:00
|
|
|
/* I N L I N E S U B S T I T U T I O N
|
|
|
|
*
|
|
|
|
* I L 3 _ A U X . H
|
|
|
|
*/
|
|
|
|
|
2019-10-31 22:05:22 +00:00
|
|
|
line_p last_line(line_p list); /*
|
1984-11-26 14:14:55 +00:00
|
|
|
* Find the last line of a list.
|
|
|
|
*/
|
2019-10-31 22:05:22 +00:00
|
|
|
void app_list(line_p list, line_p l);
|
|
|
|
/*
|
1984-11-26 14:14:55 +00:00
|
|
|
* Put list after l
|
|
|
|
*/
|
2019-10-31 22:05:22 +00:00
|
|
|
void rem_line(line_p l); /*
|
1984-11-26 14:14:55 +00:00
|
|
|
* Remove a line from a (doubly linked)
|
|
|
|
* list.
|
|
|
|
*/
|