GRASS GIS 8 Programmer's Manual  8.4.0dev(2024)-535c39c9fc
raster3d/alloc.c File Reference
#include <stdio.h>
#include <stdlib.h>
#include <sys/types.h>
#include <unistd.h>
#include "raster3d_intern.h"
Include dependency graph for raster3d/alloc.c:

Go to the source code of this file.

Functions

void * Rast3d_malloc (int nBytes)
 Same as malloc (nBytes), except that in case of error Rast3d_error() is invoked. More...
 
void * Rast3d_realloc (void *ptr, int nBytes)
 Same as realloc (ptr, nBytes), except that in case of error Rast3d_error() is invoked. More...
 
void Rast3d_free (void *buf)
 Same as free (ptr). More...
 

Function Documentation

◆ Rast3d_free()

void Rast3d_free ( void *  buf)

Same as free (ptr).

Parameters
buf
Returns
void

Definition at line 66 of file raster3d/alloc.c.

References free().

Referenced by Rast3d_free_tiles().

◆ Rast3d_malloc()

void* Rast3d_malloc ( int  nBytes)

Same as malloc (nBytes), except that in case of error Rast3d_error() is invoked.

Parameters
nBytes
Returns
void *: a pointer ... if successful, NULL ... otherwise.

Definition at line 21 of file raster3d/alloc.c.

References malloc(), NULL, and Rast3d_error().

Referenced by Rast3d_init_fp_xdr(), Rast3d_init_index(), and Rast3d_open_cell_old_no_header().

◆ Rast3d_realloc()

void* Rast3d_realloc ( void *  ptr,
int  nBytes 
)

Same as realloc (ptr, nBytes), except that in case of error Rast3d_error() is invoked.

Parameters
ptr
nBytes
Returns
void *: a pointer ... if successful, NULL ... otherwise.

Definition at line 46 of file raster3d/alloc.c.

References NULL, and Rast3d_error().

Referenced by Rast3d_init_fp_xdr().