Skip to content

Instantly share code, notes, and snippets.

@rasta-mouse
Created January 4, 2015 10:07
Embed
What would you like to do?
#include <stdio.h>
#include <stdlib.h>
int main(int argc, char *argv[])
{
if(!argv[1])
exit(1);
printf("%#x\n", getenv(argv[1]));
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment