/* * ENVIRON.C - enviroment handling. * * * * Comments: * * 01/14/94 (Tim Norman) --------------------------------------------------- * started. * * 08/08/95 (Matt Rains) --------------------------------------------------- * i have cleaned up the source code. changes now bring this source into * guidelines for recommended programming practice. * */ #include #include void show_environment(void) { unsigned char count; for(count = 0; environ[count]; count++) { puts(environ[count]); } return; }