#include <stdio.h>#include <stdlib.h>#include <unistd.h>#include "hydroalloc_mem.h"Go to the source code of this file.
Functions | |
| FILE ** | allocate_1d_F (int nrows) |
| void * | matrixalloc1D (int max_width, long size) |
| void ** | matrixalloc2D (int max_width, int max_length, long size) |
| void *** | matrixalloc3D (int max_width, int max_length, int max_height, long size) |
| FILE** allocate_1d_F | ( | int | nrows | ) |
Definition at line 7 of file hydroalloc_mem.c.
Referenced by hydroopenfiles(), hydroreadhypsom(), and hydroswap().
| void* matrixalloc1D | ( | int | max_width, | |
| long | size | |||
| ) |
Definition at line 28 of file hydroalloc_mem.c.
| void** matrixalloc2D | ( | int | max_width, | |
| int | max_length, | |||
| long | size | |||
| ) |
Definition at line 53 of file hydroalloc_mem.c.
| void*** matrixalloc3D | ( | int | max_width, | |
| int | max_length, | |||
| int | max_height, | |||
| long | size | |||
| ) |
Definition at line 83 of file hydroalloc_mem.c.
1.5.2