2011-03-11 18:14:32 -05:00
|
|
|
.\" **************************************************************************
|
|
|
|
.\" * _ _ ____ _
|
|
|
|
.\" * Project ___| | | | _ \| |
|
|
|
|
.\" * / __| | | | |_) | |
|
|
|
|
.\" * | (__| |_| | _ <| |___
|
|
|
|
.\" * \___|\___/|_| \_\_____|
|
|
|
|
.\" *
|
|
|
|
.\" * Copyright (C) 1998 - 2011, Daniel Stenberg, <daniel@haxx.se>, et al.
|
|
|
|
.\" *
|
|
|
|
.\" * This software is licensed as described in the file COPYING, which
|
|
|
|
.\" * you should have received as part of this distribution. The terms
|
2016-02-02 18:19:02 -05:00
|
|
|
.\" * are also available at https://curl.haxx.se/docs/copyright.html.
|
2011-03-11 18:14:32 -05: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
|
|
|
|
.\" * furnished to do so, under the terms of the COPYING file.
|
|
|
|
.\" *
|
|
|
|
.\" * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
.\" * KIND, either express or implied.
|
|
|
|
.\" *
|
|
|
|
.\" **************************************************************************
|
2004-04-30 04:38:08 -04:00
|
|
|
.TH curl_getenv 3 "30 April 2004" "libcurl 7.12" "libcurl Manual"
|
2002-03-04 05:09:48 -05:00
|
|
|
.SH NAME
|
|
|
|
curl_getenv - return value for environment name
|
|
|
|
.SH SYNOPSIS
|
|
|
|
.B #include <curl/curl.h>
|
|
|
|
.sp
|
2004-02-27 10:34:06 -05:00
|
|
|
.BI "char *curl_getenv(const char *" name ");"
|
2002-03-04 05:09:48 -05:00
|
|
|
.ad
|
|
|
|
.SH DESCRIPTION
|
|
|
|
curl_getenv() is a portable wrapper for the getenv() function, meant to
|
|
|
|
emulate its behaviour and provide an identical interface for all operating
|
|
|
|
systems libcurl builds on (including win32).
|
2004-04-30 04:38:08 -04:00
|
|
|
.SH AVAILABILITY
|
|
|
|
This function will be removed from the public libcurl API in a near future. It
|
|
|
|
will instead be made "available" by source code access only, and then as
|
|
|
|
curlx_getenv().
|
2002-03-04 05:09:48 -05:00
|
|
|
.SH RETURN VALUE
|
|
|
|
If successful, curl_getenv() returns a pointer to the value of the specified
|
2006-03-17 03:22:50 -05:00
|
|
|
environment. The memory it refers to is malloc()ed so the application must
|
|
|
|
free() this when the data is no longer needed. When \fIcurl_getenv(3)\fP fails
|
|
|
|
to find the specified name, it returns a null pointer.
|
2002-03-04 05:09:48 -05:00
|
|
|
.SH NOTE
|
|
|
|
Under unix operating systems, there isn't any point in returning an allocated
|
|
|
|
memory, although other systems won't work properly if this isn't done. The
|
2008-12-28 16:56:56 -05:00
|
|
|
unix implementation thus has to suffer slightly from the drawbacks of other
|
2002-03-04 05:09:48 -05:00
|
|
|
systems.
|
|
|
|
.SH "SEE ALSO"
|
|
|
|
.BR getenv "(3C), "
|