|
GRASS 8 Programmer's Manual 8.6.0dev(2026)-1d1e47ad9d
|
#include <stdio.h>#include <stdlib.h>#include <sys/types.h>#include <unistd.h>#include <time.h>#include <stdarg.h>#include <grass/gis.h>#include "raster3d_intern.h"
Go to the source code of this file.
Functions | |
| void | Rast3d_skip_error (const char *msg) |
| This function ignores the error. | |
| void | Rast3d_print_error (const char *msg) |
| Prints error message. | |
| void | Rast3d_fatal_error (const char *msg,...) |
| Prints fatal error message. | |
| void | Rast3d_fatal_error_noargs (const char *msg) |
| void | Rast3d_error (const char *msg,...) |
Definition at line 65 of file raster3d/error.c.
Prints fatal error message.
This function prints the fatal error message msg, and terminates the program with an error status.
| msg |
Definition at line 48 of file raster3d/error.c.
References G_fatal_error().
Definition at line 60 of file raster3d/error.c.
References G_fatal_error().
Referenced by Rast3d_init_defaults().
Prints error message.
This function prints the error message msg to stderr and returns.
| msg |
Definition at line 32 of file raster3d/error.c.
Referenced by Rast3d_init_defaults().
This function ignores the error.
| msg |
Definition at line 19 of file raster3d/error.c.