Skip to content

Instantly share code, notes, and snippets.

@ptrcarta
Created January 29, 2016 09:51
Show Gist options
  • Save ptrcarta/20eb31faf631cec00c88 to your computer and use it in GitHub Desktop.
Save ptrcarta/20eb31faf631cec00c88 to your computer and use it in GitHub Desktop.
#include <stdlib.h>
#include <stdio.h>
extern char **environ;
int main(void) {
int i = 0;
while (environ[i]) {
puts(environ[i]);
i++;
}
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment