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 15:04:22 +00:00
|
|
|
/* O P E R A T I O N S F O R
|
|
|
|
* L O N G S E T S
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2017-11-15 21:29:27 +00:00
|
|
|
lset Lempty_set(void);
|
|
|
|
bool Lis_elem(Lelem_t, lset);
|
|
|
|
void Ladd(Lelem_t, lset *);
|
|
|
|
void Lremove(Lelem_t, lset *);
|
|
|
|
Lindex Lfirst(lset);
|
|
|
|
Lindex Lnext(Lindex, lset);
|
|
|
|
Lelem_t Lelem(Lindex);
|
|
|
|
void Ljoin(lset, lset *);
|
|
|
|
void Ldeleteset(lset);
|
|
|
|
bool Lis_subset(lset, lset);
|
|
|
|
short Lnrelems(lset);
|