1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-04-20 10:51:48 +02:00
Files
coreutils/lib/setenv.h

55 lines
1.5 KiB
C
Raw Normal View History

2003-08-18 08:58:27 +00:00
/* Setting environment variables.
2004-11-03 07:44:15 +00:00
Copyright (C) 2001-2004 Free Software Foundation, Inc.
1996-04-01 00:16:11 +00:00
2003-08-18 08:58:27 +00:00
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2, or (at your option)
any later version.
1996-04-01 00:16:11 +00:00
2003-08-18 08:58:27 +00:00
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
1996-04-01 00:16:11 +00:00
2003-08-18 08:58:27 +00:00
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software Foundation,
2005-05-14 07:58:06 +00:00
Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */
1996-04-01 00:16:11 +00:00
2003-08-18 08:58:27 +00:00
#if HAVE_SETENV || HAVE_UNSETENV
/* Get setenv(), unsetenv() declarations. */
# include <stdlib.h>
#endif
#ifdef __cplusplus
extern "C" {
#endif
#if !HAVE_SETENV
/* Set NAME to VALUE in the environment.
If REPLACE is nonzero, overwrite an existing value. */
extern int setenv (const char *name, const char *value, int replace);
#endif
2004-11-03 07:44:15 +00:00
#if HAVE_UNSETENV
# if VOID_UNSETENV
/* On some systems, unsetenv() returns void.
This is the case for FreeBSD 4.8, NetBSD 1.6, OpenBSD 3.4. */
# define unsetenv(name) ((unsetenv)(name), 0)
# endif
#else
2003-08-18 08:58:27 +00:00
/* Remove the variable NAME from the environment. */
extern int unsetenv (const char *name);
#endif
#ifdef __cplusplus
}
#endif