home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
CD Shareware Magazine 1996 December
/
CD_shareware_12-96.iso
/
DOS
/
Programa
/
CCDL122.ZIP
/
INCLUDE
/
LIST.H
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1995-02-21
|
281 b
|
14 lines
#ifndef _LIST_H
#define _LIST_H
/*
* Linked list type. Used for filenames, module number list, segment lists
*/
typedef struct _list_ {
struct _list_ *link; // Link to next element
void *data; // Generic data
} LIST;
#include "list.p"
#endif _LIST_H