blob: ee627340bb51450c31b4f2f18f5ab3773883d91f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#include <aws/core/platform/Environment.h>
//#include <aws/core/utils/memory/stl/AWSStringStream.h>
//#include <sys/utsname.h>
namespace Aws
{
namespace Environment
{
Aws::String GetEnv(const char* variableName)
{
auto variableValue = std::getenv(variableName);
return Aws::String( variableValue ? variableValue : "" );
}
} // namespace Environment
} // namespace Aws
|