Created
March 25, 2019 21:46
-
-
Save stevenjohnstone/d7a27df06632b71b64533340a9e46aea to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdlib.h> | |
#include <string.h> | |
int main(int argc, const char **argv) { | |
char *foo = getenv("foo"); | |
if (strcmp(foo, "bar") == 0) { | |
return 0; | |
} | |
return 1; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment