Cyclone Scheme  0.28.0
Data Structures | Typedefs | Functions
hashset.h File Reference
#include <stdlib.h>

Go to the source code of this file.

Data Structures

struct  hashset_st
 

Typedefs

typedef struct hashset_sthashset_t
 

Functions

int hashset_add (hashset_t set, void *item)
 
hashset_t hashset_create (void)
 
void hashset_destroy (hashset_t set)
 
int hashset_is_member (hashset_t set, void *item)
 
size_t hashset_num_items (hashset_t set)
 
int hashset_remove (hashset_t set, void *item)
 
void hashset_to_array (hashset_t set, void **items)