File mplib1/min_list.h


Preprocessor definitions

#define MPLIB1_MINLIST

#define MIN_NODE_SIZE

#define MIN_LIST_SIZE

#define INIT_MIN_NODE( node )

#define ADD_MIN_AFTER( n1, n2 )

#define ADD_MIN_BEFORE( n1, n2 )


Type struct Min_Node

struct Min_Node
struct Min_Node  
   {  
      struct Min_Node* ln_Succ;  
      struct Min_Node* ln_Pred;  
   }  

Type struct Min_List

struct Min_List
struct Min_List  
   {  
      struct Min_Node ln_Head;  
      struct Min_Node ln_Tail;  
   }  

Typedef Min_Node

typedef struct Min_Node Min_Node
See: Type struct Min_Node

Typedef Min_List

typedef struct Min_List Min_List
See: Type struct Min_List