Skip to content

Instantly share code, notes, and snippets.

@stevenjohnstone
Created March 25, 2019 21:46
Show Gist options
  • Save stevenjohnstone/d7a27df06632b71b64533340a9e46aea to your computer and use it in GitHub Desktop.
Save stevenjohnstone/d7a27df06632b71b64533340a9e46aea to your computer and use it in GitHub Desktop.
#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