NAME

Queue_element - Linked list type

SYNOPSIS

#include "l/l_queue.h"

Example compile flags (system dependent):
  -DLINUX_X86_64 -DLINUX_X86_64_OPTERON  -DGNU_COMPILER 
   -I/home/kobus/include
   -L/home/kobus/misc/load/linux_x86_64_opteron -L/usr/lib/x86_64-linux-gnu
  -lKJB                               -lfftw3  -lgsl -lgslcblas -ljpeg  -lSVM -lstdc++                    -lpthread -lSLATEC -lg2c    -lacml -lacml_mv -lblas -lg2c      -lncursesw 


typedef struct Queue_element
{
	struct Queue_element *next;
	struct Queue_element *previous;
	void *contents;
}
Queue_element;

PARAMETERS

struct Queue_element *next
Pointer to next element
struct Queue_element *previous
Pointer to previous element
void *contents
Pointer to anything

DESCRIPTION

This type is linked list type for the KJB library.

DISCLAIMER

This software is not adequatedly tested. It is recomended that results are checked independantly where appropriate.

AUTHOR

Kobus Barnard

DOCUMENTER

Kobus Barnard