My Project
programmer's documentation
|
Hash table, intended to provide a symbol table. More...
#include <stdio.h>
#include <string.h>
#include <math.h>
#include "bft_mem.h"
#include "bft_error.h"
#include "mei_hash_table.h"
Functions | |
void | mei_hash_table_create (hash_table_t *const htable, const int modulo) |
Initialize the hash table to the size (modulo) asked for. Allocates space for the correct number of pointers and sets them to NULL. More... | |
struct item * | mei_hash_table_find (hash_table_t *const htable, const char *const key) |
Find a record in a hash table. More... | |
void | mei_hash_table_insert (hash_table_t *const htable, const char *const key, const mei_flag_t type, const double value, const func1_t f1, const func2_t f2) |
Insert a record in a hash table. More... | |
struct item * | mei_hash_table_lookup (hash_table_t *const htable, const char *const key) |
Find a record in a hash table. More... | |
void | mei_hash_table_free (hash_table_t *const htable) |
Destroy a hash table. More... | |
void | mei_hash_table_init (hash_table_t *const htable) |
Initialize the hash table with default symbols. More... | |
void | mei_hash_table_item_print (struct item *item) |
Dump function of a single record. More... | |
void | mei_hash_table_dump (hash_table_t *const htable) |
Dump of table contents for debuging purpose. More... | |
Hash table, intended to provide a symbol table.
void mei_hash_table_create | ( | hash_table_t *const | htable, |
const int | modulo | ||
) |
Initialize the hash table to the size (modulo) asked for. Allocates space for the correct number of pointers and sets them to NULL.
[in] | htable | hash table |
[in] | modulo | size of the hash table |
void mei_hash_table_dump | ( | hash_table_t *const | htable | ) |
Dump of table contents for debuging purpose.
[in] | htable | hash table |
struct item* mei_hash_table_find | ( | hash_table_t *const | htable, |
const char *const | key | ||
) |
Find a record in a hash table.
[in] | htable | hash table |
[in] | key | key |
void mei_hash_table_free | ( | hash_table_t *const | htable | ) |
Destroy a hash table.
[in] | htable | hash table |
void mei_hash_table_init | ( | hash_table_t *const | htable | ) |
Initialize the hash table with default symbols.
[in] | htable | hash table |
void mei_hash_table_insert | ( | hash_table_t *const | htable, |
const char *const | key, | ||
const mei_flag_t | type, | ||
const double | value, | ||
const func1_t | f1, | ||
const func2_t | f2 | ||
) |
Insert a record in a hash table.
[in] | htable | hash table |
[in] | key | key associated to the record |
[in] | type | flag associated to the record |
[in] | value | store a value if the record if a real |
[in] | f1 | pointer on a one argument function |
[in] | f2 | pointer on a two argument function |
void mei_hash_table_item_print | ( | struct item * | item | ) |
Dump function of a single record.
[in] | item | record |
struct item* mei_hash_table_lookup | ( | hash_table_t *const | htable, |
const char *const | key | ||
) |
Find a record in a hash table.
[in] | htable | hash table |
[in] | key | key |