- Fixed a condition check in termlistAddNew.

- Roles are now computed from prec for each claim.
This commit is contained in:
ccremers
2004-08-27 12:36:23 +00:00
parent 542044e36f
commit d8e0e93bcf
5 changed files with 113 additions and 19 deletions

View File

@@ -2,6 +2,8 @@
#define LABEL
#include "term.h"
#include "list.h"
#include "system.h"
/*
* Structure to store label information
@@ -16,7 +18,8 @@ struct labelinfo
typedef struct labelinfo* Labelinfo;
Labelinfo label_create (const Term label, const Term protocol);
Labelinfo label_create (const Term label, const Protocol protocol);
void label_destroy (Labelinfo linfo);
Labelinfo label_find (List labellist, const Term label);
#endif