SharedMeatAxe
1.0
|
Data Structures | |
class | Set_t |
A Set of Integers. More... | |
Functions | |
int | SetIsValid (const Set_t *s) |
Check a set. More... | |
Set_t * | SetAlloc () |
Create a new set. More... | |
int | SetFree (Set_t *x) |
Destroy a set. More... | |
Set_t * | SetDup (const Set_t *s) |
Duplicate a set. More... | |
int | SetInsert (Set_t *set, long elem) |
Insert an element into a set. More... | |
int | SetContains (const Set_t *set, long elem) |
Check if a number is in a set. More... | |
Set_t* SetAlloc | ( | ) |
int SetContains | ( | const Set_t * | set, |
long | elem | ||
) |
Check if a number is in a set.
set | Pointer to the set. |
elem | Number to check. |
Duplicate a set.
s | Pointer to the set. |
int SetFree | ( | Set_t * | x | ) |
Destroy a set.
This function frees an integer set. The argument must be a Set_t structure which has previously been allocated with SetAlloc().
x | Pointer to the set. |
int SetInsert | ( | Set_t * | set, |
long | elem | ||
) |
Insert an element into a set.
set | Pointer to the set. |
elem | Number to insert. |
int SetIsValid | ( | const Set_t * | s | ) |
Check a set.
This function checks if the argument is a valid set. If the set is o.k., the function returns 1. Otherwise, an error is signaled and, if the error handler does not terminate the program, the function returns 0.
s | Pointer to the set. |