GRASS GIS 7 Programmer's Manual
7.9.dev(2021)-e5379bbd7
|
#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. More... | |
void | Rast3d_print_error (const char *msg) |
Prints error message. More... | |
void | Rast3d_fatal_error (const char *msg,...) |
Prints fatal error message. More... | |
void | Rast3d_fatal_error_noargs (const char *msg) |
void | Rast3d_error (const char *msg,...) |
void Rast3d_error | ( | const char * | msg, |
... | |||
) |
Definition at line 71 of file raster3d/error.c.
void Rast3d_fatal_error | ( | const char * | msg, |
... | |||
) |
Prints fatal error message.
This function prints the fatal error message msg, and terminates the program with an error status.
msg |
Definition at line 54 of file raster3d/error.c.
void Rast3d_fatal_error_noargs | ( | const char * | msg | ) |
Definition at line 66 of file raster3d/error.c.
References G_fatal_error().
void Rast3d_print_error | ( | const char * | msg | ) |
Prints error message.
This function prints the error message msg to stderr and returns.
msg |
Definition at line 36 of file raster3d/error.c.
void Rast3d_skip_error | ( | const char * | msg | ) |
This function ignores the error.
msg |
Definition at line 21 of file raster3d/error.c.