getenv.c
Go to the documentation of this file.
00001 /***************************************************************************
00002  *                                  _   _ ____  _
00003  *  Project                     ___| | | |  _ \| |
00004  *                             / __| | | | |_) | |
00005  *                            | (__| |_| |  _ <| |___
00006  *                             \___|\___/|_| \_\_____|
00007  *
00008  * Copyright (C) 1998 - 2012, Daniel Stenberg, <daniel@haxx.se>, et al.
00009  *
00010  * This software is licensed as described in the file COPYING, which
00011  * you should have received as part of this distribution. The terms
00012  * are also available at https://curl.haxx.se/docs/copyright.html.
00013  *
00014  * You may opt to use, copy, modify, merge, publish, distribute and/or sell
00015  * copies of the Software, and permit persons to whom the Software is
00016  * furnished to do so, under the terms of the COPYING file.
00017  *
00018  * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
00019  * KIND, either express or implied.
00020  *
00021  ***************************************************************************/
00022 
00023 #include "curl_setup.h"
00024 
00025 #include <curl/curl.h>
00026 #include "curl_memory.h"
00027 
00028 #include "memdebug.h"
00029 
00030 static
00031 char *GetEnv(const char *variable)
00032 {
00033 #if defined(_WIN32_WCE) || defined(CURL_WINDOWS_APP)
00034   (void)variable;
00035   return NULL;
00036 #else
00037 #ifdef WIN32
00038   char env[MAX_PATH]; /* MAX_PATH is from windef.h */
00039   char *temp = getenv(variable);
00040   env[0] = '\0';
00041   if(temp != NULL)
00042     ExpandEnvironmentStringsA(temp, env, sizeof(env));
00043   return (env[0] != '\0')?strdup(env):NULL;
00044 #else
00045   char *env = getenv(variable);
00046   return (env && env[0])?strdup(env):NULL;
00047 #endif
00048 #endif
00049 }
00050 
00051 char *curl_getenv(const char *v)
00052 {
00053   return GetEnv(v);
00054 }


rc_visard_driver
Author(s): Heiko Hirschmueller , Christian Emmerich , Felix Ruess
autogenerated on Thu Jun 6 2019 20:43:02