Warning, file /sdk/clazy/tests/qgetenv/main.cpp was not indexed or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).

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