home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Club Amiga de Montreal - CAM
/
CAM_CD_1.iso
/
files
/
291.lha
/
CcLib_v1.2
/
include
/
stdlist.h
< prev
next >
Wrap
C/C++ Source or Header
|
1989-10-07
|
356b
|
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