Skip to content

Instantly share code, notes, and snippets.

@x56
Created December 10, 2015 11:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save x56/93e40f2a080fd59febb1 to your computer and use it in GitHub Desktop.
Save x56/93e40f2a080fd59febb1 to your computer and use it in GitHub Desktop.
env_test.c
#include <stdio.h>
int main(int argc, char *argv[], char *envp[])
{
int i = 0;
char *env = NULL;
while ((env = envp[i++]) != NULL) {
printf("%s\n", env);
}
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment