home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga ISO Collection
/
AmigaUtilCD2.iso
/
Workbench
/
Libs
/
ProgArgs.lha
/
ProgArgs
/
Examples
/
Support
/
lists.h
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
C/C++ Source or Header
|
1995-04-08
|
330 b
|
19 lines
#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