Lines Matching refs:Node
36 typedef struct node Node; typedef
40 Node *list;
41 Node *hasharray[HASHSIZE];
47 Node *findnode PROTO((List * list, const char *key));
48 Node *findnode_fn PROTO((List * list, const char *key));
49 Node *getnode PROTO((void));
50 int insert_before PROTO((List * list, Node * marker, Node * p));
51 int addnode PROTO((List * list, Node * p));
52 int addnode_at_front PROTO((List * list, Node * p));
53 int walklist PROTO((List * list, int (*)(Node *n, void *closure), void *closure));
56 void delnode PROTO((Node * p));
57 void freenode PROTO((Node * p));
58 void sortlist PROTO((List * list, int (*)(const Node *, const Node *)));
59 int fsortcmp PROTO((const Node * p, const Node * q));