GRASS Programmer's Manual
6.5.svn(2014)-r66266
|
GIS Library - Routines related to user's GRASS configuration, tmp, and miscellaneous files. More...
#include <stdio.h>
#include <stdlib.h>
#include <assert.h>
#include <unistd.h>
#include <string.h>
#include <pwd.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <errno.h>
#include <grass/gis.h>
Go to the source code of this file.
Functions | |
char * | G_rc_path (const char *element, const char *item) |
Returns path to element and item. More... | |
GIS Library - Routines related to user's GRASS configuration, tmp, and miscellaneous files.
Functions related to the user's GRASS configuration, tmp, and miscellaneous files. Provides a set of routines for creating and accessing elements within the user's "rc" directory. The directory is in $HOME/.grass.
NOTE: As of 2001-03-25 this file is not hooked up. It is provided as a candidate for handling $HOME/.grass files and subdirectories. There may be more functionality desired (such as deletion routines, directory globs).
(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 user_config.c.
char* G_rc_path | ( | const char * | element, |
const char * | item | ||
) |
Returns path to element and item.
Either element or item can be NULL, but not both. If element is NULL, then the file is assumed to live at the top level. If file is NULL, then it is assumed the caller is not interested in the file. If the element or rc dir do not exist, they are created. However, the file is never checked for.
[in] | element | |
[in] | item |
Definition at line 291 of file user_config.c.