#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





