repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[flang] Fix length handling in character kind implicit conversion (#74586)
[llvm-project.git]
/
lldb
/
test
/
Shell
/
Process
/
Inputs
/
env.cpp
blob
cbf671ccd2f509c064ee7fce7af87fd6f96ed476
1
#include <cstdlib>
2
#include <iostream>
3
4
int
main
() {
5
if
(
const char
*
env_p
=
std
::
getenv
(
"FOO"
))
6
std
::
cout
<<
"FOO="
<<
env_p
<<
'
\n
'
;
7
}