curl/lib/getenv.c

62 lines
1.7 KiB
C
Raw Normal View History

2002-09-03 19:52:59 +08:00
/***************************************************************************
* _ _ ____ _
* Project ___| | | | _ \| |
* / __| | | | |_) | |
* | (__| |_| | _ <| |___
1999-12-29 22:20:26 +08:00
* \___|\___/|_| \_\_____|
*
* Copyright (C) 1998 - 2012, Daniel Stenberg, <daniel@haxx.se>, et al.
1999-12-29 22:20:26 +08:00
*
2002-09-03 19:52:59 +08:00
* This software is licensed as described in the file COPYING, which
* you should have received as part of this distribution. The terms
* are also available at http://curl.haxx.se/docs/copyright.html.
*
2001-01-03 17:29:33 +08:00
* You may opt to use, copy, modify, merge, publish, distribute and/or sell
* copies of the Software, and permit persons to whom the Software is
2002-09-03 19:52:59 +08:00
* furnished to do so, under the terms of the COPYING file.
1999-12-29 22:20:26 +08:00
*
2001-01-03 17:29:33 +08:00
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
* KIND, either express or implied.
1999-12-29 22:20:26 +08:00
*
2002-09-03 19:52:59 +08:00
***************************************************************************/
1999-12-29 22:20:26 +08:00
2001-11-12 18:19:36 +08:00
#include "setup.h"
#ifdef __VMS
2001-08-06 20:19:26 +08:00
#include <unixlib.h>
#endif
#include <curl/curl.h>
#include "curl_memory.h"
2000-10-09 19:12:34 +08:00
#include "memdebug.h"
static
2001-08-14 16:25:47 +08:00
char *GetEnv(const char *variable)
1999-12-29 22:20:26 +08:00
{
#ifdef _WIN32_WCE
return NULL;
#else
1999-12-29 22:20:26 +08:00
#ifdef WIN32
char env[MAX_PATH]; /* MAX_PATH is from windef.h */
1999-12-29 22:20:26 +08:00
char *temp = getenv(variable);
env[0] = '\0';
if(temp != NULL)
ExpandEnvironmentStringsA(temp, env, sizeof(env));
return (env[0] != '\0')?strdup(env):NULL;
2001-08-06 20:19:26 +08:00
#else
1999-12-29 22:20:26 +08:00
char *env = getenv(variable);
#ifdef __VMS
if(env && strcmp("HOME",variable) == 0)
2008-09-12 19:18:17 +08:00
env = decc_translate_vms(env);
2001-08-06 20:19:26 +08:00
#endif
2007-09-28 02:39:10 +08:00
return (env && env[0])?strdup(env):NULL;
1999-12-29 22:20:26 +08:00
#endif
#endif
1999-12-29 22:20:26 +08:00
}
2001-08-14 16:25:47 +08:00
char *curl_getenv(const char *v)
1999-12-29 22:20:26 +08:00
{
return GetEnv(v);
}