GRASS GIS 7 Programmer's Manual
7.9.dev(2021)-e5379bbd7
|
GIS Library - Functions to handle file name legality. More...
Go to the source code of this file.
Functions | |
int | G_legal_filename (const char *s) |
Check for legal database file name. More... | |
int | G_check_input_output_name (const char *input, const char *output, int error) |
Check input and output file names. More... | |
GIS Library - Functions to handle file name legality.
(C) 2001-2009, 2013 by the GRASS Development Team
This program is free software under the GNU General Public License (>=v2). Read the file COPYING that comes with GRASS for details.
Definition in file legal_name.c.
int G_check_input_output_name | ( | const char * | input, |
const char * | output, | ||
int | error | ||
) |
Check input and output file names.
Check: 1) output is legal map name, 2) if can find input map, and 3) if input was found in current mapset, check if input != output.
input | input map name |
output | output map name |
error | error type: G_FATAL_EXIT, G_FATAL_PRINT, G_FATAL_RETURN |
Definition at line 68 of file legal_name.c.
int G_legal_filename | ( | const char * | s | ) |
Check for legal database file name.
Legal file names will not begin with '.' or NULL and must not contain the characters, ' ' (space), '/', '"'. '\'' (single quote), '@', ',', '=', '*', and all other non-alphanumeric characters within.
The function prints a warning on error.
s | file name to check |
Definition at line 34 of file legal_name.c.
Referenced by G_make_mapset().