Lines Matching refs:DictNode
42 #define DictNode DictListNode
62 typedef struct DictNode DictNode;
74 DictNode *dictSearch( Dict *dict, DictKey key );
75 DictNode *dictInsertBefore( Dict *dict, DictNode *node, DictKey key );
76 void dictDelete( Dict *dict, DictNode *node );
88 struct DictNode {
90 DictNode *next;
91 DictNode *prev;
95 DictNode head;