File indexing completed on 2024-05-12 17:13:27

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 }