Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Add Doxygen documentation for mallocators
[simgrid.git] / src / xbt / dict_private.h
1 /* $Id$ */
2
3 /* dict_elm - elements of generic dictionnaries                             */
4 /* This file is not to be loaded from anywhere but dict.c                   */
5
6 /* Copyright (c) 2003, 2004 Martin Quinson. All rights reserved.            */
7
8 /* This program is free software; you can redistribute it and/or modify it
9  * under the terms of the license (GNU LGPL) which comes with this package. */
10
11 #ifndef _XBT_DICT_PRIVATE_H__
12 #define _XBT_DICT_PRIVATE_H__
13
14 #include "xbt/sysdep.h"
15 #include "xbt/log.h"
16 #include "xbt/ex.h"
17 #include "xbt/dynar.h"
18 #include "xbt/dict.h"
19
20 typedef struct xbt_dictelm_ *xbt_dictelm_t;
21
22 typedef struct xbt_dictelm_ {
23   char *key;
24   int key_len;
25   void *content;
26   void_f_pvoid_t *free_f;
27   xbt_dictelm_t next;
28 } s_xbt_dictelm_t;
29
30 typedef struct xbt_dict_ {
31   xbt_dictelm_t *table;
32   int table_size;
33 } s_xbt_dict_t;
34
35 typedef struct xbt_dict_cursor_ s_xbt_dict_cursor_t;
36
37 unsigned int xbt_dict_hash(const char *str);
38
39 /*####[ Function prototypes ]################################################*/
40 xbt_dictelm_t xbt_dictelm_new(const char *key,
41                               int key_len,
42                               void *content,
43                               void_f_pvoid_t free_f,
44                               xbt_dictelm_t next);
45 void xbt_dictelm_free(xbt_dictelm_t element);
46 void xbt_dict_add_element(xbt_dict_t dict, xbt_dictelm_t element);
47
48 #endif  /* _XBT_DICT_PRIVATE_H_ */