Sign in
fuchsia
/
third_party
/
swift-lldb
/
refs/heads/upstream/google-bak
/
.
/
lit
/
Process
/
Inputs
/
env.cpp
blob: cbf671ccd2f509c064ee7fce7af87fd6f96ed476 [
file
] [
log
] [
blame
] [
edit
]
#include
<cstdlib>
#include
<iostream>
int
main
()
{
if
(
const
char
*
env_p
=
std
::
getenv
(
"FOO"
))
std
::
cout
<<
"FOO="
<<
env_p
<<
'\n'
;
}