printenv.c

Go to the documentation of this file.
00001 
00002 #include <stdio.h>
00003 
00004 int main(int argc, char *argv[], char *envp[])
00005 {
00006         int p;
00007         for(p = 0; envp[p] && *envp[p]; p++) {
00008                 printf("%s\n", envp[p]);
00009         }
00010         return 0;
00011 }
00012 

Generated on Fri Apr 14 22:57:10 2006 for minix by  doxygen 1.4.6