Warning, /sdk/clazy/tests/qgetenv/main.cpp.fixed.expected is written in an unsupported language. File is not indexed.

0001 #include <QtCore/qglobal.h>
0002 #include <QtCore/qbytearray.h>
0003 
0004 int test()
0005 {
0006 
0007     qEnvironmentVariableIsEmpty("Foo");
0008     bool b = qEnvironmentVariableIsSet("Foo");
0009     QByteArray ba = qgetenv("Foo");
0010     int a = qEnvironmentVariableIntValue("Foo");
0011     return 0;
0012 }