Classes | |
| struct | DictList |
| struct | DictListNode |
Macros | |
| #define | __gl_dictListInsert(d, k) |
| #define | __gl_dictListKey(n) |
| #define | __gl_dictListMax(d) |
| #define | __gl_dictListMin(d) |
| #define | __gl_dictListPred(n) |
| #define | __gl_dictListSucc(n) |
| #define | Dict DictList |
| #define | dictDelete(dict, node) |
| #define | dictDeleteDict(dict) |
| #define | dictInsert(dict, key) |
| #define | dictInsertBefore(dict, node, key) |
| #define | DictKey DictListKey |
| #define | dictKey(n) |
| #define | dictMax(d) |
| #define | dictMin(d) |
| #define | dictNewDict(frame, leq) |
| #define | DictNode DictListNode |
| #define | dictPred(n) |
| #define | dictSearch(dict, key) |
| #define | dictSucc(n) |
Typedefs | |
| typedef struct DictList | DictList |
| typedef void * | DictListKey |
| typedef struct DictListNode | DictListNode |
Functions | |
| void | __gl_dictListDelete (DictList *dict, DictListNode *node) |
| void | __gl_dictListDeleteDict (DictList *dict) |
| DictListNode * | __gl_dictListInsertBefore (DictList *dict, DictListNode *node, DictListKey key) |
| DictList * | __gl_dictListNewDict (void *frame, int(*leq)(void *frame, DictListKey key1, DictListKey key2)) |
| DictListNode * | __gl_dictListSearch (DictList *dict, DictListKey key) |
| #define __gl_dictListInsert | ( | d, | |
| k ) |
Definition at line 83 of file dict-list.h.
| #define __gl_dictListKey | ( | n | ) |
Definition at line 78 of file dict-list.h.
| #define __gl_dictListMax | ( | d | ) |
Definition at line 82 of file dict-list.h.
| #define __gl_dictListMin | ( | d | ) |
Definition at line 81 of file dict-list.h.
| #define __gl_dictListPred | ( | n | ) |
Definition at line 80 of file dict-list.h.
| #define __gl_dictListSucc | ( | n | ) |
Definition at line 79 of file dict-list.h.
| #define Dict DictList |
Definition at line 41 of file dict-list.h.
| #define dictDelete | ( | dict, | |
| node ) |
Definition at line 50 of file dict-list.h.
| #define dictDeleteDict | ( | dict | ) |
Definition at line 45 of file dict-list.h.
| #define dictInsert | ( | dict, | |
| key ) |
Definition at line 48 of file dict-list.h.
| #define dictInsertBefore | ( | dict, | |
| node, | |||
| key ) |
Definition at line 49 of file dict-list.h.
| #define DictKey DictListKey |
Definition at line 40 of file dict-list.h.
| #define dictKey | ( | n | ) |
Definition at line 52 of file dict-list.h.
| #define dictMax | ( | d | ) |
Definition at line 56 of file dict-list.h.
| #define dictMin | ( | d | ) |
Definition at line 55 of file dict-list.h.
| #define dictNewDict | ( | frame, | |
| leq ) |
Definition at line 44 of file dict-list.h.
| #define DictNode DictListNode |
Definition at line 42 of file dict-list.h.
| #define dictPred | ( | n | ) |
Definition at line 54 of file dict-list.h.
| #define dictSearch | ( | dict, | |
| key ) |
Definition at line 47 of file dict-list.h.
| #define dictSucc | ( | n | ) |
Definition at line 53 of file dict-list.h.
| typedef struct DictList DictList |
Definition at line 61 of file dict-list.h.
| typedef void* DictListKey |
Definition at line 60 of file dict-list.h.
| typedef struct DictListNode DictListNode |
Definition at line 62 of file dict-list.h.
| void __gl_dictListDelete | ( | DictList * | dict, |
| DictListNode * | node ) |
| DictListNode * __gl_dictListInsertBefore | ( | DictList * | dict, |
| DictListNode * | node, | ||
| DictListKey | key ) |
| DictList * __gl_dictListNewDict | ( | void * | frame, |
| int(* | leq )(void *frame, DictListKey key1, DictListKey key2) ) |
| DictListNode * __gl_dictListSearch | ( | DictList * | dict, |
| DictListKey | key ) |