home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Frozen Fish 1: Amiga
/
FrozenFish-Apr94.iso
/
bbs
/
alib
/
d2xx
/
d260
/
cclib.lha
/
CCLib
/
CClib.zoo
/
include
/
stdlist.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
|
1989-10-16
|
356 b
|
34 lines
#ifndef STDLIST_H
#define STDLIST_H 1
typedef struct _node
{
struct _node *prev, *next;
} _node;
typedef struct
{
_node *first, *last;
long length;
} _list;
_node *inst_node();
void put_head();
void *add_head();
void put_tail();
void *add_tail();
void *remv_head();
void *remv_tail();
void *r_node();
void *remv_node();
void remv_list();
#endif