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".
|
|
|
|
*/
|
1994-06-24 14:02:31 +00:00
|
|
|
/* $Id$ */
|
1985-01-08 15:34:54 +00:00
|
|
|
|
|
|
|
#define MAXCREG 4
|
|
|
|
|
|
|
|
struct perm {
|
|
|
|
struct perm *p_next;
|
|
|
|
int p_rar[MAXCREG];
|
|
|
|
};
|
2017-11-13 17:44:17 +00:00
|
|
|
|
|
|
|
struct perm *tuples(rl_p *, int);
|