mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
15 lines
194 B
C++
15 lines
194 B
C++
#include <iostream>
|
|
#include <string>
|
|
|
|
using namespace std;
|
|
|
|
int main(int argc, char* argv[]) {
|
|
|
|
string test = "mozilla";
|
|
|
|
if (test.compare(argv[1]) != 0)
|
|
return -1;
|
|
|
|
return 0;
|
|
}
|