Initial revision
[platform/upstream/curl.git] / lib / getenv.h
1 #ifndef __GETENV_H
2 #define __GETENV_H
3 /*****************************************************************************
4  *                                  _   _ ____  _     
5  *  Project                     ___| | | |  _ \| |    
6  *                             / __| | | | |_) | |    
7  *                            | (__| |_| |  _ <| |___ 
8  *                             \___|\___/|_| \_\_____|
9  *
10  *  The contents of this file are subject to the Mozilla Public License
11  *  Version 1.0 (the "License"); you may not use this file except in
12  *  compliance with the License. You may obtain a copy of the License at
13  *  http://www.mozilla.org/MPL/
14  *
15  *  Software distributed under the License is distributed on an "AS IS"
16  *  basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the
17  *  License for the specific language governing rights and limitations
18  *  under the License.
19  *
20  *  The Original Code is Curl.
21  *
22  *  The Initial Developer of the Original Code is Daniel Stenberg.
23  *
24  *  Portions created by the Initial Developer are Copyright (C) 1998.
25  *  All Rights Reserved.
26  *
27  *  Contributor(s):
28  *   Rafael Sagula <sagula@inf.ufrgs.br>
29  *   Sampo Kellomaki <sampo@iki.fi>
30  *   Linas Vepstas <linas@linas.org>
31  *   Bjorn Reese <breese@imada.ou.dk>
32  *   Johan Anderson <johan@homemail.com>
33  *   Kjell Ericson <Kjell.Ericson@haxx.nu>
34  *   Troy Engel <tengel@palladium.net>
35  *   Ryan Nelson <ryan@inch.com>
36  *   Bjorn Stenberg <Bjorn.Stenberg@haxx.nu>
37  *   Angus Mackay <amackay@gus.ml.org>
38  *
39  * ------------------------------------------------------------
40  * Main author:
41  * - Daniel Stenberg <Daniel.Stenberg@haxx.nu>
42  *
43  *      http://curl.haxx.nu
44  *
45  * $Source$
46  * $Revision$
47  * $Date$
48  * $Author$
49  * $State$
50  * $Locker$
51  *
52  * ------------------------------------------------------------
53  * $Log$
54  * Revision 1.1  1999-12-29 14:21:30  bagder
55  * Initial revision
56  *
57  * Revision 1.3  1999/09/06 06:59:40  dast
58  * Changed email info
59  *
60  * Revision 1.2  1999/08/13 07:34:48  dast
61  * Changed the URL in the header
62  *
63  * Revision 1.1.1.1  1999/03/11 22:23:34  dast
64  * Imported sources
65  *
66  ****************************************************************************/
67
68 /* Unix and Win32 getenv function call */
69 char *GetEnv(char *variable);
70
71 #endif