| [ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
For consistency all memory is allocated through a gsl_block
structure. The structure contains two components, the size of an area of
memory and a pointer to the memory. The gsl_block structure looks
like this,
typedef struct
{
size_t size;
double * data;
} gsl_block;
|
The functions for allocating and deallocating blocks are defined in `gsl_block.h'
8.2.1 Block allocation 8.2.2 Reading and writing blocks 8.2.3 Example programs for blocks