#include <string.h>
#include <grass/gis.h>
#include <grass/Vect.h>
#include <grass/glocale.h>
Go to the source code of this file.
Functions | |
int | Vect_legal_filename (const char *s) |
Check if output is legal vector name. | |
int | Vect_check_input_output_name (const char *input, const char *output, int error) |
Check for input and output vector map name. |
(C) 2001-2008 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_vname.c.
int Vect_check_input_output_name | ( | const char * | input, | |
const char * | output, | |||
int | error | |||
) |
Check for input and output vector map name.
Check
[in] | input | input name |
[in] | output | output name |
[in] | error | error type GV_FATAL_EXIT, GV_FATAL_PRINT, GV_FATAL_RETURN |
1 error
Definition at line 94 of file legal_vname.c.
References Vect_legal_filename().
int Vect_legal_filename | ( | const char * | s | ) |
Check if output is legal vector name.
Rule: [A-Za-z][A-Za-z0-9_@]*
Check also for SQL keywords.
[in] | s | filename to be checked |
-1 if name does not start with letter A..Za..z or if name does not continue with A..Za..z0..9_@
Definition at line 36 of file legal_vname.c.
Referenced by Vect_check_input_output_name(), Vect_copy(), Vect_open_new(), and Vect_rename().