blob: 256212be76dbb1cc8614b9b4abf4185cabdfc0b4 [file] [log] [blame]
Julien Boeuf026a4172015-02-02 18:36:37 -08001/*
2 *
Craig Tiller2e190362016-03-25 14:33:26 -07003 * Copyright 2015-2016, Google Inc.
Julien Boeuf026a4172015-02-02 18:36:37 -08004 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions are
8 * met:
9 *
10 * * Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * * Redistributions in binary form must reproduce the above
13 * copyright notice, this list of conditions and the following disclaimer
14 * in the documentation and/or other materials provided with the
15 * distribution.
16 * * Neither the name of Google Inc. nor the names of its
17 * contributors may be used to endorse or promote products derived from
18 * this software without specific prior written permission.
19 *
20 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
23 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
24 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
25 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
26 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
30 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31 *
32 */
33
Julien Boeuf026a4172015-02-02 18:36:37 -080034#include <grpc/support/port_platform.h>
35
36#ifdef GPR_POSIX_ENV
37
38#include "src/core/support/env.h"
39
40#include <stdlib.h>
41
42#include <grpc/support/log.h>
43
Masood Malekghassemi701af602015-06-03 15:01:17 -070044#include <grpc/support/string_util.h>
Craig Tillerf40df232016-03-25 13:38:14 -070045#include "src/core/support/string.h"
Julien Boeuf026a4172015-02-02 18:36:37 -080046
47char *gpr_getenv(const char *name) {
Julien Boeuf7413f102015-02-04 17:00:08 -080048 char *result = getenv(name);
Julien Boeuf026a4172015-02-02 18:36:37 -080049 return result == NULL ? result : gpr_strdup(result);
50}
51
52void gpr_setenv(const char *name, const char *value) {
Julien Boeuf05618962015-02-03 21:58:53 -080053 int res = setenv(name, value, 1);
54 GPR_ASSERT(res == 0);
Julien Boeuf026a4172015-02-02 18:36:37 -080055}
56
Craig Tiller190d3602015-02-18 09:23:38 -080057#endif /* GPR_POSIX_ENV */