home *** CD-ROM | disk | FTP | other *** search
-
- #ifndef SUPPORT_LISTS_H
- #define SUPPORT_LISTS_H
-
- #ifndef EXEC_LISTS_H
- #include <exec/lists.h>
- #endif
-
- void *num_to_node(struct List *lst,ULONG num);
- ULONG node_to_num(struct List *lst,void *nd);
-
- void *head_node(struct List *lst);
- void *tail_node(struct List *lst);
-
- void *next_node(void *nd);
- void *prev_node(void *nd);
-
- #endif
-