123456789101112131415161718192021222324252627282930313233343536373839 |
- #include "structures/buffer.h"
- #include "model/rdf/term.h"
- typedef struct Index LSUP_Index;
- LSUP_Index *LSUP_index_new(size_t capacity);
- int LSUP_index_add_pair(LSUP_Index *idx, LSUP_Key key, LSUP_SerTerm *sterm);
- int LSUP_index_add(LSUP_Index *idx, LSUP_SerTerm *sterm);
- LSUP_SerTerm *LSUP_index_lookup(LSUP_Index *idx, LSUP_Key key);
- void LSUP_index_free(LSUP_Index *idx);
|