Skip to content

Commit

Permalink
testsuite/023-env/001.c: new test
Browse files Browse the repository at this point in the history
  • Loading branch information
pipcet committed Jan 30, 2021
1 parent 1671270 commit d647bd6
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions testsuite/023-env/001.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
#include <stdio.h>

int main(int argc, char **argv, char **envp)
{
while (*envp) {
printf("%s\n", *envp++);
}
return 0;
}

0 comments on commit d647bd6

Please sign in to comment.